Spaces:
Running
Running
File size: 42,077 Bytes
8638dfb |
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 |
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<style type="text/css">
ul.lst-kix_vlap48folxv9-8 {
list-style-type: none
}
ul.lst-kix_hweq7kog7282-7 {
list-style-type: none
}
ul.lst-kix_hweq7kog7282-8 {
list-style-type: none
}
.lst-kix_avrqhju2znks-1>li:before {
content: "\0025cb "
}
ul.lst-kix_hweq7kog7282-5 {
list-style-type: none
}
ul.lst-kix_hweq7kog7282-6 {
list-style-type: none
}
ul.lst-kix_7in68494ivvh-1 {
list-style-type: none
}
ul.lst-kix_vlap48folxv9-3 {
list-style-type: none
}
.lst-kix_avrqhju2znks-2>li:before {
content: "\0025a0 "
}
ul.lst-kix_7in68494ivvh-2 {
list-style-type: none
}
ul.lst-kix_vlap48folxv9-2 {
list-style-type: none
}
ul.lst-kix_7in68494ivvh-3 {
list-style-type: none
}
ul.lst-kix_vlap48folxv9-1 {
list-style-type: none
}
ul.lst-kix_7in68494ivvh-4 {
list-style-type: none
}
ul.lst-kix_vlap48folxv9-0 {
list-style-type: none
}
ul.lst-kix_7in68494ivvh-5 {
list-style-type: none
}
ul.lst-kix_vlap48folxv9-7 {
list-style-type: none
}
.lst-kix_avrqhju2znks-4>li:before {
content: "\0025cb "
}
ul.lst-kix_7in68494ivvh-6 {
list-style-type: none
}
ul.lst-kix_vlap48folxv9-6 {
list-style-type: none
}
ul.lst-kix_7in68494ivvh-7 {
list-style-type: none
}
ul.lst-kix_vlap48folxv9-5 {
list-style-type: none
}
.lst-kix_avrqhju2znks-3>li:before {
content: "\0025cf "
}
ul.lst-kix_7in68494ivvh-8 {
list-style-type: none
}
ul.lst-kix_vlap48folxv9-4 {
list-style-type: none
}
.lst-kix_avrqhju2znks-6>li:before {
content: "\0025cf "
}
ul.lst-kix_tuxm32r9nq4s-7 {
list-style-type: none
}
ul.lst-kix_tuxm32r9nq4s-8 {
list-style-type: none
}
ul.lst-kix_eqv427wdtrjt-7 {
list-style-type: none
}
ul.lst-kix_tuxm32r9nq4s-5 {
list-style-type: none
}
ul.lst-kix_eqv427wdtrjt-8 {
list-style-type: none
}
ul.lst-kix_tuxm32r9nq4s-6 {
list-style-type: none
}
ul.lst-kix_eqv427wdtrjt-5 {
list-style-type: none
}
.lst-kix_avrqhju2znks-5>li:before {
content: "\0025a0 "
}
ul.lst-kix_tuxm32r9nq4s-3 {
list-style-type: none
}
ul.lst-kix_7in68494ivvh-0 {
list-style-type: none
}
ul.lst-kix_eqv427wdtrjt-6 {
list-style-type: none
}
ul.lst-kix_tuxm32r9nq4s-4 {
list-style-type: none
}
ul.lst-kix_eqv427wdtrjt-3 {
list-style-type: none
}
ul.lst-kix_eqv427wdtrjt-4 {
list-style-type: none
}
ul.lst-kix_eqv427wdtrjt-1 {
list-style-type: none
}
ul.lst-kix_eqv427wdtrjt-2 {
list-style-type: none
}
.lst-kix_avrqhju2znks-8>li:before {
content: "\0025a0 "
}
ul.lst-kix_eqv427wdtrjt-0 {
list-style-type: none
}
.lst-kix_avrqhju2znks-7>li:before {
content: "\0025cb "
}
ul.lst-kix_avrqhju2znks-3 {
list-style-type: none
}
ul.lst-kix_avrqhju2znks-2 {
list-style-type: none
}
ul.lst-kix_avrqhju2znks-5 {
list-style-type: none
}
ul.lst-kix_avrqhju2znks-4 {
list-style-type: none
}
ul.lst-kix_avrqhju2znks-7 {
list-style-type: none
}
ul.lst-kix_avrqhju2znks-6 {
list-style-type: none
}
ul.lst-kix_avrqhju2znks-8 {
list-style-type: none
}
ul.lst-kix_auv7fgu45kz1-5 {
list-style-type: none
}
ul.lst-kix_auv7fgu45kz1-6 {
list-style-type: none
}
ul.lst-kix_auv7fgu45kz1-3 {
list-style-type: none
}
ul.lst-kix_auv7fgu45kz1-4 {
list-style-type: none
}
ul.lst-kix_auv7fgu45kz1-1 {
list-style-type: none
}
.lst-kix_hweq7kog7282-8>li:before {
content: "\0025a0 "
}
ul.lst-kix_auv7fgu45kz1-2 {
list-style-type: none
}
ul.lst-kix_avrqhju2znks-1 {
list-style-type: none
}
ul.lst-kix_auv7fgu45kz1-0 {
list-style-type: none
}
ul.lst-kix_avrqhju2znks-0 {
list-style-type: none
}
ul.lst-kix_hweq7kog7282-3 {
list-style-type: none
}
.lst-kix_eqv427wdtrjt-7>li:before {
content: "\0025cb "
}
.lst-kix_eqv427wdtrjt-8>li:before {
content: "\0025a0 "
}
ul.lst-kix_hweq7kog7282-4 {
list-style-type: none
}
ul.lst-kix_hweq7kog7282-1 {
list-style-type: none
}
ul.lst-kix_hweq7kog7282-2 {
list-style-type: none
}
.lst-kix_avrqhju2znks-0>li:before {
content: "\0025cf "
}
ul.lst-kix_hweq7kog7282-0 {
list-style-type: none
}
ul.lst-kix_auv7fgu45kz1-7 {
list-style-type: none
}
ul.lst-kix_auv7fgu45kz1-8 {
list-style-type: none
}
.lst-kix_hweq7kog7282-2>li:before {
content: "\0025a0 "
}
.lst-kix_hweq7kog7282-0>li:before {
content: "\0025cf "
}
.lst-kix_hweq7kog7282-4>li:before {
content: "\0025cb "
}
.lst-kix_hweq7kog7282-1>li:before {
content: "\0025cb "
}
.lst-kix_hweq7kog7282-5>li:before {
content: "\0025a0 "
}
.lst-kix_hweq7kog7282-6>li:before {
content: "\0025cf "
}
.lst-kix_hweq7kog7282-7>li:before {
content: "\0025cb "
}
ul.lst-kix_saxtsynfme9l-6 {
list-style-type: none
}
ul.lst-kix_saxtsynfme9l-7 {
list-style-type: none
}
ul.lst-kix_saxtsynfme9l-8 {
list-style-type: none
}
ul.lst-kix_saxtsynfme9l-2 {
list-style-type: none
}
ul.lst-kix_saxtsynfme9l-3 {
list-style-type: none
}
ul.lst-kix_saxtsynfme9l-4 {
list-style-type: none
}
ul.lst-kix_saxtsynfme9l-5 {
list-style-type: none
}
.lst-kix_hweq7kog7282-3>li:before {
content: "\0025cf "
}
ul.lst-kix_saxtsynfme9l-0 {
list-style-type: none
}
ul.lst-kix_saxtsynfme9l-1 {
list-style-type: none
}
.lst-kix_tuxm32r9nq4s-4>li:before {
content: "\0025cb "
}
.lst-kix_tuxm32r9nq4s-6>li:before {
content: "\0025cf "
}
.lst-kix_tuxm32r9nq4s-1>li:before {
content: "\0025cb "
}
.lst-kix_tuxm32r9nq4s-5>li:before {
content: "\0025a0 "
}
.lst-kix_tuxm32r9nq4s-0>li:before {
content: "\0025cf "
}
.lst-kix_tuxm32r9nq4s-8>li:before {
content: "\0025a0 "
}
.lst-kix_tuxm32r9nq4s-7>li:before {
content: "\0025cb "
}
.lst-kix_doyw8ul3oc0a-0>li:before {
content: "\0025cf "
}
.lst-kix_vlap48folxv9-6>li:before {
content: "\0025cf "
}
.lst-kix_vlap48folxv9-8>li:before {
content: "\0025a0 "
}
.lst-kix_doyw8ul3oc0a-1>li:before {
content: "\0025cb "
}
.lst-kix_doyw8ul3oc0a-3>li:before {
content: "\0025cf "
}
.lst-kix_vlap48folxv9-5>li:before {
content: "\0025a0 "
}
.lst-kix_doyw8ul3oc0a-2>li:before {
content: "\0025a0 "
}
.lst-kix_7in68494ivvh-0>li:before {
content: "\0025cf "
}
.lst-kix_7in68494ivvh-1>li:before {
content: "\0025cb "
}
.lst-kix_doyw8ul3oc0a-5>li:before {
content: "\0025a0 "
}
.lst-kix_tuxm32r9nq4s-2>li:before {
content: "\0025a0 "
}
.lst-kix_7in68494ivvh-2>li:before {
content: "\0025a0 "
}
.lst-kix_doyw8ul3oc0a-4>li:before {
content: "\0025cb "
}
.lst-kix_vlap48folxv9-7>li:before {
content: "\0025cb "
}
.lst-kix_tuxm32r9nq4s-3>li:before {
content: "\0025cf "
}
.lst-kix_7in68494ivvh-4>li:before {
content: "\0025cb "
}
.lst-kix_7in68494ivvh-3>li:before {
content: "\0025cf "
}
.lst-kix_7in68494ivvh-5>li:before {
content: "\0025a0 "
}
.lst-kix_vlap48folxv9-0>li:before {
content: "\0025cf "
}
ul.lst-kix_3bc73ymeow4m-7 {
list-style-type: none
}
ul.lst-kix_3bc73ymeow4m-8 {
list-style-type: none
}
.lst-kix_vlap48folxv9-1>li:before {
content: "\0025cb "
}
ul.lst-kix_3bc73ymeow4m-3 {
list-style-type: none
}
ul.lst-kix_3bc73ymeow4m-4 {
list-style-type: none
}
ul.lst-kix_3bc73ymeow4m-5 {
list-style-type: none
}
.lst-kix_7in68494ivvh-7>li:before {
content: "\0025cb "
}
ul.lst-kix_3bc73ymeow4m-6 {
list-style-type: none
}
.lst-kix_vlap48folxv9-2>li:before {
content: "\0025a0 "
}
.lst-kix_vlap48folxv9-4>li:before {
content: "\0025cb "
}
.lst-kix_7in68494ivvh-6>li:before {
content: "\0025cf "
}
ul.lst-kix_3bc73ymeow4m-0 {
list-style-type: none
}
ul.lst-kix_3bc73ymeow4m-1 {
list-style-type: none
}
ul.lst-kix_3bc73ymeow4m-2 {
list-style-type: none
}
.lst-kix_vlap48folxv9-3>li:before {
content: "\0025cf "
}
.lst-kix_7in68494ivvh-8>li:before {
content: "\0025a0 "
}
.lst-kix_eqv427wdtrjt-3>li:before {
content: "\0025cf "
}
.lst-kix_eqv427wdtrjt-4>li:before {
content: "\0025cb "
}
.lst-kix_eqv427wdtrjt-1>li:before {
content: "\0025cb "
}
.lst-kix_eqv427wdtrjt-2>li:before {
content: "\0025a0 "
}
.lst-kix_eqv427wdtrjt-5>li:before {
content: "\0025a0 "
}
.lst-kix_eqv427wdtrjt-6>li:before {
content: "\0025cf "
}
.lst-kix_3bc73ymeow4m-0>li:before {
content: "- "
}
.lst-kix_eqv427wdtrjt-0>li:before {
content: "\0025cf "
}
.lst-kix_saxtsynfme9l-0>li:before {
content: "\0025cf "
}
.lst-kix_saxtsynfme9l-2>li:before {
content: "\0025a0 "
}
.lst-kix_saxtsynfme9l-1>li:before {
content: "\0025cb "
}
.lst-kix_auv7fgu45kz1-5>li:before {
content: "\0025a0 "
}
.lst-kix_auv7fgu45kz1-7>li:before {
content: "\0025cb "
}
.lst-kix_saxtsynfme9l-4>li:before {
content: "\0025cb "
}
.lst-kix_saxtsynfme9l-6>li:before {
content: "\0025cf "
}
.lst-kix_auv7fgu45kz1-4>li:before {
content: "\0025cb "
}
.lst-kix_auv7fgu45kz1-8>li:before {
content: "\0025a0 "
}
.lst-kix_saxtsynfme9l-3>li:before {
content: "\0025cf "
}
.lst-kix_saxtsynfme9l-7>li:before {
content: "\0025cb "
}
.lst-kix_3bc73ymeow4m-6>li:before {
content: "- "
}
ul.lst-kix_tuxm32r9nq4s-1 {
list-style-type: none
}
.lst-kix_doyw8ul3oc0a-6>li:before {
content: "\0025cf "
}
ul.lst-kix_tuxm32r9nq4s-2 {
list-style-type: none
}
.lst-kix_3bc73ymeow4m-7>li:before {
content: "- "
}
.lst-kix_doyw8ul3oc0a-7>li:before {
content: "\0025cb "
}
ul.lst-kix_tuxm32r9nq4s-0 {
list-style-type: none
}
.lst-kix_3bc73ymeow4m-8>li:before {
content: "- "
}
.lst-kix_doyw8ul3oc0a-8>li:before {
content: "\0025a0 "
}
li.li-bullet-0:before {
margin-left: -18pt;
white-space: nowrap;
display: inline-block;
min-width: 18pt
}
.lst-kix_auv7fgu45kz1-6>li:before {
content: "\0025cf "
}
.lst-kix_saxtsynfme9l-5>li:before {
content: "\0025a0 "
}
.lst-kix_3bc73ymeow4m-2>li:before {
content: "- "
}
ul.lst-kix_doyw8ul3oc0a-0 {
list-style-type: none
}
.lst-kix_3bc73ymeow4m-1>li:before {
content: "- "
}
.lst-kix_3bc73ymeow4m-3>li:before {
content: "- "
}
ul.lst-kix_doyw8ul3oc0a-2 {
list-style-type: none
}
ul.lst-kix_doyw8ul3oc0a-1 {
list-style-type: none
}
ul.lst-kix_doyw8ul3oc0a-4 {
list-style-type: none
}
ul.lst-kix_doyw8ul3oc0a-3 {
list-style-type: none
}
ul.lst-kix_doyw8ul3oc0a-6 {
list-style-type: none
}
.lst-kix_auv7fgu45kz1-0>li:before {
content: "\0025cf "
}
ul.lst-kix_doyw8ul3oc0a-5 {
list-style-type: none
}
ul.lst-kix_doyw8ul3oc0a-8 {
list-style-type: none
}
ul.lst-kix_doyw8ul3oc0a-7 {
list-style-type: none
}
.lst-kix_3bc73ymeow4m-5>li:before {
content: "- "
}
.lst-kix_auv7fgu45kz1-1>li:before {
content: "\0025cb "
}
.lst-kix_auv7fgu45kz1-3>li:before {
content: "\0025cf "
}
.lst-kix_saxtsynfme9l-8>li:before {
content: "\0025a0 "
}
.lst-kix_3bc73ymeow4m-4>li:before {
content: "- "
}
.lst-kix_auv7fgu45kz1-2>li:before {
content: "\0025a0 "
}
ol {
margin: 0;
padding: 0
}
table td,
table th {
padding: 0
}
.c15 {
margin-left: 36pt;
padding-top: 16pt;
padding-left: 0pt;
padding-bottom: 4pt;
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
.c16 {
margin-left: 36pt;
padding-top: 16pt;
padding-left: 0pt;
padding-bottom: 4pt;
line-height: 1.149999976158142;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
.c9 {
margin-left: 54pt;
padding-top: 0pt;
text-indent: -18pt;
padding-bottom: 0pt;
line-height: 1.149999976158142;
orphans: 2;
widows: 2;
text-align: left;
height: 11pt
}
.c6 {
margin-left: 54pt;
padding-top: 0pt;
text-indent: -18pt;
padding-bottom: 0pt;
line-height: 1.15;
orphans: 2;
widows: 2;
text-align: left
}
.c0 {
padding-top: 20pt;
padding-bottom: 6pt;
line-height: 1.1500000086697666;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: center
}
.c10 {
margin-left: 36pt;
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.15;
orphans: 2;
widows: 2;
text-align: left
}
.c2 {
color: #434343;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 14pt;
font-family: "Arial";
font-style: normal
}
.c34 {
padding-top: 18pt;
padding-bottom: 6pt;
line-height: 1.1500000086697666;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
.c12 {
padding-top: 16pt;
padding-bottom: 4pt;
line-height: 1.1500000086697666;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
.c22 {
color: #000000;
font-weight: 700;
text-decoration: none;
vertical-align: baseline;
font-size: 16pt;
font-family: "Arial";
font-style: normal
}
.c1 {
margin-left: 36pt;
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.149999976158142;
orphans: 2;
widows: 2;
text-align: left
}
.c33 {
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.1500000086697666;
orphans: 2;
widows: 2;
text-align: center
}
.c8 {
color: #000000;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-family: "Arial";
font-style: normal
}
.c32 {
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.15;
orphans: 2;
widows: 2;
text-align: left
}
.c7 {
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.1500000086697666;
orphans: 2;
widows: 2;
text-align: left
}
.c13 {
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.149999976158142;
orphans: 2;
widows: 2;
text-align: left
}
.c4 {
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.0;
orphans: 2;
widows: 2;
text-align: left
}
.c19 {
color: #000000;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-family: "Arial"
}
.c21 {
text-decoration-skip-ink: none;
-webkit-text-decoration-skip: none;
color: #4a6ee0;
text-decoration: underline
}
.c29 {
font-size: 7pt;
font-family: "Times New Roman";
font-weight: 400
}
.c37 {
background-color: #ffffff;
max-width: 451.4pt;
padding: 72pt 72pt 72pt 72pt
}
.c28 {
font-size: 16pt;
font-weight: 700
}
.c25 {
font-size: 14pt;
font-weight: 700
}
.c30 {
width: 33%;
height: 1px
}
.c14 {
margin-left: 54pt;
text-indent: -18pt
}
.c31 {
font-family: "MS Gothic";
font-weight: 400
}
.c5 {
padding: 0;
margin: 0
}
.c17 {
margin-left: 72pt;
padding-left: 0pt
}
.c36 {
color: inherit;
text-decoration: inherit
}
.c20 {
font-size: 8pt
}
.c27 {
margin-left: 36pt
}
.c26 {
font-size: 11pt
}
.c35 {
font-size: 16pt
}
.c24 {
font-size: 10pt
}
.c18 {
color: #0e101a
}
.c23 {
height: 11pt
}
.c3 {
font-size: 12pt
}
.c11 {
font-style: italic
}
.title {
padding-top: 0pt;
color: #000000;
font-size: 26pt;
padding-bottom: 3pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
.subtitle {
padding-top: 0pt;
color: #666666;
font-size: 15pt;
padding-bottom: 16pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
li {
color: #000000;
font-size: 11pt;
font-family: "Arial"
}
p {
margin: 0;
color: #000000;
font-size: 11pt;
font-family: "Arial"
}
h1 {
padding-top: 20pt;
color: #000000;
font-size: 20pt;
padding-bottom: 6pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h2 {
padding-top: 18pt;
color: #000000;
font-size: 16pt;
padding-bottom: 6pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h3 {
padding-top: 16pt;
color: #434343;
font-size: 14pt;
padding-bottom: 4pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h4 {
padding-top: 14pt;
color: #666666;
font-size: 12pt;
padding-bottom: 4pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h5 {
padding-top: 12pt;
color: #666666;
font-size: 11pt;
padding-bottom: 4pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h6 {
padding-top: 12pt;
color: #666666;
font-size: 11pt;
padding-bottom: 4pt;
font-family: "Arial";
line-height: 1.15;
page-break-after: avoid;
font-style: italic;
orphans: 2;
widows: 2;
text-align: left
}
</style>
</head>
<body>
<p class="c33"><span class="c3 c11">BigScience Ethical Charter</span></p>
<p class="c7"><span class="c19 c3 c11"> </span></p>
<p class="c33"><span class="c3 c11">Download as <a
href="https://huggingface.co/spaces/bigscience/ethical-charter/raw/main/charter.txt" download> .txt </a>,
<a href="https://huggingface.co/spaces/bigscience/ethical-charter/raw/main/charter.docx" download> .docx </a>,
or <a href="https://huggingface.co/spaces/bigscience/ethical-charter/raw/main/charter.html" download>
.html</a></span></p>
<p class="c7"><span class="c19 c3 c11"> </span></p>
<h1 class="c0" id="h.mnplm636u8gt"><span class="c25">Preamble</span></h1>
<h3 class="c12" id="h.eglagoxtungb"><span>Introduction</span></h3>
<p class="c7"><span class="c8 c3">The development and applications of research in NLP are advancing rapidly, with
direct real-world consequences. As a result, possible societal benefits exist, but related risks also
increase considerably. Aware of these potential challenges, BigScience drafted an ethical charter
formalizing its core values and how they are articulated. </span></p>
<h3 class="c12" id="h.pizdhwq4mm3n"><span class="c2">Scope</span></h3>
<p class="c7"><span class="c8 c3">The scope of this ethical charter is threefold:</span></p>
<p class="c6"><span class="c3">1.</span><span class="c29"> </span><span class="c8 c3">To establish the
core values of BigScience in order to allow its contributors to commit to them, both individually and
collectively.</span></p>
<p class="c6"><span class="c3">2.</span><span class="c29"> </span><span class="c8 c3">To serve as a
pivot for drafting BigScience documents intended to frame specific issues ethically and legally.</span></p>
<p class="c6"><span class="c3">3.</span><span class="c29"> </span><span class="c3">To enable Big
Science to promote values within the research community through scientific publication, dissemination, and
popularization. </span></p>
<h3 class="c12" id="h.4dmemwedxldk"><span class="c2">People concerned</span></h3>
<p class="c7"><span class="c3">The </span><span class="c3">members</span><span class="c3"> of BigScience hold
the values stated in this ethical charter. </span><span class="c3">As ethical guidelines, they </span><span
class="c3">apply</span><span class="c3"> to any activities and </span><span class="c3">documents
</span><span class="c3">governing a specific aspect of the project.</span></p>
<h3 class="c12" id="h.5nzsvwkd3vlg"><span>Limitations</span><span class="c2"> of this ethical charter</span>
</h3>
<p class="c7"><span class="c3">Given the breadth of the scope of BigScience and thriving</span><span
class="c3"> to seek</span><span class="c3"> </span><span class="c3">progress in NLP
research,</span><span class="c3"> we recognize that not all scientific research will have a positive
impact on society.</span><span class="c3"> It is difficult to predict all the uses the scientific
community will make of our artifacts. Therefore, we defer to our </span><span class="c3">license</span><span
class="c3"> and </span><span class="c3">model card</span><span class="c8 c3"> for further
information.</span></p>
<h3 class="c12" id="h.588ssoa0kuzk"><span>Relevance over time</span></h3>
<p class="c7"><span class="c3">We interpret ethics as an ongoing process, not a time-fixed code with universal
validity. For these reasons, when needed, BigScience will review, update and adapt the ethical charter from
time to time.</span></p>
<h3 class="c12" id="h.hageuekn1vrz"><span class="c2">Legitimacy </span></h3>
<p class="c7"><span class="c3">The elaboration of this ethical charter results from</span><span class="c3"> a
</span><span class="c3">bottom-up collaboration</span><span class="c3"> that tried to collect </span><span
class="c3">all the different thoughts and opinions of BigScience participants</span><span class="c3">. Then,
experts in applied ethics and law did a final revision.</span><span class="c3"> </span><span
class="c3">We aim for consensus: if any BigScience member individually does not feel aligned with one or
more of the values inscribed in this ethical charter, the member will have the right to object at
appropriate times and places to that end.</span></p>
<h3 class="c12" id="h.jdhmndrb7h6c"><span class="c2">Ethical approach</span></h3>
<p class="c7"><span class="c3">We assume the basis of value pluralism within our community</span><span class="c3">,
and we cherish it. That is why the ethical notion of harmony (</span><span
class="c3 c31">和</span><span class="c3">) in Confucian moral theory seemed to be the appropriate
approach for such an international and interdisciplinary scientific community as BigScience. </span><span
class="c3">“Harmony is by its very nature relational. It presupposes the coexistence of multiple
parties; […] harmony is always contextual; epistemologically it calls for a holistic
approach</span><sup class="c3"><a href="#ftnt1" id="ftnt_ref1">[1]</a></sup><span class="c3">.”</span>
</p>
<h3 class="c12" id="h.nqsxmohx8aod"><span class="c2">Ethical compliance </span></h3>
<p class="c13"><span class="c8 c3">We distinguish two levels of ethical compliance operating within the charter:
individual and collective. We are held accountable for ethical compliance both as individual BigScience
contributors and as a collective research entity.</span></p>
<h3 class="c12" id="h.r7f3yy3mgo"><span>Other documents articulation </span></h3>
<p class="c13"><span class="c3">Given the pivotal function of this ethical charter, we will refer to the other
BigScience documents intended to govern specific issues directly where needed in the relevant
paragraph.</span></p>
<h1 class="c0" id="h.d9g8zvq49mv9"><span class="c28">BigScience Values</span></h1>
<p class="c7"><span class="c19 c3 c11"> </span></p>
<p class="c13"><span class="c3">We apply the distinction between intrinsic and extrinsic values in the structure of
this ethical charter. The former refers to “what is valuable for its own sake, in itself […],
as an end</span><sup class="c3"><a href="#ftnt2" id="ftnt_ref2">[2]</a></sup><span class="c3">”; the
latter is characterized as “what is valuable as a means, or for something else’s</span><span
class="c3"> work</span><sup class="c3"><a href="#ftnt3" id="ftnt_ref3">[3]</a></sup><span
class="c3">”.</span><span class="c3"> We distinguish between intrinsic and extrinsic values
because the latter can vary more efficiently to achieve the former goals: the latter are
substitutable.</span><span class="c3"> This structure will help the reader understand how the two types
of values combine and allow the BigScience community to adapt this ethical charter over time.</span></p>
<h2 class="c34" id="h.teezgnjstrxu"><span class="c11">Intrinsic </span><span class="c19 c11 c35">Values</span></h2>
<p class="c7"><span class="c19 c3 c11"> </span></p>
<ul class="c5 lst-kix_saxtsynfme9l-0 start">
<li class="c16 li-bullet-0">
<h3 id="h.y5i55sfilv44" style="display:inline"><span>Inclusivity</span></h3>
</li>
</ul>
<p class="c10"><span class="c3">We work to </span><span class="c3">ensure</span><span class="c3"> welcomeness
in the process and</span><span class="c3"> </span><span class="c3">equal access </span><span
class="c3">to the BigScience </span><span class="c3">artifacts without any form of discrimination (e.g.,
religion, ethnicity, sexual orientation, gender, political orientation, age, ability)</span><span
class="c8 c3">. We believe that “inclusivity” is not just non-discrimination, but also a sense
of belonging.</span></p>
<ul class="c5 lst-kix_vlap48folxv9-0 start">
<li class="c16 li-bullet-0">
<h3 id="h.3da1o38cx1dx" style="display:inline"><span class="c2">Diversity</span></h3>
</li>
</ul>
<p class="c10"><span class="c3 c18">The BigScience community has over 900 researchers and communities (see some
listed collaborations </span><span class="c3 c21"><a class="c36"
href="https://www.google.com/url?q=https://bigscience.huggingface.co/&sa=D&source=editors&ust=1654682562820720&usg=AOvVaw2KN5nL3uCS1rJIGnFLuhIl">here</a></span><span
class="c18 c3">) from 50 countries covering over 20 languages. The collaborators bring together their
expertise from various sources of knowledge, scientific fields, and institutional contexts (academia,
industry, research institutions, etc). </span></p>
<ul class="c5 lst-kix_vlap48folxv9-0">
<li class="c16 li-bullet-0">
<h3 id="h.464lv4a884f6" style="display:inline"><span>Reproducibility</span><span> </span></h3>
</li>
</ul>
<p class="c1"><span class="c3">The BigScience project was born with the clear intention of being a research
initiative devoted to open science. BigScience aims at ensuring the reproduction of the research experiments
and scientific conclusions developed under its aegis. </span></p>
<ul class="c5 lst-kix_7in68494ivvh-0 start">
<li class="c15 li-bullet-0">
<h3 id="h.gjf69xuzoli2" style="display:inline"><span class="c2">Openness</span></h3>
</li>
</ul>
<p class="c7 c27"><span class="c3 c8">Openness takes two dimensions, one focused on the process, and the other
focused on its result. BigScience aims to be an open science framework whereby NLP, and broadly, AI-related
researchers from all over the world can contribute and join the initiative. </span></p>
<p class="c1"><span class="c3">With regards to the results of our research, such as the future Large Language Model,
these are created by the research community to the research community, and therefore </span><span
class="c3">will be released on an open basis, taking into account the risks derived from the use of the
model. </span></p>
<ul class="c5 lst-kix_eqv427wdtrjt-0 start">
<li class="c16 li-bullet-0">
<h3 id="h.n94944u03slc" style="display:inline"><span>Responsibility</span></h3>
</li>
</ul>
<p class="c10"><span class="c3">Each contributor has both an individual and a collective </span><span
class="c3">responsibility</span><span class="c3"> for their work within the BigScience project. This
responsibility is both social and environmental. BigScience intends to positively impact stakeholders
through </span><span class="c3">its artifacts </span><span class="c3">regarding the former. Concerning the
latter, BigScience is committed to developing tools to </span><span class="c3">monitor </span><span
class="c3">and lower its artifacts’</span><span class="c3"> carbon footprint and energy
consumption</span><span class="c8 c3">.</span></p>
<p class="c1"><span class="c8 c3">Moreover, other tools such as an open legal playbook for NLP researchers guiding
them regarding the use and respect of IP and privacy rights also seek to promote responsibility around the
scientific community.</span></p>
<h2 class="c34" id="h.xe5i1mwl94go"><span class="c11">Extrinsic Values</span></h2>
<ul class="c5 lst-kix_auv7fgu45kz1-0 start">
<li class="c16 li-bullet-0">
<h3 id="h.jkbydh8nj24f" style="display:inline"><span>Accessibility</span></h3>
</li>
</ul>
<p class="c13 c14"><span class="c8 c3">As a means to achieve openness</span></p>
<p class="c9"><span class="c8 c3"></span></p>
<p class="c1"><span class="c3">BigScience puts in its best efforts to make our research and technological outputs
easily interpretable and explained to the wider public, outside the scientific community, </span><span
class="c3">especially to communities that have participated in data sharing.</span></p>
<p class="c9"><span class="c8 c3"></span></p>
<p class="c13 c14"><span class="c8 c3">Currently instrumentalized in:</span></p>
<ul class="c5 lst-kix_3bc73ymeow4m-0 start">
<li class="c13 c17 li-bullet-0"><span class="c8 c3">no-code tools for exploring the catalog, trained models,
etc.</span></li>
<li class="c13 c17 li-bullet-0"><span class="c8 c3">translating our calls for participation (in the data
sourcing group)</span></li>
<li class="c13 c17 li-bullet-0"><span class="c8 c3">journalism (articles published on the project)</span></li>
<li class="c13 c17 li-bullet-0"><span class="c3">linked to multidisciplinarity - legal hackathon as a step
toward “non-technical” presentation<br></span></li>
</ul>
<ul class="c5 lst-kix_auv7fgu45kz1-0">
<li class="c16 li-bullet-0">
<h3 id="h.iab1jivzsbv5" style="display:inline"><span class="c2">Transparency</span></h3>
</li>
</ul>
<p class="c13 c14"><span class="c8 c3">As a means to achieve reproducibility</span></p>
<p class="c9"><span class="c8 c3"></span></p>
<p class="c1"><span class="c8 c3">BigScience work is actively promoted at various conferences, webinars, academic
research, and scientific popularization so others can see our work.</span></p>
<p class="c1"><span class="c3">We have set up a management framework to oversee the use of BigScience </span><span
class="c3">models, datasets, and tools, e.g. through working groups.</span><span class="c8 c3"> </span>
</p>
<p class="c10"><span class="c8 c3">All BigScience internal meetings and work progress are publicly shared within the
Community, e.g. through public episodes. </span></p>
<p class="c1"><span class="c3">We are committed to building</span><span class="c3"> tools to interpret,
monitor, explain, and make </span><span class="c3">intelligible the artifacts</span><span
class="c3"> developed by BigScience.</span></p>
<ul class="c5 lst-kix_avrqhju2znks-0 start">
<li class="c15 li-bullet-0">
<h3 id="h.feoi899gyw4t" style="display:inline"><span>Interdisciplinarity</span></h3>
</li>
</ul>
<p class="c1"><span class="c8 c3">As a means to achieve inclusivity</span></p>
<p class="c1 c23"><span class="c8 c3"></span></p>
<p class="c7 c27"><span class="c3">We are constantly </span><span class="c3">building bridges </span><span
class="c3">among</span><span class="c3"> computer science, linguistics, law, sociology, </span><span
class="c3">philosophy</span><span class="c3">, and other relevant disciplines</span><span
class="c3"> </span><span class="c8 c3">in order to adopt a holistic approach in developing BigScience
artifacts.</span></p>
<ul class="c5 lst-kix_doyw8ul3oc0a-0 start">
<li class="c16 li-bullet-0">
<h3 id="h.3v9u97v5vv6z" style="display:inline"><span>Multilingualism</span></h3>
</li>
</ul>
<p class="c13 c14"><span class="c8 c3">As a means to achieve diversity</span></p>
<p class="c9"><span class="c8 c3"></span></p>
<p class="c1"><span class="c8 c3">By having a system that is multilingual from its conception, with the immediate
goal of covering the 20 most spoken languages in the world and a broad reach to include up to hundreds based
on collaborations with native speakers, we aim to reduce existing disparities in language and foster a more
equitable distribution of the benefits of our artifacts.</span></p>
<p class="c10 c23"><span class="c8 c3"></span></p>
<p class="c32 c23"><span class="c8 c26"></span></p>
<p class="c23 c32"><span class="c8 c26"></span></p>
<div>
<p class="c32 c23"><span class="c8 c26"></span></p>
</div>
<hr class="c30">
<div>
<p class="c4"><a href="#ftnt_ref1" id="ftnt1">[1]</a><span class="c24"> Chenyang Li, “The Confucian
Ideal of Harmony”, in </span><span class="c24 c11">Philosophy East and West</span><span
class="c8 c24">, vol. 56, no. 4, 2006, p. 589.</span></p>
</div>
<div>
<p class="c4"><a href="#ftnt_ref2" id="ftnt2">[2]</a><span class="c24"> Chris Heathwood, “Monism and
pluralism about value”, in </span><span class="c24 c11">The Oxford Handbook of Value
Theory</span><span class="c8 c24">, Iwao Hires and Jonas Olson (ed.), Oxford University Press, Oxford,
2015, p. 29.</span></p>
</div>
<div>
<p class="c4"><a href="#ftnt_ref3" id="ftnt3">[3]</a><span class="c8 c24"> Ibid.</span></p>
</div>
</body>
</html> |