1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: JOSM
Upstream-Contact: JOSM Developers <josm-dev@openstreetmap.org>
Source: https://josm.openstreetmap.de/svn/trunk
Comment: JOSM, and all its integral parts, are released under GPL-2+.
.
The JOSM repository contains files licensed under Apache-2.0
(as stated at the beginning of the file). When compiled with any of this code
included, the whole software is licensed under GPL v3.
.
Note: This is not valid for JOSM plugins. These are not considered
an integral part of JOSM and may be under any license.
Files: *
Copyright: Immanuel Scholz <imi@eigenheimstrasse.de>
Stefan Breunig
David Earl <david@frankieandshadow.com>
Gabriel Ebner <ge@gabrielebner.at>
Dave Hansen
Paul Hartmann
Karl Guggisberg
Matthias Julius
Alexei Kasatkin
Jiri Klement
Ulf Lamping <ulf.lamping@web.de>
Simon Legner
Raphael Mack <ramack@raphael-mack.de>
Upliner Mikhalych
Vincent Privat <vincent@josm.openstreetmap.de>
Frederik Ramm <frederik@remote.org>
Dirk Stöcker <openstreetmap@dstoecker.de>
Comment: JOSM was originally designed and coded by Immanuel Scholz,
and is now maintained by the OpenStreetMap community.
.
The current JOSM maintainer is Dirk Stöcker.
A lot of administration work is done by Paul Hartmann and Vincent Privat.
.
Major code contributions from (in alphabetical order):
.
Stefan Breunig
David Earl
Gabriel Ebner
Dave Hansen
Paul Hartmann
Karl Guggisberg
Matthias Julius
Alexei Kasatkin
Jiri Klement
Ulf Lamping
Simon Legner
Raphael Mack
Upliner Mikhalych
Vincent Privat
Frederik Ramm
Dirk Stöcker
Michael Zangl
.
Many minor contributions and patches by others; see SVN history
at https://josm.openstreetmap.de/svn/ for details. Use
"josm-dev AT openstreetmap.org" to contact still active authors.
.
The logo has been designed by Ilya Palikov.
.
Copyright rests with the contributors.
As documented in `CONTRIBUTION'.
License: GPL-2+
Files: native/linux/latest/usr/share/metainfo/org.openstreetmap.josm-latest.appdata.xml
native/linux/tested/usr/share/metainfo/org.openstreetmap.josm.appdata.xml
Copyright: JOSM developers
License: CC-BY-SA-3.0
Files: resources/images/presets/*
Copyright: disclaimed
License: public-domain
These icons are placed in the public domain by their authors.
Files: resources/META-INF/resources/webjars/tag2link/*
Copyright: 2020, Simon Legner
License: ISC
Files: src/ch/poole/*
Copyright: 2015-2019, Simon Poole
License: Expat
Files: src/com/adobe/*
Copyright: 2009, Adobe Systems Incorporated
License: BSD-3-Clause
Files: src/com/drew/*
Copyright: 2002-2020, Drew Noakes and contributors
2002-2011, Andreas Ziermann
License: Apache-2.0
Files: src/com/kitfox/*
Copyright: 2004-2005, Mark McKay
License: BSD-2-Clause
Files: src/org/apache/commons/jcs3/*
Copyright: 2001-2015, The Apache Software Foundation.
License: Apache-2.0
Files: src/org/jetbrains/*
Copyright: JetBrains
License: Apache-2.0
Files: src/org/openstreetmap/josm/data/projection/Ellipsoid.java
Copyright: 2002, Johan Montagnat <johan@creatis.insa-lyon.fr>
License: GPL-2+
Files: src/org/openstreetmap/josm/data/projection/datum/NTV2GridShift.java
src/org/openstreetmap/josm/data/projection/datum/NTV2GridShiftFile.java
src/org/openstreetmap/josm/data/projection/datum/NTV2SubGrid.java
src/org/openstreetmap/josm/data/projection/datum/NTV2Util.java
Copyright: 2003, Objectix Pty Ltd.
License: LGPL-2.1+
Files: src/org/openstreetmap/josm/data/validation/routines/DomainValidator.java
src/org/openstreetmap/josm/data/validation/routines/EmailValidator.java
src/org/openstreetmap/josm/data/validation/routines/InetAddressValidator.java
src/org/openstreetmap/josm/data/validation/routines/RegexValidator.java
src/org/openstreetmap/josm/data/validation/routines/UrlValidator.java
src/org/openstreetmap/josm/data/validation/util/Entities.java
Copyright: Apache Software Foundation
License: Apache-2.0
Files: src/org/openstreetmap/josm/tools/Diff.java
Copyright: 2000, Business Management Systems, Inc.
License: GPL-1+
Files: src/org/openstreetmap/josm/tools/AlphanumComparator.java
Copyright: 2007-2017, David Koelle
License: Expat
Files: src/org/openstreetmap/josm/gui/widgets/MultiSplitPane.java
Copyright: 2004, Sun Microsystems, Inc.
License: LGPL-2.1+
Files: src/org/tukaani/*
Copyright: disclaimed
License: public-domain
This Java implementation of XZ has been put into the public domain,
thus you can do whatever you want with it. All the files in the package
have been written by Lasse Collin, but some files are heavily based on
public domain code written by Igor Pavlov.
Files: src/javax/json/*
src/org/glassfish/json/*
Copyright: 2011-2017, Oracle and/or its affiliates
Comment: The contents of this file are subject to the terms of either the GNU
General Public License Version 2 only ("GPL") or the Common Development
and Distribution License("CDDL") (collectively, the "License"). You
may not use this file except in compliance with the License. You can
obtain a copy of the License at
https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
or packager/legal/LICENSE.txt. See the License for the specific
language governing permissions and limitations under the License.
.
When distributing the software, include this License Header Notice in each
file and include the License file at packager/legal/LICENSE.txt.
.
GPL Classpath Exception:
Oracle designates this particular file as subject to the "Classpath"
exception as provided by Oracle in the GPL Version 2 section of the License
file that accompanied this code.
.
Modifications:
If applicable, add the following below the License Header, with the fields
enclosed by brackets [] replaced by your own identifying information:
"Portions Copyright [year] [name of copyright owner]"
.
Contributor(s):
If you wish your version of this file to be governed by only the CDDL or
only the GPL Version 2, indicate your decision by adding "[Contributor]
elects to include this software in this distribution under the [CDDL or GPL
Version 2] license." If you don't indicate a single choice of license, a
recipient has the option to distribute your version of this file under
either the CDDL, the GPL Version 2 or to extend the choice of license to
its licensees as provided above. However, if you add GPL Version 2 code
and therefore, elected the GPL Version 2 license, then the option applies
only if the new code is made subject to such option by the copyright
holder.
License: GPL-2 with Classpath exception or CDDL-1.1
Files: tools/japicc/japi-compliance-checker.pl
tools/japicc/modules/Internals/*
Copyright: 2011-2018, Andrey Ponomarenko's ABI Laboratory
License: GPL-2+ or LGPL-2.1+
Files: i18n/po/*.po
Copyright: 2006-2013, 2015-2017, Rosetta Contributors
2006-2013, 2015-2017, Canonical Ltd
2009, ikinokta
2006, Immanuel Scholz
License: GPL-2+
Files: i18n/convcss.pl
i18n/convmaps.pl
i18n/convplugins.pl
i18n/convpreset.pl
i18n/convstyle.pl
i18n/convsurveyor.pl
i18n/convwiki.pl
Copyright: Dirk Stöcker <openstreetmap@dstoecker.de>
License: public-domain
Public domain, no rights reserved.
Files: test/data/regress/12639/history.xml
test/data/regress/14199/emptytag.osm
Copyright: OpenStreetMap and contributors
License: ODbL-1.0
Files: test/unit/org/openstreetmap/josm/data/validation/routines/DomainValidatorTest.java
test/unit/org/openstreetmap/josm/data/validation/routines/DomainValidatorTestIT.java
test/unit/org/openstreetmap/josm/data/validation/routines/EmailValidatorTest.java
test/unit/org/openstreetmap/josm/data/validation/routines/InetAddressValidatorTest.java
test/unit/org/openstreetmap/josm/data/validation/routines/RegexValidatorTest.java
test/unit/org/openstreetmap/josm/data/validation/routines/ResultPair.java
test/unit/org/openstreetmap/josm/data/validation/routines/UrlValidatorTest.java
Copyright: Apache Software Foundation
License: Apache-2.0
Files: test/unit/org/openstreetmap/josm/testutils/ParallelParameterized.java
test/unit/org/openstreetmap/josm/testutils/ParallelScheduler.java
Copyright: 2012-2017, Michael Tamm and other junit-toolbox contributors
License: Apache-2.0
Files: debian/*
Copyright: 2008, Petter Reinholdtsen <pere@debian.org>
2008-2009, Andreas Putzo <andreas@putzo.net>
2009-2011, Giovanni Mascellani <gio@debian.org>
2010-2014, David Paleino <dapal@debian.org>
License: GPL-3+
License: BSD-2-Clause
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.
License: BSD-3-Clause
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 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.
License: Expat
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
.
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.
License: GPL-1+
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.
.
On Debian systems, the complete text of version 1 of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL-1'.
License: GPL-2+
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.
.
On Debian systems, the complete text of version 2 of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL-2'.
License: GPL-2 with Classpath exception
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.
.
On Debian systems, the complete text of version 2 of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL-2'.
.
"CLASSPATH" EXCEPTION TO THE GPL VERSION 2
.
Certain source files distributed by Oracle are subject to the following
clarification and special exception to the GPL Version 2, 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 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.
License: GPL-3+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
.
On Debian systems, the complete text of the GNU General Public License
can be found in `/usr/share/common-licenses/GPL-3'.
License: LGPL-2.1+
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 program. If not, see <http://www.gnu.org/licenses/>.
.
On Debian systems, the complete text of the GNU Lesser General Public License
can be found in `/usr/share/common-licenses/LGPL-2.1'.
License: Apache-2.0
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
.
http://www.apache.org/licenses/LICENSE-2.0
.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
.
On Debian systems, the complete text of the Apache License can be found
in `/usr/share/common-licenses/Apache-2.0'.
License: ISC
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.
License: CC-BY-SA-3.0
Creative Commons 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 http://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 http://creativecommons.org/.
License: CDDL-1.1
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.
License: ODbL-1.0
ODC Open Database License (ODbL)
.
Preamble
.
The Open Database License (ODbL) is a license agreement intended to allow
users to freely share, modify, and use this Database while maintaining this
same freedom for others. Many databases are covered by copyright, and
therefore this document licenses these rights. Some jurisdictions, mainly in
the European Union, have specific rights that cover databases, and so the
ODbL addresses these rights, too. Finally, the ODbL is also an agreement in
contract for users of this Database to act in certain ways in return for
accessing this Database.
.
Databases can contain a wide variety of types of content (images, audiovisual
material, and sounds all in the same database, for example), and so the ODbL
only governs the rights over the Database, and not the contents of the
Database individually. Licensors should use the ODbL together with another
license for the contents, if the contents have a single set of rights that
uniformly covers all of the contents. If the contents have multiple sets of
different rights, Licensors should describe what rights govern what contents
together in the individual record or in some other way that clarifies what
rights apply.
.
Sometimes the contents of a database, or the database itself, can be covered
by other rights not addressed here (such as private contracts, trade mark
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 or another license
permitted under Section 4.4;
.
b. Include a copy of this License (or, as applicable, a license
permitted under Section 4.4) 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; and
.
c. Keep intact any copyright or Database Right notices and notices that
refer to this License.
.
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 here
under the Open Database License (ODbL).
.
DATABASE NAME should be replaced with the name of the Database and a hyperlink
to the URI of the Database. "Open Database 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 Share alike.
.
a. Any Derivative Database that You Publicly Use must be only under the
terms of:
.
i. This License;
.
ii. A later version of this License similar in spirit to this License;
or
.
iii. A compatible license.
.
If You license the Derivative Database under one of the licenses mentioned
in (iii), You must comply with the terms of that license.
.
b. For the avoidance of doubt, Extraction or Re-utilisation of the whole
or a Substantial part of the Contents into a new database is a Derivative
Database and must comply with Section 4.4.
.
c. Derivative Databases and Produced Works. A Derivative Database is
Publicly Used and so must comply with Section 4.4. if a Produced Work
created from the Derivative Database is Publicly Used.
.
d. Share Alike and additional Contents. For the avoidance of doubt,
You must not add Contents to Derivative Databases under Section 4.4
a that are incompatible with the rights granted under this License.
.
e. Compatible licenses. Licensors may authorise a proxy to determine
compatible licenses under Section 4.4 a iii. If they do so, the
authorised proxy's public statement of acceptance of a compatible
license grants You permission to use the compatible license.
.
4.5 Limits of Share Alike. The requirements of Section 4.4 do not apply in
the following:
.
a. For the avoidance of doubt, You are not required to license Collective
Databases under this License if You incorporate this Database or a
Derivative Database in the collection, but this License still applies to
this Database or a Derivative Database as a part of the Collective
Database;
.
b. Using this Database, a Derivative Database, or this Database as part
of a Collective Database to create a Produced Work does not create a
Derivative Database for purposes of Section 4.4; and
.
c. Use of a Derivative Database internally within an organisation is not
to the public and therefore does not fall under the requirements of
Section 4.4.
.
4.6 Access to Derivative Databases. If You Publicly Use a Derivative Database
or a Produced Work from a Derivative Database, You must also offer to
recipients of the Derivative Database or Produced Work a copy in a machine
readable form of:
.
a. The entire Derivative Database; or
.
b. A file containing all of the alterations made to the Database or the
method of making the alterations to the Database (such as an algorithm),
including any additional Contents, that make up all the differences
between the Database and the Derivative Database.
.
The Derivative Database (under a.) or alteration file (under b.) must be
available at no more than a reasonable production cost for physical
distributions and free of charge if distributed over the internet.
.
4.7 Technological measures and additional terms
.
a. This License does not allow You to impose (except subject to Section
4.7 b.) any terms or any technological measures on the Database, a
Derivative Database, or the whole or a Substantial part of the Contents
that alter or restrict the terms of this License, or any rights granted
under it, or have the effect or intent of restricting the ability of any
person to exercise those rights.
.
b. Parallel distribution. You may impose terms or technological measures
on the Database, a Derivative Database, or the whole or a Substantial
part of the Contents (a "Restricted Database") in contravention of
Section 4.74 a. only if You also make a copy of the Database or a
Derivative Database available to the recipient of the Restricted
Database:
.
i. That is available without additional fee;
.
ii. That is available in a medium that does not alter or restrict the
terms of this License, or any rights granted under it, or have the
effect or intent of restricting the ability of any person to exercise
those rights (an "Unrestricted Database"); and
.
iii. The Unrestricted Database is at least as accessible to the
recipient as a practical matter as the Restricted Database.
.
c. For the avoidance of doubt, You may place this Database or a Derivative
Database in an authenticated environment, behind a password, or within a
similar access control scheme provided that You do not alter or restrict
the terms of this License or any rights granted under it or have the
effect or intent of restricting the ability of any person to exercise
those rights.
.
4.8 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.
.
Persons subject to permanent termination of rights are not eligible to be a
recipient and receive a license under Section 4.8.
.
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.
|