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
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
|
%PDF-1.4
3 0 obj <<
/Length 1570
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -19.8 cm
0 g 0 G
1 0 0 1 -46.771 -529.134 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(The)-362(Project)-362(Gutenberg)-363(EBook)-362(of)-362(The)-362(Declaration)-362(of)-363(Indepen-)]TJ 0 -13.549 Td[(dence)-250(of)-250(The)-250(United)-250(States)-250(of)-250(America)-250(by)-250(Thomas)-250(Jefferson)]TJ 0 -29.913 Td[(This)-380(eBook)-380(is)-381(for)-380(the)-380(use)-380(of)-381(anyone)-380(anywhere)-380(at)-380(no)-380(cost)-381(and)]TJ 0 -13.549 Td[(with)-327(almost)-327(no)-327(restrictions)-327(whatsoever.)-481(You)-327(may)-326(cop)-1(y)-326(it,)-347(give)]TJ 0 -13.549 Td[(it)-400(away)-399(or)-400(re-use)-400(it)-399(under)-400(the)-400(terms)-400(of)-399(the)-400(Project)-400(Gutenberg)]TJ 0 -13.549 Td[(License)-240(included)-240(with)-240(this)-240(eBook)-240(or)-240(online)-241(at)-240(http://www.guten-)]TJ 0 -13.55 Td[(berg.org/license)]TJ 0 -29.913 Td[(Title:)-500(The)-500(Declaration)-500(of)-500(Independence)-500(of)-500(The)-500(United)]TJ 0 -13.549 Td[(States)-500(of)-500(America)]TJ 0 -27.098 Td[(Author:)-500(Thomas)-500(Jefferson)]TJ 0 -27.098 Td[(Release)-500(Date:)-500(October)-500(12,)-500(2005)-500([Ebook)-500(16780])]TJ 0 -27.099 Td[(Language:)-500(English)]TJ 0 -40.647 Td[(***START)-500(OF)-500(THE)-500(PROJECT)-500(GUTENBERG)-500(EBOOK)]TJ 0 -13.55 Td[(THE)-500(DECLARATION)-500(OF)-500(INDEPENDENCE)-500(OF)-500(THE)]TJ 0 -13.549 Td[(UNITED)-500(STATES)-500(OF)-500(AMERICA***)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
2 0 obj <<
/Type /Page
/Contents 3 0 R
/Resources 1 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 10 0 R
/Annots [ 7 0 R 8 0 R 9 0 R ]
>> endobj
7 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [83.317 431.687 192.388 441.407]
/Subtype /Link
/A << /S /GoTo /D (pglicense) >>
>> endobj
8 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [247.1 431.687 327.401 441.407]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/license) >>
>> endobj
9 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [46.771 418.138 116.753 427.858]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/license) >>
>> endobj
4 0 obj <<
/D [2 0 R /XYZ 46.771 529.134 null]
>> endobj
1 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
14 0 obj <<
/Length 126
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -510.152 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
13 0 obj <<
/Type /Page
/Contents 14 0 R
/Resources 12 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 10 0 R
>> endobj
12 0 obj <<
/ProcSet [ /PDF ]
>> endobj
17 0 obj <<
/Length 454
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 18.959 Tf 46.771 516.375 Td[(The)-252(Declaration)-252(of)-252(Independence)-252(of)]TJ 0 -24.647 Td[(The)-250(United)-250(States)-250(of)-250(America)]TJ 0 -43.519 Td[(by)-250(Thomas)-250(Jefferson)]TJ/F16 15.781 Tf 0 -51.933 Td[(Edition)-250(1,)-250(\050October)-250(12,)-250(2005\051)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
16 0 obj <<
/Type /Page
/Contents 17 0 R
/Resources 15 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 10 0 R
>> endobj
15 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
20 0 obj <<
/Length 126
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -510.152 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
19 0 obj <<
/Type /Page
/Contents 20 0 R
/Resources 18 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 10 0 R
>> endobj
18 0 obj <<
/ProcSet [ /PDF ]
>> endobj
21 0 obj
<< /S /GoTo /D (index1) >>
endobj
24 0 obj
(The Declaration of Independence of The United States of America)
endobj
27 0 obj <<
/Length 3420
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -19.8 cm
0 g 0 G
1 0 0 1 -46.771 -529.134 cm
BT
/F16 18.959 Tf 46.771 479.321 Td[(The)-252(Declaration)-252(of)-252(Independence)-252(of)]TJ 0 -24.647 Td[(The)-250(United)-250(States)-250(of)-250(America)]TJ/F16 15.781 Tf 45.604 -58.525 Td[(IN)-264(CONGRESS,)-263(July)-264(4,)-267(1776)]TJ/F16 10.909 Tf -45.604 -31.163 Td[(The)-186(unanimous)-186(Declaration)-186(of)-186(the)-186(thirteen)-186(united)-186(States)-186(of)-186(Amer-)]TJ 0 -13.549 Td[(ica)]TJ 11.956 -13.93 Td[(When)-193(in)-193(the)-192(Course)-193(of)-193(human)-193(events,)-204(it)-193(becomes)-193(necessary)-193(for)]TJ -11.956 -13.549 Td[(one)-260(people)-260(to)-260(dissolve)-260(the)-260(political)-260(bands)-260(which)-260(have)-260(connected)]TJ 0 -13.55 Td[(them)-425(with)-425(another,)-469(and)-425(to)-425(assume,)-469(among)-425(the)-425(Powers)-426(of)-425(the)]TJ 0 -13.549 Td[(earth,)-234(the)-230(separate)-231(and)-230(equal)-230(station)-230(to)-231(which)-230(the)-230(Laws)-230(of)-231(Nature)]TJ 0 -13.549 Td[(and)-213(of)-214(Nature's)-213(God)-214(entitle)-213(them,)-221(a)-213(decent)-213(respect)-214(to)-213(the)-214(opinions)]TJ 0 -13.549 Td[(of)-347(mankind)-346(requires)-347(that)-346(they)-347(should)-346(declare)-347(the)-346(causes)-347(which)]TJ 0 -13.549 Td[(impel)-250(them)-250(to)-250(the)-250(separation.)]TJ 11.956 -13.93 Td[(We)-311(hold)-312(these)-311(truths)-311(to)-311(be)-312(self-evident,)-326(that)-312(all)-311(men)-311(are)-312(cre-)]TJ -11.956 -13.55 Td[(ated)-324(equal,)-343(that)-324(they)-324(are)-324(endowed)-324(by)-324(their)-324(Creator)-324(with)-324(certain)]TJ 0 -13.549 Td[(unalienable)-325(Rights,)-343(that)-325(among)-325(these)-324(are)-325(Life,)-343(Liberty,)-344(and)-325(the)]TJ 0 -13.549 Td[(pursuit)-222(of)-223(Happiness.)]TJ/F19 10.909 Tf 92.417 0 Td[(\024)]TJ/F16 10.909 Tf 10.909 0 Td[(That)-222(to)-223(secure)-222(these)-222(rights,)-228(Governments)]TJ -103.326 -13.549 Td[(are)-365(instituted)-364(among)-365(Men,)-393(deriving)-365(their)-365(just)-364(powers)-365(from)-365(the)]TJ 0 -13.549 Td[(consent)-268(of)-269(the)-268(governed,)]TJ/F19 10.909 Tf 107.851 0 Td[(\024)]TJ/F16 10.909 Tf 10.909 0 Td[(That)-268(whenever)-269(any)-268(Form)-269(of)-268(Govern-)]TJ -118.76 -13.55 Td[(ment)-374(becomes)-374(destructive)-374(of)-374(these)-373(ends,)-405(it)-374(is)-374(the)-374(Right)-374(of)-374(the)]TJ 0 -13.549 Td[(People)-253(to)-253(alter)-252(or)-253(to)-253(abolish)-253(it,)-253(and)-253(to)-253(institute)-253(new)-253(Government,)]TJ 0 -13.549 Td[(laying)-180(its)-179(foundation)-180(on)-179(such)-180(principles)-179(and)-180(organizing)-179(its)-180(powers)]TJ 0 -13.549 Td[(in)-352(such)-353(form,)-378(as)-352(to)-353(them)-352(shall)-353(seem)-352(most)-352(likely)-353(to)-352(effect)-353(their)]TJ 0 -13.549 Td[(Safety)-312(and)-311(Happiness.)-434(Prudence,)-327(indeed,)-327(will)-312(dictate)-311(that)-312(Gov-)]TJ 0 -13.55 Td[(ernments)-352(long)-353(established)-352(should)-353(not)-352(be)-352(changed)-353(for)-352(light)-353(and)]TJ 0 -13.549 Td[(transient)-225(causes;)-233(and)-225(accordingly)-225(all)-226(experience)-225(hath)-225(shown,)-230(that)]TJ 0 -13.549 Td[(mankind)-278(are)-278(more)-278(disposed)-278(to)-278(suffer,)-285(while)-278(evils)-278(are)-278(sufferable,)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
26 0 obj <<
/Type /Page
/Contents 27 0 R
/Resources 25 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 10 0 R
>> endobj
22 0 obj <<
/D [26 0 R /XYZ 46.771 529.134 null]
>> endobj
25 0 obj <<
/Font << /F16 6 0 R /F19 29 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
32 0 obj <<
/Length 4259
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(2The)-150(Declaration)-150(of)-150(Independence)-150(of)-150(The)-150(United)-150(States)-150(of)-150(America)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(than)-323(to)-322(right)-323(themselves)-322(by)-323(abolishing)-322(the)-323(forms)-322(to)-323(which)-323(they)]TJ 0 -13.549 Td[(are)-203(accustomed.)-235(But)-203(when)-203(a)-203(long)-203(train)-203(of)-203(abuses)-203(and)-204(usurpations,)]TJ 0 -13.549 Td[(pursuing)-303(invariably)-304(the)-303(same)-303(Object)-303(evinces)-304(a)-303(design)-303(to)-304(reduce)]TJ 0 -13.549 Td[(them)-209(under)-209(absolute)-208(Despotism,)-217(it)-209(is)-209(their)-208(right,)-217(it)-209(is)-209(their)-209(duty,)-217(to)]TJ 0 -13.55 Td[(throw)-231(off)-231(such)-231(Government,)-235(and)-231(to)-231(provide)-231(new)-231(Guards)-231(for)-231(their)]TJ 0 -13.549 Td[(future)-338(security.)]TJ/F19 10.909 Tf 67.003 0 Td[(\024)]TJ/F16 10.909 Tf 10.909 0 Td[(Such)-338(has)-338(been)-338(the)-338(patient)-338(sufferance)-338(of)-338(these)]TJ -77.912 -13.549 Td[(Colonies;)-343(and)-312(such)-311(is)-312(now)-312(the)-312(necessity)-312(which)-312(constrains)-312(them)]TJ 0 -13.549 Td[(to)-276(alter)-276(their)-276(former)-276(Systems)-276(of)-276(Government.)-328(The)-276(history)-276(of)-276(the)]TJ 0 -13.549 Td[(present)-223(King)-223(of)-223(Great)-223(Britain)-222(is)-223(a)-223(history)-223(of)-223(repeated)-223(injuries)-223(and)]TJ 0 -13.55 Td[(usurpations,)-371(all)-346(having)-347(in)-347(direct)-346(object)-347(the)-346(establishment)-347(of)-347(an)]TJ 0 -13.549 Td[(absolute)-323(Tyranny)-323(over)-323(these)-323(States.)-469(To)-323(prove)-323(this,)-342(let)-323(Facts)-323(be)]TJ 0 -13.549 Td[(submitted)-250(to)-250(a)-250(candid)-250(world.)]TJ 21.819 -25.506 Td[(He)-383(has)-382(refused)-383(his)-383(Assent)-382(to)-383(Laws,)-416(the)-383(most)-382(wholesome)]TJ 0 -13.549 Td[(and)-250(necessary)-250(for)-250(the)-250(public)-250(good.)]TJ 0 -14.85 Td[(He)-248(has)-247(forbidden)-248(his)-247(Governors)-248(to)-248(pass)-247(Laws)-248(of)-247(imme)-1(diate)]TJ 0 -13.549 Td[(and)-161(pressing)-161(importance,)-179(unless)-161(suspended)-161(in)-161(their)-160(op)-1(eration)]TJ 0 -13.549 Td[(till)-274(his)-273(Assent)-274(should)-274(be)-274(obtained;)-285(and)-274(when)-274(so)-273(suspen)-1(ded,)]TJ 0 -13.549 Td[(he)-250(has)-250(utterly)-250(neglected)-250(to)-250(attend)-250(to)-250(them.)]TJ 0 -14.85 Td[(He)-309(has)-310(refused)-309(to)-310(pass)-309(other)-310(Laws)-309(for)-310(the)-309(accommoda)-1(tion)]TJ 0 -13.549 Td[(of)-517(large)-516(districts)-517(of)-516(people,)-584(unless)-516(those)-517(people)-516(wou)-1(ld)]TJ 0 -13.549 Td[(relinquish)-321(the)-322(right)-321(of)-321(Representation)-322(in)-321(the)-321(Legislature,)-339(a)]TJ 0 -13.549 Td[(right)-250(inestimable)-250(to)-250(them)-250(and)-250(formidable)-250(to)-250(tyrants)-250(only.)]TJ 0 -14.85 Td[(He)-282(has)-282(called)-282(together)-282(legislative)-282(bodies)-282(at)-282(places)-282(unusual,)]TJ 0 -13.549 Td[(uncomfortable,)-548(and)-488(distant)-488(from)-489(the)-488(depository)-488(of)-488(the)-1(ir)]TJ 0 -13.549 Td[(Public)-274(Records,)-281(for)-275(the)-274(sole)-275(purpose)-274(of)-275(fatiguing)-274(them)-275(into)]TJ 0 -13.55 Td[(compliance)-250(with)-250(his)-250(measures.)]TJ 0 -14.849 Td[(He)-487(has)-486(dissolved)-487(Representative)-487(Houses)-487(repeatedly,)-545(fo)-1(r)]TJ 0 -13.549 Td[(opposing)-229(with)-228(manly)-229(firmness)-228(his)-229(invasions)-229(on)-228(the)-229(rights)-229(of)]TJ 0 -13.55 Td[(the)-250(people.)]TJ 0 -14.849 Td[(He)-335(has)-335(refused)-336(for)-335(a)-335(long)-335(time,)-357(after)-335(such)-335(dissolutions,)-357(to)]TJ 0 -13.549 Td[(cause)-240(others)-240(to)-240(be)-241(elected;)-243(whereby)-240(the)-240(Legislative)-240(Powers,)]TJ 0 -13.55 Td[(incapable)-382(of)-382(Annihilation,)-415(have)-382(returned)-382(to)-382(the)-382(People)-382(a)-1(t)]TJ 0 -13.549 Td[(large)-406(for)-405(their)-406(exercise;)-484(the)-406(State)-405(remaining)-406(in)-406(the)-405(mean)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
31 0 obj <<
/Type /Page
/Contents 32 0 R
/Resources 30 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 10 0 R
>> endobj
30 0 obj <<
/Font << /F16 6 0 R /F19 29 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
35 0 obj <<
/Length 3440
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 321.947 548.934 Td[(3)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 68.59 518.175 Td[(time)-343(exposed)-343(to)-343(all)-343(the)-343(dangers)-343(of)-343(invasion)-343(from)-344(without,)]TJ 0 -13.549 Td[(and)-250(convulsions)-250(within.)]TJ 0 -16.011 Td[(He)-494(has)-494(endeavoured)-494(to)-494(prevent)-494(the)-494(population)-494(of)-494(these)]TJ 0 -13.55 Td[(States;)-457(for)-388(that)-388(purpose)-388(obstructing)-388(the)-388(Laws)-388(of)-388(Natural-)]TJ 0 -13.549 Td[(ization)-310(of)-309(Foreigners;)-340(refusing)-309(to)-310(pass)-309(others)-310(to)-309(e)-1(ncourage)]TJ 0 -13.549 Td[(their)-415(migratio)-1(n)-415(hither,)-457(and)-415(raising)-416(the)-415(conditions)-416(of)-416(new)]TJ 0 -13.549 Td[(Appropriations)-250(of)-250(Lands.)]TJ 0 -16.012 Td[(He)-211(has)-212(obstructed)-211(the)-212(Administration)-211(of)-212(Justice,)-219(by)-211(r)-1(efusing)]TJ 0 -13.549 Td[(his)-250(Assent)-250(to)-250(Laws)-250(for)-250(establishing)-250(Judiciary)-250(Powers.)]TJ 0 -16.011 Td[(He)-356(has)-357(made)-356(judges)-356(dependent)-356(on)-357(his)-356(Will)-356(alone,)-383(for)-357(the)]TJ 0 -13.549 Td[(tenure)-237(of)-236(their)-237(offices,)-239(and)-237(the)-236(amount)-237(and)-236(payment)-237(of)-237(their)]TJ 0 -13.55 Td[(salaries.)]TJ 0 -16.011 Td[(He)-275(has)-275(erected)-276(a)-275(multitude)-275(of)-275(New)-276(Offices,)-281(and)-275(sent)-276(hither)]TJ 0 -13.549 Td[(swarms)-324(of)-324(Officers)-324(to)-324(harass)-324(our)-323(People,)-343(and)-324(eat)-324(out)-324(their)]TJ 0 -13.549 Td[(substance.)]TJ 0 -16.012 Td[(He)-282(has)-282(kept)-283(among)-282(us,)-290(in)-282(times)-283(of)-282(peace,)-290(Standing)-282(Arm)-1(ies)]TJ 0 -13.549 Td[(without)-250(the)-250(Consent)-250(of)-250(our)-250(legislatures.)]TJ 0 -16.011 Td[(He)-334(has)-335(affected)-334(to)-334(render)-334(the)-335(Military)-334(independent)-334(of)-335(and)]TJ 0 -13.549 Td[(superior)-250(to)-250(the)-250(Civil)-250(Power.)]TJ 0 -16.012 Td[(He)-278(has)-278(combined)-278(with)-279(others)-278(to)-278(subject)-278(us)-278(to)-278(a)-279(jurisdiction)]TJ 0 -13.549 Td[(foreign)-450(to)-450(our)-450(constitution,)-500(and)-450(unacknowledged)-450(by)-450(our)]TJ 0 -13.549 Td[(laws;)-193(giving)-163(his)-164(Assent)-164(to)-164(their)-164(Acts)-164(of)-164(pretended)-164(legislation:)]TJ 0 -16.011 Td[(For)-250(quartering)-250(large)-250(bodies)-250(of)-250(armed)-250(troops)-250(among)-250(us:)]TJ 0 -16.012 Td[(For)-259(protecting)-259(them,)-262(by)-259(a)-259(mock)-260(Trial,)-261(from)-259(Punishment)-260(for)]TJ 0 -13.549 Td[(any)-292(Murders)-292(which)-293(they)-292(should)-292(commit)-292(on)-292(the)-292(In)-1(habitants)]TJ 0 -13.549 Td[(of)-250(these)-250(States:)]TJ 0 -16.012 Td[(For)-250(cutting)-250(off)-250(our)-250(Trade)-250(with)-250(all)-250(parts)-250(of)-250(the)-250(world:)]TJ 0 -16.011 Td[(For)-250(imposing)-250(taxes)-250(on)-250(us)-250(without)-250(our)-250(Consent:)]TJ 0 -16.011 Td[(For)-272(depriving)-272(us,)-278(in)-272(many)-273(cases,)-277(of)-273(the)-272(benefits)-272(of)-272(Trial)-273(by)]TJ 0 -13.549 Td[(Jury:)]TJ 0 -16.012 Td[(For)-352(transporting)-353(us)-352(beyond)-353(Seas)-352(to)-353(be)-352(tried)-353(for)-352(pre)-1(tended)]TJ 0 -13.549 Td[(offences:)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
34 0 obj <<
/Type /Page
/Contents 35 0 R
/Resources 33 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 36 0 R
>> endobj
33 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
39 0 obj <<
/Length 4025
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(4The)-150(Declaration)-150(of)-150(Independence)-150(of)-150(The)-150(United)-150(States)-150(of)-150(America)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 115.362 518.175 Td[(For)-262(abolishing)-261(the)-262(free)-261(System)-262(of)-261(English)-262(Laws)-261(in)-262(a)-261(neigh)-1(-)]TJ 0 -13.549 Td[(bouring)-246(Province,)-247(establishing)-247(therein)-246(an)-246(Arbitrary)-246(govern)-1(-)]TJ 0 -13.549 Td[(ment,)-484(and)-438(enlarging)-437(its)-438(Boundaries)-437(so)-438(as)-437(to)-438(render)-437(it)-438(at)]TJ 0 -13.549 Td[(once)-204(an)-205(example)-204(and)-205(fit)-204(instrument)-204(for)-205(introducing)-204(the)-205(same)]TJ 0 -13.55 Td[(absolute)-250(rule)-250(into)-250(these)-250(Colonies:)]TJ 0 -13.549 Td[(For)-402(taking)-402(away)-402(our)-402(Charters,)-440(abolishing)-402(our)-402(most)-402(valu)-1(-)]TJ 0 -13.549 Td[(able)-422(Laws,)-466(and)-422(altering)-423(fundamentally)-422(the)-423(Forms)-422(of)-422(ou)-1(r)]TJ 0 -13.549 Td[(Governments:)]TJ 0 -13.549 Td[(For)-304(suspending)-305(our)-304(own)-305(Legislatures,)-318(and)-304(declaring)-304(the)-1(m-)]TJ 0 -13.55 Td[(selves)-356(invested)-356(with)-356(Power)-356(to)-356(legislate)-356(for)-356(us)-356(in)-356(all)-356(c)-1(ases)]TJ 0 -13.549 Td[(whatsoever.)]TJ 0 -13.549 Td[(He)-299(has)-299(abdicated)-299(Government)-299(here,)-311(by)-299(declaring)-299(us)-299(out)-299(of)]TJ 0 -13.549 Td[(his)-250(Protection)-250(and)-250(waging)-250(War)-250(against)-250(us.)]TJ 0 -13.549 Td[(He)-341(has)-342(plundered)-341(our)-342(seas,)-364(ravaged)-341(our)-342(Coasts,)-364(burnt)-342(our)]TJ 0 -13.55 Td[(towns,)-250(and)-250(destroyed)-250(the)-250(lives)-250(of)-250(our)-250(people.)]TJ 0 -13.549 Td[(He)-525(is)-526(at)-525(this)-525(time)-525(transporting)-526(large)-525(armies)-525(of)-525(fo)-1(reign)]TJ 0 -13.549 Td[(mercenaries)-247(to)-248(compleat)-247(the)-247(works)-248(of)-247(death,)-248(desolation)-247(an)-1(d)]TJ 0 -13.549 Td[(tyranny,)-462(already)-419(begun)-420(with)-419(circumstances)-420(of)-419(Cruelty)-420(&)]TJ 0 -13.549 Td[(perfidy)-281(scarcely)-282(paralleled)-281(in)-281(the)-282(most)-281(barbarous)-281(ages,)-290(and)]TJ 0 -13.55 Td[(totally)-250(unworthy)-250(of)-250(the)-250(Head)-250(of)-250(a)-250(civilized)-250(nation.)]TJ 0 -13.549 Td[(He)-217(has)-216(constrained)-217(our)-217(fellow)-217(Citizens)-216(taken)-217(Captive)-217(on)-216(the)]TJ 0 -13.549 Td[(high)-365(Seas)-364(to)-365(bear)-365(Arms)-364(against)-365(their)-365(Country,)-393(to)-364(becom)-1(e)]TJ 0 -13.549 Td[(the)-425(executioners)-425(of)-425(their)-425(friends)-425(and)-425(Brethren,)-469(or)-425(to)-425(fall)]TJ 0 -13.549 Td[(themselves)-250(by)-250(their)-250(Hands.)]TJ 0 -13.55 Td[(He)-281(has)-281(excited)-281(domestic)-281(insurrections)-281(amongst)-281(us,)-289(and)-281(has)]TJ 0 -13.549 Td[(endeavoured)-232(to)-232(bring)-231(on)-232(the)-232(inhabitants)-232(of)-231(our)-232(frontiers,)-236(the)]TJ 0 -13.549 Td[(merciless)-408(Indian)-409(Savages,)-447(whose)-409(known)-408(rule)-408(of)-408(warfa)-1(re,)]TJ 0 -13.549 Td[(is)-476(an)-476(undistinguished)-476(destruction)-476(of)-477(all)-476(ages,)-532(sexes)-477(and)]TJ 0 -13.549 Td[(conditions.)]TJ -9.863 -18.459 Td[(In)-354(every)-355(stage)-354(of)-355(these)-354(Oppressions)-354(We)-355(have)-354(Petitioned)-355(for)]TJ -11.956 -13.549 Td[(Redress)-303(in)-304(the)-303(most)-303(humble)-303(terms:)-357(Our)-303(repeated)-303(Petitions)-304(have)]TJ 0 -13.549 Td[(been)-327(answered)-328(only)-327(by)-328(repeated)-327(injury.)-482(A)-327(Prince,)-347(whose)-328(char-)]TJ 0 -13.55 Td[(acter)-280(is)-280(thus)-281(marked)-280(by)-280(every)-280(act)-280(which)-280(may)-281(define)-280(a)-280(Tyrant,)-288(is)]TJ 0 -13.549 Td[(unfit)-250(to)-250(be)-250(the)-250(ruler)-250(of)-250(a)-250(free)-250(People.)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
38 0 obj <<
/Type /Page
/Contents 39 0 R
/Resources 37 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 36 0 R
>> endobj
37 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
42 0 obj <<
/Length 3768
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 321.947 548.934 Td[(5)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 58.727 518.175 Td[(Nor)-172(have)-171(We)-172(been)-171(wanting)-172(in)-171(attention)-172(to)-171(our)-172(Brittish)-172(brethren.)]TJ -11.956 -13.549 Td[(We)-379(have)-380(warned)-379(them)-379(from)-380(time)-379(to)-379(time)-380(of)-379(attempts)-379(by)-380(their)]TJ 0 -13.549 Td[(legislature)-309(to)-309(extend)-309(an)-309(unwarrantable)-309(jurisdiction)-309(over)-309(us.)-428(We)]TJ 0 -13.549 Td[(have)-266(reminded)-267(them)-266(of)-266(the)-266(circumstances)-267(of)-266(our)-266(emigration)-267(and)]TJ 0 -13.55 Td[(settlement)-382(here.)-646(We)-382(have)-382(appealed)-382(to)-382(their)-382(native)-383(justice)-382(and)]TJ 0 -13.549 Td[(magnanimity,)-485(and)-437(we)-438(have)-437(conjured)-438(them)-437(by)-438(the)-437(ties)-438(of)-438(our)]TJ 0 -13.549 Td[(common)-450(kindred)-450(to)-449(disavow)-450(these)-450(usurpations,)-500(which)-450(would)]TJ 0 -13.549 Td[(inevitably)-331(interrupt)-331(our)-330(c)-1(onnections)-330(and)-331(correspondence.)-493(They)]TJ 0 -13.549 Td[(too)-291(have)-291(been)-291(deaf)-291(to)-291(the)-291(voice)-291(of)-291(justice)-291(and)-292(of)-291(consanguinity.)]TJ 0 -13.55 Td[(We)-225(must,)-230(therefore,)-230(acquiesce)-225(in)-225(the)-225(necessity,)-230(which)-225(denounces)]TJ 0 -13.549 Td[(our)-304(Separation,)-317(and)-303(hold)-304(them,)-317(as)-304(we)-303(hold)-304(the)-303(rest)-304(of)-304(mankind,)]TJ 0 -13.549 Td[(Enemies)-250(in)-250(War,)-250(in)-250(Peace)-250(Friends.)]TJ 11.956 -13.964 Td[(We,)-482(therefore,)-482(the)-436(Representatives)-436(of)-435(the)-436(United)-436(States)-436(of)]TJ -11.956 -13.549 Td[(America,)-538(in)-480(General)-480(Congress,)-538(Assembled,)-538(appealing)-480(to)-481(the)]TJ 0 -13.549 Td[(Supreme)-320(Judge)-320(of)-320(the)-320(world)-320(for)-320(the)-320(rectitude)-320(of)-321(our)-320(intentions,)]TJ 0 -13.549 Td[(do,)-417(in)-384(the)-384(Name,)-417(and)-384(by)-383(the)-384(Authority)-384(of)-383(the)-384(good)-384(People)-384(of)]TJ 0 -13.55 Td[(these)-257(Colonies,)-259(solemnly)-257(publish)-257(and)-257(declare,)-259(That)-257(these)-258(United)]TJ 0 -13.549 Td[(Colonies)-400(are,)-437(and)-399(of)-400(Right)-400(ought)-399(to)-400(be)-399(Free)-400(and)-400(Independent)]TJ 0 -13.549 Td[(States;)-290(that)-277(they)-277(are)-277(Absolved)-277(from)-277(all)-277(Allegiance)-277(to)-277(the)-277(British)]TJ 0 -13.549 Td[(Crown,)-371(and)-347(that)-346(all)-347(political)-347(connection)-346(between)-347(them)-347(and)-347(the)]TJ 0 -13.549 Td[(State)-312(of)-312(Great)-311(Britain,)-327(is)-312(and)-312(ought)-312(to)-311(be)-312(totally)-312(dissolved;)-343(and)]TJ 0 -13.55 Td[(that)-230(as)-230(Free)-230(and)-230(Independent)-230(States,)-234(they)-230(have)-230(full)-230(Power)-231(to)-230(levy)]TJ 0 -13.549 Td[(War,)-375(conclude)-350(Peace,)-375(contract)-350(Alliances,)-375(estab)-1(lish)-350(Commerce,)]TJ 0 -13.549 Td[(and)-362(to)-361(do)-362(all)-362(other)-361(Acts)-362(and)-362(Things)-361(which)-362(Independent)-362(States)]TJ 0 -13.549 Td[(may)-286(of)-285(right)-285(do.)-357(And)-285(for)-286(the)-285(support)-286(of)-285(this)-286(Declaration,)-294(with)-286(a)]TJ 0 -13.549 Td[(firm)-293(reliance)-293(on)-292(the)-293(Protection)-293(of)-293(Divine)-292(Providence,)-304(we)-293(mutu-)]TJ 0 -13.55 Td[(ally)-266(pledge)-265(to)-266(each)-265(other)-266(our)-265(Lives,)-270(our)-265(Fortunes)-266(and)-265(our)-266(sacred)]TJ 0 -13.549 Td[(Honor.)]TJ 21.819 -71.826 Td[(Button)-250(Gwinnett)]TJ 0 -13.964 Td[(Lyman)-250(Hall)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
41 0 obj <<
/Type /Page
/Contents 42 0 R
/Resources 40 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 36 0 R
>> endobj
43 0 obj <<
/D [41 0 R /XYZ 46.771 122.903 null]
>> endobj
40 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
46 0 obj <<
/Length 928
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(6The)-150(Declaration)-150(of)-150(Independence)-150(of)-150(The)-150(United)-150(States)-150(of)-150(America)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 115.362 518.175 Td[(George)-250(Walton)]TJ 0 -68.632 Td[(William)-250(Hooper)]TJ 0 -13.609 Td[(Joseph)-250(Hewes)]TJ 0 -13.609 Td[(John)-250(Penn)]TJ 0 -68.632 Td[(Edward)-250(Rutledge)]TJ 0 -13.609 Td[(Thomas)-250(Heyward,)-250(Jr.)]TJ 0 -13.609 Td[(Thomas)-250(Lunch,)-250(Jr.)]TJ 0 -13.609 Td[(Arthur)-250(Middleton)]TJ 0 -68.633 Td[(John)-250(Hancock)]TJ 0 -68.632 Td[(Samuel)-250(Chase)]TJ 0 -13.609 Td[(William)-250(Paca)]TJ 0 -13.609 Td[(Thomas)-250(Stone)]TJ 0 -13.609 Td[(Charles)-250(Carroll)-250(of)-250(Carrollton)]TJ 0 -68.632 Td[(George)-250(Wythe)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
45 0 obj <<
/Type /Page
/Contents 46 0 R
/Resources 44 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 36 0 R
>> endobj
47 0 obj <<
/D [45 0 R /XYZ 93.543 488.285 null]
>> endobj
48 0 obj <<
/D [45 0 R /XYZ 93.543 394.671 null]
>> endobj
49 0 obj <<
/D [45 0 R /XYZ 93.543 285.256 null]
>> endobj
50 0 obj <<
/D [45 0 R /XYZ 93.543 216.58 null]
>> endobj
51 0 obj <<
/D [45 0 R /XYZ 93.543 107.121 null]
>> endobj
44 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
54 0 obj <<
/Length 1111
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 321.947 548.934 Td[(7)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 68.59 518.175 Td[(Richard)-250(Henry)-250(Lee)]TJ 0 -13.635 Td[(Thomas)-250(Jefferson)]TJ 0 -13.635 Td[(Benjamin)-250(Harrison)]TJ 0 -13.635 Td[(Thomas)-250(Nelson,)-250(Jr.)]TJ 0 -13.635 Td[(Francis)-250(Lightfoot)-250(Lee)]TJ 0 -13.635 Td[(Carter)-250(Braxton)]TJ 0 -68.868 Td[(Robert)-250(Morris)]TJ 0 -13.635 Td[(Benjamin)-250(Rush)]TJ 0 -13.635 Td[(Benjamin)-250(Franklin)]TJ 0 -13.635 Td[(John)-250(Morton)]TJ 0 -13.635 Td[(George)-250(Clymer)]TJ 0 -13.635 Td[(James)-250(Smith)]TJ 0 -13.635 Td[(George)-250(Taylor)]TJ 0 -13.635 Td[(James)-250(Wilson)]TJ 0 -13.635 Td[(George)-250(Ross)]TJ 0 -68.867 Td[(Caesar)-250(Rodney)]TJ 0 -13.635 Td[(George)-250(Read)]TJ 0 -13.635 Td[(Thomas)-250(McKean)]TJ 0 -68.868 Td[(William)-250(Floyd)]TJ 0 -13.635 Td[(Philip)-250(Livingston)]TJ 0 -13.635 Td[(Francis)-250(Lewis)]TJ 0 -13.635 Td[(Lewis)-250(Morris)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
53 0 obj <<
/Type /Page
/Contents 54 0 R
/Resources 52 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 36 0 R
>> endobj
55 0 obj <<
/D [53 0 R /XYZ 46.771 422.242 null]
>> endobj
56 0 obj <<
/D [53 0 R /XYZ 46.771 242.058 null]
>> endobj
57 0 obj <<
/D [53 0 R /XYZ 46.771 148.2 null]
>> endobj
52 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
60 0 obj <<
/Length 1025
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(8The)-150(Declaration)-150(of)-150(Independence)-150(of)-150(The)-150(United)-150(States)-150(of)-150(America)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 115.362 518.175 Td[(Richard)-250(Stockton)]TJ 0 -13.905 Td[(John)-250(Witherspoon)]TJ 0 -13.904 Td[(Francis)-250(Hopkinson)]TJ 0 -13.905 Td[(John)-250(Hart)]TJ 0 -13.905 Td[(Abraham)-250(Clark)]TJ 0 -71.294 Td[(Josiah)-250(Bartlett)]TJ 0 -13.905 Td[(William)-250(Whipple)]TJ 0 -71.294 Td[(Samuel)-250(Adams)]TJ 0 -13.905 Td[(John)-250(Adams)]TJ 0 -13.904 Td[(Robert)-250(Treat)-250(Paine)]TJ 0 -13.905 Td[(Elbridge)-250(Gerry)]TJ 0 -71.294 Td[(Stephen)-250(Hopkins)]TJ 0 -13.905 Td[(William)-250(Ellery)]TJ 0 -71.294 Td[(Roger)-250(Sherman)]TJ 0 -13.905 Td[(Samuel)-250(Huntington)]TJ 0 -13.904 Td[(William)-250(Williams)]TJ 0 -13.905 Td[(Oliver)-250(Wolcott)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
59 0 obj <<
/Type /Page
/Contents 60 0 R
/Resources 58 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 36 0 R
>> endobj
61 0 obj <<
/D [59 0 R /XYZ 93.543 529.134 null]
>> endobj
62 0 obj <<
/D [59 0 R /XYZ 93.543 433.72 null]
>> endobj
63 0 obj <<
/D [59 0 R /XYZ 93.543 346.295 null]
>> endobj
64 0 obj <<
/D [59 0 R /XYZ 93.543 233.276 null]
>> endobj
65 0 obj <<
/D [59 0 R /XYZ 93.543 148.077 null]
>> endobj
58 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
68 0 obj <<
/Length 299
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 321.947 548.934 Td[(9)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 68.59 518.175 Td[(Matthew)-250(Thornton)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
67 0 obj <<
/Type /Page
/Contents 68 0 R
/Resources 66 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 70 0 R
>> endobj
69 0 obj <<
/D [67 0 R /XYZ 46.771 529.134 null]
>> endobj
66 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
73 0 obj <<
/Length 126
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -510.152 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
72 0 obj <<
/Type /Page
/Contents 73 0 R
/Resources 71 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 70 0 R
>> endobj
71 0 obj <<
/ProcSet [ /PDF ]
>> endobj
76 0 obj <<
/Length 434
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -19.8 cm
0 g 0 G
1 0 0 1 -46.771 -529.134 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(***END)-500(OF)-500(THE)-500(PROJECT)-500(GUTENBERG)-500(EBOOK)-500(THE)]TJ 0 -13.549 Td[(DECLARATION)-500(OF)-500(INDEPENDENCE)-500(OF)-500(THE)-500(UNITED)]TJ 0 -13.549 Td[(STATES)-500(OF)-500(AMERICA***)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
75 0 obj <<
/Type /Page
/Contents 76 0 R
/Resources 74 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 70 0 R
>> endobj
77 0 obj <<
/D [75 0 R /XYZ 46.771 529.134 null]
>> endobj
74 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
80 0 obj <<
/Length 126
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -510.152 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
79 0 obj <<
/Type /Page
/Contents 80 0 R
/Resources 78 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 70 0 R
>> endobj
78 0 obj <<
/ProcSet [ /PDF ]
>> endobj
81 0 obj
<< /S /GoTo /D (index2) >>
endobj
84 0 obj
(Credits)
endobj
87 0 obj <<
/Length 482
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 18.959 Tf 46.771 479.321 Td[(Credits)]TJ/F16 10.909 Tf 0 -37.877 Td[(October)-250(12,)-250(2005)]TJ 43.637 -19.003 Td[(Created)-250(document.)]TJ 0 -13.55 Td[(Joshua)-250(Hutchinson)]TJ -43.637 -19.003 Td[(June)-250(2006)]TJ 43.637 -19.004 Td[(Added)-250(PGHeader/PGFooter.)]TJ 0 -13.549 Td[(Joshua)-250(Hutchinson)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
86 0 obj <<
/Type /Page
/Contents 87 0 R
/Resources 85 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 70 0 R
>> endobj
82 0 obj <<
/D [86 0 R /XYZ 46.771 529.134 null]
>> endobj
85 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
90 0 obj <<
/Length 126
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -280.63 -510.152 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
89 0 obj <<
/Type /Page
/Contents 90 0 R
/Resources 88 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 70 0 R
>> endobj
88 0 obj <<
/ProcSet [ /PDF ]
>> endobj
91 0 obj
<< /S /GoTo /D (index3) >>
endobj
94 0 obj
(A Word from Project Gutenberg)
endobj
97 0 obj <<
/Length 3142
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 18.959 Tf 46.771 479.321 Td[(A)-250(Word)-250(from)-250(Project)-250(Gutenberg)]TJ/F16 10.909 Tf 0 -32.422 Td[(This)-250(file)-250(should)-250(be)-250(named)-250(16780-pdf.pdf)-250(or)-250(16780-pdf.zip.)]TJ 11.956 -13.549 Td[(This)-291(and)-291(all)-291(associated)-291(files)-291(of)-291(various)-291(formats)-291(will)-291(be)-291(found)]TJ -11.956 -13.549 Td[(in:)]TJ/F16 9.863 Tf 19.637 -22.64 Td[(http://www.gutenberg.org/dirs/1/6/7/8/16780/)]TJ/F16 10.909 Tf -7.681 -23.368 Td[(Updated)-447(editions)-446(will)-447(replace)-447(the)-447(previous)-446(one)]TJ/F19 10.909 Tf 220.746 0 Td[(\024)]TJ/F16 10.909 Tf 15.782 0 Td[(the)-447(old)]TJ -248.484 -13.549 Td[(editions)-250(will)-250(be)-250(renamed.)]TJ 11.956 -13.549 Td[(Creating)-308(the)-308(works)-308(from)-308(public)-308(domain)-308(print)-308(editions)-308(means)]TJ -11.956 -13.549 Td[(that)-220(no)-220(one)-219(owns)-220(a)-220(United)-220(States)-220(copyright)-219(in)-220(these)-220(works,)-226(so)-220(the)]TJ 0 -13.549 Td[(Foundation)-325(\050and)-324(you!\051)-473(can)-325(copy)-324(and)-325(distribute)-324(it)-325(in)-324(the)-325(United)]TJ 0 -13.55 Td[(States)-163(without)-163(permission)-163(and)-163(without)-163(paying)-164(copyright)-163(royalties.)]TJ 0 -13.549 Td[(Special)-298(rules,)-311(set)-298(forth)-298(in)-298(the)-298(General)-299(Terms)-298(of)-298(Use)-298(part)-298(of)-299(this)]TJ 0 -13.549 Td[(license,)-360(apply)-337(to)-338(copying)-338(and)-337(distributing)-338(Project)-338(Gutenberg)]TJ/F21 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.549 Td[(electronic)-247(works)-246(to)-247(protect)-246(the)-247(Project)-246(Gutenberg)]TJ/F21 10.909 Tf 214.88 0 Td[(")]TJ/F16 10.909 Tf 13.381 0 Td[(concept)-247(and)]TJ -228.261 -13.549 Td[(trademark.)-243(Project)-228(Gutenberg)-228(is)-227(a)-228(registered)-228(trademark,)-233(and)-228(may)]TJ 0 -13.55 Td[(not)-394(be)-394(used)-394(if)-394(you)-393(charge)-394(for)-394(the)-394(eBooks,)-430(unless)-394(you)-394(receive)]TJ 0 -13.549 Td[(specific)-377(permission.)-631(If)-376(you)-377(do)-377(not)-377(charge)-377(anything)-377(for)-377(copies)]TJ 0 -13.549 Td[(of)-303(this)-302(eBook,)-316(complying)-303(with)-303(the)-303(rules)-302(is)-303(very)-303(easy.)-408(You)-303(may)]TJ 0 -13.549 Td[(use)-228(this)-228(eBook)-228(for)-228(nearly)-228(any)-228(purpose)-228(such)-228(as)-228(creatio)-1(n)-228(of)-228(deriva-)]TJ 0 -13.549 Td[(tive)-375(works,)-407(reports,)-407(performances)-375(and)-375(research.)-626(They)-375(may)-376(be)]TJ 0 -13.55 Td[(modified)-262(and)-262(printed)-261(and)-262(given)-262(away)]TJ/F19 10.909 Tf 166.194 0 Td[(\024)]TJ/F16 10.909 Tf 13.765 0 Td[(you)-262(may)-261(do)-262(practically)]TJ/F22 10.909 Tf -179.959 -13.549 Td[(anything)]TJ/F16 10.909 Tf 41.786 0 Td[(with)-330(public)-331(domain)-330(eBooks.)-491(Redistribution)-331(is)-330(subject)]TJ -41.786 -13.549 Td[(to)-250(the)-250(trademark)-250(license,)-250(especially)-250(commercial)-250(redistribution.)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
96 0 obj <<
/Type /Page
/Contents 97 0 R
/Resources 95 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 103 0 R
/Annots [ 98 0 R ]
>> endobj
98 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [66.408 395.011 247.235 403.798]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/dirs/1/6/7/8/16780/) >>
>> endobj
92 0 obj <<
/D [96 0 R /XYZ 46.771 529.134 null]
>> endobj
11 0 obj <<
/D [96 0 R /XYZ 46.771 124.715 null]
>> endobj
95 0 obj <<
/Font << /F16 6 0 R /F19 29 0 R /F21 100 0 R /F22 102 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
104 0 obj
<< /S /GoTo /D (index4) >>
endobj
107 0 obj
(The Full Project Gutenberg License)
endobj
110 0 obj <<
/Length 3331
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 18.959 Tf 93.543 479.321 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)]TJ/F22 10.909 Tf 0 -31.684 Td[(Please)-250(read)-250(this)-250(before)-250(you)-250(distribute)-250(or)-250(use)-250(this)-250(work.)]TJ/F16 10.909 Tf 11.956 -13.55 Td[(To)-269(protect)-269(the)-268(Project)-269(Gutenberg)]TJ/F21 10.909 Tf 144.428 0 Td[(")]TJ/F16 10.909 Tf 13.623 0 Td[(mission)-269(of)-269(promoting)-269(the)]TJ -170.007 -13.549 Td[(free)-225(distribution)-225(of)-226(electronic)-225(works,)-230(by)-225(using)-225(or)-225(distributing)-226(this)]TJ 0 -13.549 Td[(work)-304(\050or)-304(any)-303(other)-304(work)-304(associated)-304(in)-303(any)-304(way)-304(with)-304(the)-304(phrase)]TJ/F19 10.909 Tf 0 -13.549 Td[(\034)]TJ/F16 10.909 Tf 4.844 0 Td[(Project)-270(Gutenberg)]TJ/F19 10.909 Tf 79.894 0 Td[(\035)]TJ/F16 10.909 Tf 4.844 0 Td[(\051,)-275(you)-269(agree)-270(to)-270(comply)-269(with)-270(all)-270(the)-269(terms)-270(of)]TJ -89.582 -13.549 Td[(the)-268(Full)-269(Project)-268(Gutenberg)]TJ/F21 10.909 Tf 116.649 0 Td[(")]TJ/F16 10.909 Tf 13.617 0 Td[(License)-268(\050available)-269(with)-268(this)-268(file)-268(or)]TJ -130.266 -13.55 Td[(online)-250(at)-250(http://www.gutenberg.org/license\051.)]TJ/F16 15.781 Tf 0 -35.486 Td[(Section)-250(1.)]TJ/F16 13.151 Tf 15.58 -44.421 Td[(General)-255(Terms)-254(of)-255(Use)-255(&)-254(Redistributing)-255(Project)]TJ 45.013 -17.095 Td[(Gutenberg)]TJ/F21 13.151 Tf 55.509 0 Td[(")]TJ/F16 13.151 Tf 16.415 0 Td[(electronic)-268(works)]TJ -132.517 -41.803 Td[(1.A.)]TJ/F16 10.909 Tf 0 -25.902 Td[(By)-330(reading)-331(or)-330(using)-331(any)-330(part)-331(of)-330(this)-331(Project)-330(Gutenberg)]TJ/F21 10.909 Tf 245.138 0 Td[(")]TJ/F16 10.909 Tf 14.296 0 Td[(elec-)]TJ -259.434 -13.549 Td[(tronic)-302(work,)-315(you)-303(indicate)-302(that)-302(you)-302(have)-302(read,)-315(understand,)-316(agree)]TJ 0 -13.549 Td[(to)-198(and)-197(accept)-198(all)-197(the)-198(terms)-198(of)-197(this)-198(license)-197(and)-198(intellectual)-198(property)]TJ 0 -13.55 Td[(\050trademark/copyright\051)-211(agreement.)-237(If)-211(you)-211(do)-211(not)-211(agree)-211(to)-212(abide)-211(by)]TJ 0 -13.549 Td[(all)-270(the)-271(terms)-270(of)-270(this)-271(agreement,)-275(you)-270(must)-271(cease)-270(using)-270(and)-271(return)]TJ 0 -13.549 Td[(or)-262(destroy)-263(all)-262(copies)-262(of)-262(Project)-263(Gutenberg)]TJ/F21 10.909 Tf 183.192 0 Td[(")]TJ/F16 10.909 Tf 13.552 0 Td[(electronic)-262(works)-263(in)]TJ -196.744 -13.549 Td[(your)-380(possession.)-638(If)-379(you)-380(paid)-379(a)-380(fee)-379(for)-380(obtaining)-379(a)-380(copy)-379(of)-380(or)]TJ 0 -13.549 Td[(access)-269(to)-270(a)-269(Project)-270(Gutenberg)]TJ/F21 10.909 Tf 129.903 0 Td[(")]TJ/F16 10.909 Tf 13.63 0 Td[(electronic)-269(wo)-1(rk)-269(and)-269(you)-270(do)-269(not)]TJ -143.533 -13.549 Td[(agree)-206(to)-206(be)-205(bound)-206(by)-206(the)-206(terms)-206(of)-205(this)-206(agreement,)-215(you)-206(may)-206(obtain)]TJ 0 -13.55 Td[(a)-304(refund)-304(from)-304(the)-304(person)-304(or)-304(entity)-304(to)-304(whom)-304(you)-304(paid)-304(the)-304(fee)-304(as)]TJ 0 -13.549 Td[(set)-250(forth)-250(in)-250(paragraph)-250(1.E.8.)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
109 0 obj <<
/Type /Page
/Contents 110 0 R
/Resources 108 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 103 0 R
/Annots [ 111 0 R 112 0 R 115 0 R ]
>> endobj
111 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [264.296 377.512 362.159 387.232]
/Subtype /Link
/A << /S /GoTo /D (pglicense) >>
>> endobj
112 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [134.147 363.963 280.798 373.683]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/license) >>
>> endobj
115 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [189.881 63.764 215.638 73.484]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
105 0 obj <<
/D [109 0 R /XYZ 93.543 529.134 null]
>> endobj
113 0 obj <<
/D [109 0 R /XYZ 93.543 363.963 null]
>> endobj
114 0 obj <<
/D [109 0 R /XYZ 93.543 254.119 null]
>> endobj
108 0 obj <<
/Font << /F16 6 0 R /F22 102 0 R /F21 100 0 R /F19 29 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
119 0 obj <<
/Length 4487
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10394(17)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 13.151 Tf 46.771 518.175 Td[(1.B.)]TJ/F19 10.909 Tf 0 -27.866 Td[(\034)]TJ/F16 10.909 Tf 4.844 0 Td[(Project)-352(Gutenberg)]TJ/F19 10.909 Tf 80.79 0 Td[(\035)]TJ/F16 10.909 Tf 8.681 0 Td[(is)-352(a)-352(registered)-351(trademark.)-556(It)-351(may)-352(only)-352(be)]TJ -94.315 -13.549 Td[(used)-395(on)-394(or)-395(associated)-394(in)-395(any)-395(way)-394(with)-395(an)-394(electronic)-395(work)-395(by)]TJ 0 -13.549 Td[(people)-347(who)-346(agree)-347(to)-346(be)-347(bound)-347(by)-346(the)-347(terms)-346(of)-347(this)-347(agreement.)]TJ 0 -13.55 Td[(There)-255(are)-255(a)-256(few)-255(things)-255(that)-255(you)-256(can)-255(do)-255(with)-255(most)-255(Project)-256(Guten-)]TJ 0 -13.549 Td[(berg)]TJ/F21 10.909 Tf 19.386 0 Td[(")]TJ/F16 10.909 Tf 14.74 0 Td[(electronic)-371(works)-371(even)-372(without)-371(complying)-371(with)-371(the)-371(full)]TJ -34.126 -13.549 Td[(terms)-362(of)-362(this)-361(a)-1(greement.)-585(See)-362(paragraph)-362(1.C)-361(below.)-586(There)-362(are)]TJ 0 -13.549 Td[(a)-330(lot)-331(of)-330(things)-330(you)-331(can)-330(do)-331(with)-330(Project)-330(Gutenberg)]TJ/F21 10.909 Tf 223.321 0 Td[(")]TJ/F16 10.909 Tf 14.295 0 Td[(electronic)]TJ -237.616 -13.549 Td[(works)-193(if)-192(you)-193(follow)-192(the)-193(terms)-193(of)-192(this)-193(agreement)-192(and)-193(help)-193(preserve)]TJ 0 -13.55 Td[(free)-284(future)-283(access)-284(to)-283(Project)-284(Gutenberg)]TJ/F21 10.909 Tf 171.772 0 Td[(")]TJ/F16 10.909 Tf 13.784 0 Td[(electronic)-284(works.)-350(See)]TJ -185.556 -13.549 Td[(paragraph)-250(1.E)-250(below.)]TJ/F16 13.151 Tf 0 -43.303 Td[(1.C.)]TJ/F16 10.909 Tf 0 -27.866 Td[(The)-247(Project)-247(Gutenberg)-247(Literary)-247(Archive)-247(Foundation)-248(\050)]TJ/F19 10.909 Tf 233.699 0 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(the)-247(Foun-)]TJ -238.542 -13.549 Td[(dation)]TJ/F19 10.909 Tf 27.273 0 Td[(\035)]TJ/F16 10.909 Tf 9.058 0 Td[(or)-386(PGLAF\051,)-387(owns)-386(a)-386(compilation)-386(copyright)-387(in)-386(the)-386(col-)]TJ -36.331 -13.549 Td[(lection)-306(of)-305(Project)-306(Gutenberg)]TJ/F21 10.909 Tf 125.734 0 Td[(")]TJ/F16 10.909 Tf 14.024 0 Td[(electronic)-306(works.)-416(Nearly)-306(all)-305(the)]TJ -139.758 -13.549 Td[(individual)-233(works)-232(in)-233(the)-233(collection)-232(are)-233(in)-233(the)-233(public)-232(domain)-233(in)-233(the)]TJ 0 -13.549 Td[(United)-323(States.)-469(If)-322(an)-323(individual)-323(work)-323(is)-323(in)-323(the)-323(public)-323(domain)-323(in)]TJ 0 -13.55 Td[(the)-344(United)-345(States)-344(and)-344(you)-345(are)-344(located)-345(in)-344(the)-344(United)-345(States,)-368(we)]TJ 0 -13.549 Td[(do)-332(not)-331(claim)-332(a)-331(right)-332(to)-332(prevent)-331(you)-332(from)-332(copying,)-352(distributing,)]TJ 0 -13.549 Td[(performing,)-231(displaying)-226(or)-226(creating)-226(derivative)-226(works)-226(based)-226(on)-226(the)]TJ 0 -13.549 Td[(work)-232(as)-231(long)-232(as)-231(all)-232(references)-231(to)-232(Project)-231(Gutenberg)-232(are)-232(removed.)]TJ 0 -13.549 Td[(Of)-188(course,)-200(we)-187(hope)-188(that)-187(you)-188(will)-187(support)-188(the)-187(Project)-188(Gutenberg)]TJ/F21 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.55 Td[(mission)-334(of)-334(promoting)-335(free)-334(access)-334(to)-334(electronic)-334(works)-334(by)-335(freely)]TJ 0 -13.549 Td[(sharing)-212(Project)-211(Gutenberg)]TJ/F21 10.909 Tf 113.685 0 Td[(")]TJ/F16 10.909 Tf 12.999 0 Td[(works)-212(in)-211(compliance)-212(with)-211(the)-212(terms)]TJ -126.684 -13.549 Td[(of)-441(this)-441(agreement)-441(for)-441(keeping)-441(the)-441(Project)-441(Gutenberg)]TJ/F21 10.909 Tf 241.5 0 Td[(")]TJ/F16 10.909 Tf 15.501 0 Td[(name)]TJ -257.001 -13.549 Td[(associated)-262(with)-262(the)-262(work.)-286(You)-262(can)-262(easily)-262(comply)-262(with)-263(the)-262(terms)]TJ 0 -13.549 Td[(of)-283(this)-284(agreement)-283(by)-283(keeping)-284(this)-283(work)-283(in)-284(the)-283(same)-283(format)-284(with)]TJ 0 -13.55 Td[(its)-287(attached)-287(full)-287(Project)-287(Gutenberg)]TJ/F21 10.909 Tf 151.285 0 Td[(")]TJ/F16 10.909 Tf 13.821 0 Td[(License)-287(when)-287(you)-287(share)-287(it)]TJ -165.106 -13.549 Td[(without)-250(charge)-250(with)-250(others.)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
118 0 obj <<
/Type /Page
/Contents 119 0 R
/Resources 117 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 103 0 R
/Annots [ 121 0 R 122 0 R ]
>> endobj
121 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [229.515 420.185 244.973 429.905]
/Subtype /Link
/A << /S /GoTo /D (pglicense1C) >>
>> endobj
122 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [93.113 365.988 107.96 375.708]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E) >>
>> endobj
120 0 obj <<
/D [118 0 R /XYZ 46.771 529.134 null]
>> endobj
123 0 obj <<
/D [118 0 R /XYZ 46.771 354.098 null]
>> endobj
124 0 obj <<
/D [118 0 R /XYZ 46.771 66.142 null]
>> endobj
117 0 obj <<
/Font << /F16 6 0 R /F19 29 0 R /F21 100 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
128 0 obj <<
/Length 3506
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(18The)-150(Declaration)-150(of)-150(Independence)-150(of)-150(The)-150(United)-150(States)-150(of)-150(America)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 13.151 Tf 93.543 518.175 Td[(1.D.)]TJ/F16 10.909 Tf 0 -29.35 Td[(The)-468(copyright)-467(laws)-468(of)-467(the)-468(place)-467(where)-468(you)-467(are)-468(located)-468(also)]TJ 0 -13.549 Td[(govern)-267(what)-268(you)-267(can)-267(do)-268(with)-267(this)-267(wo)-1(rk.)-302(Copyright)-267(laws)-267(in)-268(most)]TJ 0 -13.549 Td[(countries)-366(are)-366(in)-366(a)-366(constant)-366(state)-366(of)-366(change.)-598(If)-366(you)-367(are)-366(outside)]TJ 0 -13.55 Td[(the)-394(United)-394(States,)-431(check)-394(the)-394(laws)-394(of)-394(your)-394(country)-394(in)-395(addition)]TJ 0 -13.549 Td[(to)-439(the)-440(terms)-439(of)-439(this)-439(agreement)-440(before)-439(downloading,)-487(copying,)]TJ 0 -13.549 Td[(displaying,)-243(performing,)-243(distributing)-241(or)-241(creating)-241(derivative)-241(works)]TJ 0 -13.549 Td[(based)-269(on)-268(this)-268(work)-269(or)-268(any)-269(other)-268(Project)-269(Gutenberg)]TJ/F21 10.909 Tf 221.57 0 Td[(")]TJ/F16 10.909 Tf 13.62 0 Td[(work.)-305(The)]TJ -235.19 -13.549 Td[(Foundation)-344(makes)-343(no)-344(representations)-343(concerning)-344(the)-344(copyright)]TJ 0 -13.55 Td[(status)-250(of)-250(any)-250(work)-250(in)-250(any)-250(country)-250(outside)-250(the)-250(United)-250(States.)]TJ/F16 13.151 Tf 0 -45.973 Td[(1.E.)]TJ/F16 10.909 Tf 0 -29.351 Td[(Unless)-250(you)-250(have)-250(removed)-250(all)-250(references)-250(to)-250(Project)-250(Gutenberg:)]TJ 0 -27.168 Td[(1.E.1.)]TJ 0 -27.168 Td[(The)-259(following)-260(sentence,)-261(with)-260(active)-259(links)-259(to,)-262(or)-259(other)-260(immediate)]TJ 0 -13.549 Td[(access)-465(to)-1(,)-519(the)-465(full)-466(Project)-465(Gutenberg)]TJ/F21 10.909 Tf 170.488 0 Td[(")]TJ/F16 10.909 Tf 15.769 0 Td[(License)-465(must)-466(appear)]TJ -186.257 -13.55 Td[(prominently)-274(whenever)-275(any)-274(copy)-274(of)-275(a)-274(Project)-274(Gutenberg)]TJ/F21 10.909 Tf 244.529 0 Td[(")]TJ/F16 10.909 Tf 13.683 0 Td[(work)]TJ -258.212 -13.549 Td[(\050any)-421(work)-422(on)-421(which)-421(the)-422(phrase)]TJ/F19 10.909 Tf 148.755 0 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(Project)-421(Gutenberg)]TJ/F19 10.909 Tf 81.549 0 Td[(\035)]TJ/F16 10.909 Tf 9.44 0 Td[(appears,)]TJ -244.587 -13.549 Td[(or)-347(with)-346(which)-347(the)-346(phrase)]TJ/F19 10.909 Tf 115.849 0 Td[(\034)]TJ/F16 10.909 Tf 4.844 0 Td[(Project)-346(Gutenberg)]TJ/F19 10.909 Tf 80.732 0 Td[(\035)]TJ/F16 10.909 Tf 8.624 0 Td[(is)-346(associated\051)-347(is)]TJ -210.049 -13.549 Td[(accessed,)-250(displayed,)-250(performed,)-250(viewed,)-250(copied)-250(or)-250(distributed:)]TJ/F16 9.863 Tf 19.637 -25.35 Td[(This)-432(eBook)-432(is)-432(for)-432(the)-432(use)-433(of)-432(anyone)-432(anywhere)-432(at)-432(no)-432(cost)]TJ 0 -12.822 Td[(and)-345(with)-344(almost)-345(no)-344(restrictions)-345(whatsoever.)-534(You)-344(may)-345(copy)]TJ 0 -12.822 Td[(it,)-437(give)-400(it)-400(away)-400(or)-400(re-use)-400(it)-400(under)-399(the)-400(terms)-400(of)-400(the)-400(Project)]TJ 0 -12.822 Td[(Gutenberg)-476(License)-476(included)-476(with)-475(this)-476(eBook)-476(or)-476(online)-476(at)]TJ 0 -12.821 Td[(http://www.gutenberg.org)]TJ/F16 10.909 Tf -19.637 -40.246 Td[(1.E.2.)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
127 0 obj <<
/Type /Page
/Contents 128 0 R
/Resources 126 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 103 0 R
/Annots [ 130 0 R ]
>> endobj
130 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [113.18 104.237 215.636 113.025]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org) >>
>> endobj
125 0 obj <<
/D [127 0 R /XYZ 93.543 364.976 null]
>> endobj
129 0 obj <<
/D [127 0 R /XYZ 93.543 302.729 null]
>> endobj
131 0 obj <<
/D [127 0 R /XYZ 93.543 91.16 null]
>> endobj
126 0 obj <<
/Font << /F16 6 0 R /F21 100 0 R /F19 29 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
134 0 obj <<
/Length 3795
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10394(19)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(If)-295(an)-295(individual)-295(Project)-295(Gutenberg)]TJ/F21 10.909 Tf 151.639 0 Td[(")]TJ/F16 10.909 Tf 13.91 0 Td[(electronic)-295(work)-295(is)-295(derived)]TJ -165.549 -13.549 Td[(from)-228(the)-229(public)-228(domain)-228(\050does)-228(not)-229(contain)-228(a)-228(notice)-228(indicating)-229(that)]TJ 0 -13.549 Td[(it)-184(is)-183(posted)-184(with)-183(permission)-184(of)-183(the)-184(copyright)-184(holder\051,)-196(the)-184(work)-184(can)]TJ 0 -13.549 Td[(be)-256(copied)-256(and)-256(distributed)-256(to)-256(anyone)-256(in)-256(the)-256(United)-256(States)-256(without)]TJ 0 -13.55 Td[(paying)-230(any)-230(fees)-230(or)-230(charges.)-243(If)-230(you)-231(are)-230(redistributing)-230(or)-230(providing)]TJ 0 -13.549 Td[(access)-248(to)-248(a)-248(work)-248(with)-248(the)-248(phrase)]TJ/F19 10.909 Tf 143.745 0 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(Project)-248(Gutenberg)]TJ/F19 10.909 Tf 79.658 0 Td[(\035)]TJ/F16 10.909 Tf 7.548 0 Td[(associated)]TJ -235.794 -13.549 Td[(with)-410(or)-411(appearing)-410(on)-410(the)-411(work,)-450(you)-411(must)-410(comply)-410(either)-411(with)]TJ 0 -13.549 Td[(the)-424(requireme)-1(nts)-424(of)-424(paragraphs)-425(1.E.1)-424(through)-425(1.E.7)-424(or)-425(obtain)]TJ 0 -13.549 Td[(permission)-281(for)-280(the)-280(use)-281(of)-280(the)-281(work)-280(and)-281(the)-280(Project)-281(Gutenberg)]TJ/F21 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.55 Td[(trademark)-250(as)-250(set)-250(forth)-250(in)-250(paragraphs)-250(1.E.8)-250(or)-250(1.E.9.)]TJ 0 -38.607 Td[(1.E.3.)]TJ 0 -26.259 Td[(If)-344(an)-343(individual)-344(Project)-343(Gutenberg)]TJ/F21 10.909 Tf 153.755 0 Td[(")]TJ/F16 10.909 Tf 14.439 0 Td[(electronic)-344(work)-343(is)-344(posted)]TJ -168.194 -13.549 Td[(with)-351(the)-351(permission)-350(of)-351(the)-351(copyright)-350(holder,)-376(your)-351(use)-351(and)-351(dis-)]TJ 0 -13.549 Td[(tribution)-257(must)-258(comply)-257(with)-257(both)-258(paragraphs)-257(1.E.1)-257(through)-258(1.E.7)]TJ 0 -13.549 Td[(and)-301(any)-301(additional)-301(terms)-301(imposed)-301(by)-301(the)-301(copyright)-301(holder.)-403(Ad-)]TJ 0 -13.549 Td[(ditional)-256(terms)-256(will)-256(be)-255(linked)-256(to)-256(the)-256(Project)-256(Gutenberg)]TJ/F21 10.909 Tf 233.221 0 Td[(")]TJ/F16 10.909 Tf 13.482 0 Td[(License)]TJ -246.703 -13.55 Td[(for)-267(all)-267(works)-267(po)-1(sted)-267(with)-267(the)-267(permission)-267(of)-267(the)-267(copyright)-268(holder)]TJ 0 -13.549 Td[(found)-250(at)-250(the)-250(beginning)-250(of)-250(this)-250(work.)]TJ 0 -38.608 Td[(1.E.4.)]TJ 0 -26.258 Td[(Do)-275(not)-275(unlink)-275(or)-274(detach)-275(or)-275(remove)-275(the)-275(full)-275(Project)-275(Gutenberg)]TJ/F21 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.549 Td[(License)-330(terms)-329(from)-330(this)-329(work,)-350(or)-330(any)-329(files)-330(containing)-329(a)-330(part)-330(of)]TJ 0 -13.549 Td[(this)-185(work)-185(or)-185(any)-185(other)-185(work)-185(associated)-185(with)-186(Project)-185(Gutenberg)]TJ/F21 10.909 Tf 267.212 0 Td[(")]TJ/F16 10.909 Tf 10.691 0 Td[(.)]TJ -277.903 -38.608 Td[(1.E.5.)]TJ 0 -26.258 Td[(Do)-457(not)-457(copy,)-508(display,)-509(perform,)-508(distribute)-457(or)-457(redistribute)-457(this)]TJ 0 -13.55 Td[(electronic)-441(work,)-488(or)-441(any)-441(part)-441(of)-441(this)-440(electronic)-441(work,)-489(without)]TJ 0 -13.549 Td[(prominently)-258(displaying)-257(the)-258(sentence)-258(set)-258(forth)-257(in)-258(paragraph)-258(1.E.1)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
133 0 obj <<
/Type /Page
/Contents 134 0 R
/Resources 132 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 103 0 R
/Annots [ 135 0 R 136 0 R 138 0 R 141 0 R ]
>> endobj
135 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [192.525 420.953 215.554 430.673]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
136 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [206.12 393.854 229.149 403.574]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
138 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [241.791 301.89 264.82 311.61]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
141 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [304.372 63.764 327.401 73.484]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
137 0 obj <<
/D [133 0 R /XYZ 46.771 381.505 null]
>> endobj
139 0 obj <<
/D [133 0 R /XYZ 46.771 235.344 null]
>> endobj
140 0 obj <<
/D [133 0 R /XYZ 46.771 143.379 null]
>> endobj
132 0 obj <<
/Font << /F16 6 0 R /F21 100 0 R /F19 29 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
144 0 obj <<
/Length 4050
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(20The)-150(Declaration)-150(of)-150(Independence)-150(of)-150(The)-150(United)-150(States)-150(of)-150(America)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(with)-394(active)-395(links)-394(or)-395(immediate)-394(access)-395(to)-394(the)-394(full)-395(terms)-394(of)-395(the)]TJ 0 -13.549 Td[(Project)-250(Gutenberg)]TJ/F21 10.909 Tf 79.68 0 Td[(")]TJ/F16 10.909 Tf 13.418 0 Td[(License.)]TJ -93.098 -34.591 Td[(1.E.6.)]TJ 0 -24.07 Td[(You)-475(may)-476(convert)-475(to)-476(and)-475(distribute)-476(this)-475(work)-476(in)-475(any)-476(binary,)]TJ 0 -13.549 Td[(compressed,)-287(marked)-280(up,)-287(nonproprietary)-280(or)-280(proprietary)-279(form,)-288(in-)]TJ 0 -13.549 Td[(cluding)-234(any)-234(word)-234(processing)-233(or)-234(hypertext)-234(form.)-245(However,)-237(if)-234(you)]TJ 0 -13.55 Td[(provide)-318(access)-318(to)-318(or)-317(distribute)-318(copies)-318(of)-318(a)-318(Project)-318(Gutenberg)]TJ/F21 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.549 Td[(work)-462(in)-462(a)-461(format)-462(other)-462(than)]TJ/F19 10.909 Tf 136.26 0 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(Plain)-462(Vanilla)-462(ASCII)]TJ/F19 10.909 Tf 93.104 0 Td[(\035)]TJ/F16 10.909 Tf 9.88 0 Td[(or)-462(other)]TJ -244.087 -13.549 Td[(format)-284(used)-284(in)-284(the)-284(official)-284(version)-284(posted)-284(on)-284(the)-284(official)-284(Project)]TJ 0 -13.549 Td[(Gutenberg)]TJ/F21 10.909 Tf 46.048 0 Td[(")]TJ/F16 10.909 Tf 13.833 0 Td[(web)-288(site)-288(\050http://www.gutenberg.org\051,)-298(you)-288(must,)-297(at)]TJ -59.881 -13.549 Td[(no)-357(additional)-357(cost,)-384(fee)-356(or)-357(expense)-357(to)-357(the)-357(user,)-384(provide)-357(a)-357(copy,)]TJ 0 -13.55 Td[(a)-380(means)-380(of)-380(exporting)-379(a)-380(copy,)-413(or)-379(a)-380(means)-380(of)-380(obtaining)-380(a)-380(copy)]TJ 0 -13.549 Td[(upon)-313(request,)-328(of)-313(the)-313(work)-313(in)-312(its)-313(original)]TJ/F19 10.909 Tf 181.09 0 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(Plain)-313(Vanilla)-313(ASCII)]TJ/F19 10.909 Tf 89.853 0 Td[(\035)]TJ/F16 10.909 Tf -275.786 -13.549 Td[(or)-248(other)-247(form.)-250(Any)-247(alternate)-248(format)-248(must)-247(include)-248(the)-248(full)-248(Project)]TJ 0 -13.549 Td[(Gutenberg)]TJ/F21 10.909 Tf 46.048 0 Td[(")]TJ/F16 10.909 Tf 13.418 0 Td[(License)-250(as)-250(specified)-250(in)-250(paragraph)-250(1.E.1.)]TJ -59.466 -34.591 Td[(1.E.7.)]TJ 0 -24.07 Td[(Do)-450(not)-450(charge)-449(a)-450(fee)-450(for)-450(access)-449(to,)-500(viewing,)-500(displaying,)-500(per-)]TJ 0 -13.549 Td[(forming,)-240(copying)-237(or)-237(distributing)-238(any)-237(Project)-237(Gutenberg)]TJ/F21 10.909 Tf 240.689 0 Td[(")]TJ/F16 10.909 Tf 13.279 0 Td[(works)]TJ -253.968 -13.549 Td[(unless)-250(you)-250(comply)-250(with)-250(paragraph)-250(1.E.8)-250(or)-250(1.E.9.)]TJ 0 -34.591 Td[(1.E.8.)]TJ 0 -24.07 Td[(You)-440(may)-440(charge)-440(a)-439(reasonable)-440(fee)-440(for)-440(copies)-440(of)-440(or)-440(providing)]TJ 0 -13.55 Td[(access)-361(to)-361(or)-361(distributing)-361(Project)-361(Gutenberg)]TJ/F21 10.909 Tf 192.388 0 Td[(")]TJ/F16 10.909 Tf 14.628 0 Td[(electronic)-361(works)]TJ -207.016 -13.549 Td[(provided)-250(that)]TJ/F19 10.909 Tf 12.546 -18.615 Td[(")]TJ/F16 10.909 Tf 9.272 0 Td[(You)-218(pay)-218(a)-219(royalty)-218(fee)-218(of)-218(20%)-219(of)-218(the)-218(gross)-218(profits)-218(you)-219(derive)]TJ 0 -13.549 Td[(from)-212(the)-211(use)-212(of)-212(Project)-211(Gutenberg)]TJ/F21 10.909 Tf 146.666 0 Td[(")]TJ/F16 10.909 Tf 13 0 Td[(works)-212(calculated)-211(using)]TJ -159.666 -13.55 Td[(the)-211(method)-210(yo)-1(u)-210(already)-211(use)-211(to)-210(calculate)-211(your)-211(applicable)-211(tax-)]TJ 0 -13.549 Td[(es.)-240(The)-221(fee)-220(is)-220(owe)-1(d)-220(to)-220(the)-221(owner)-220(of)-221(the)-220(Project)-221(Gutenberg)]TJ/F21 10.909 Tf 248.121 0 Td[(")]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
143 0 obj <<
/Type /Page
/Contents 144 0 R
/Resources 142 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 103 0 R
/Annots [ 146 0 R 148 0 R ]
>> endobj
146 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [301.143 294.546 326.899 304.266]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
148 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [246.554 208.786 269.583 218.506]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
145 0 obj <<
/D [143 0 R /XYZ 93.543 491.727 null]
>> endobj
147 0 obj <<
/D [143 0 R /XYZ 93.543 284.025 null]
>> endobj
116 0 obj <<
/D [143 0 R /XYZ 93.543 198.265 null]
>> endobj
142 0 obj <<
/Font << /F16 6 0 R /F21 100 0 R /F19 29 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
151 0 obj <<
/Length 4295
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10394(21)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 68.59 518.175 Td[(trademark,)-296(but)-287(he)-287(has)-286(agreed)-287(to)-287(donate)-287(royalties)-287(under)-287(this)]TJ 0 -13.549 Td[(paragraph)-263(to)-263(the)-263(Project)-263(Gutenberg)-263(Literary)-263(Archive)-263(Fou)-1(n-)]TJ 0 -13.549 Td[(dation.)-842(Royalty)-448(payments)-447(must)-448(be)-447(paid)-448(within)-447(60)-448(days)]TJ 0 -13.549 Td[(following)-365(each)-365(date)-365(on)-366(which)-365(you)-365(prepare)-365(\050or)-365(are)-365(leg)-1(ally)]TJ 0 -13.55 Td[(required)-473(to)-473(prepare\051)-473(your)-473(periodic)-473(tax)-473(returns.)-920(Royalty)]TJ 0 -13.549 Td[(payments)-284(should)-284(be)-284(clearly)-284(marked)-284(as)-284(such)-284(and)-284(sent)-284(to)-284(the)]TJ 0 -13.549 Td[(Project)-350(Gutenberg)-350(Literary)-351(Archive)-350(Foundation)-350(at)-350(the)-351(ad-)]TJ 0 -13.549 Td[(dress)-312(specified)-312(in)-312(Section)-312(4,)]TJ/F19 10.909 Tf 128.383 0 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(Information)-312(about)-312(donations)]TJ -133.226 -13.549 Td[(to)-250(the)-250(Project)-250(Gutenberg)-250(Literary)-250(Archive)-250(Foundation.)]TJ/F19 10.909 Tf 237.839 0 Td[(\035)]TJ -247.112 -13.55 Td[(")]TJ/F16 10.909 Tf 9.273 0 Td[(You)-425(provide)-425(a)-425(full)-424(refund)-425(of)-425(any)-425(money)-425(paid)-425(by)-425(a)-425(user)]TJ 0 -13.549 Td[(who)-339(notifies)-339(you)-340(in)-339(writing)-339(\050or)-339(by)-340(e-mail\051)-339(within)-339(30)-340(days)]TJ 0 -13.549 Td[(of)-343(receipt)-343(that)-343(s/he)-343(does)-344(not)-343(agree)-343(to)-343(the)-343(terms)-343(of)-343(the)-344(full)]TJ 0 -13.549 Td[(Project)-235(Gutenberg)]TJ/F21 10.909 Tf 79.514 0 Td[(")]TJ/F16 10.909 Tf 13.252 0 Td[(License.)-245(You)-235(must)-235(require)-234(such)-235(a)-235(user)]TJ -92.766 -13.549 Td[(to)-324(return)-324(or)-323(destroy)-324(all)-324(copies)-324(of)-323(the)-324(works)-324(possessed)-324(in)-324(a)]TJ 0 -13.55 Td[(physical)-322(medium)-321(and)-322(discontinue)-321(all)-322(use)-322(of)-321(and)-322(all)-322(access)]TJ 0 -13.549 Td[(to)-250(other)-250(copies)-250(of)-250(Project)-250(Gutenberg)]TJ/F21 10.909 Tf 158.454 0 Td[(")]TJ/F16 10.909 Tf 13.418 0 Td[(works.)]TJ/F19 10.909 Tf -181.145 -13.549 Td[(")]TJ/F16 10.909 Tf 9.273 0 Td[(You)-427(provide,)-472(in)-427(accordance)-428(with)-427(paragraph)-427(1.F.3,)-472(a)-428(full)]TJ 0 -13.549 Td[(refund)-215(of)-216(any)-215(money)-216(paid)-215(for)-216(a)-215(wor)-1(k)-215(or)-215(a)-216(replacement)-216(copy,)]TJ 0 -13.549 Td[(if)-245(a)-246(defect)-245(in)-245(the)-246(electronic)-245(work)-245(is)-246(discovered)-245(and)-245(repo)-1(rted)]TJ 0 -13.55 Td[(to)-250(you)-250(within)-250(90)-250(days)-250(of)-250(receipt)-250(of)-250(the)-250(work.)]TJ/F19 10.909 Tf -9.273 -13.549 Td[(")]TJ/F16 10.909 Tf 9.273 0 Td[(You)-278(comply)-279(with)-278(all)-279(other)-278(terms)-279(of)-278(this)-279(agreement)-278(for)-279(free)]TJ 0 -13.549 Td[(distribution)-250(of)-250(Project)-250(Gutenberg)]TJ/F21 10.909 Tf 144.534 0 Td[(")]TJ/F16 10.909 Tf 13.418 0 Td[(works.)]TJ -179.77 -34.9 Td[(1.E.9.)]TJ 0 -24.225 Td[(If)-316(you)-315(wish)-316(to)-316(charge)-315(a)-316(fee)-316(or)-315(distribute)-316(a)-316(Project)-315(Guten)-1(berg)]TJ/F21 10.909 Tf 269.938 0 Td[(")]TJ/F16 10.909 Tf -269.938 -13.549 Td[(electronic)-233(work)-233(or)-233(group)-234(of)-233(works)-233(on)-233(different)-233(terms)-233(than)-233(are)-234(set)]TJ 0 -13.549 Td[(forth)-346(in)-347(this)-346(agreement,)-371(you)-346(must)-346(obtain)-347(permission)-346(in)-347(writing)]TJ 0 -13.55 Td[(from)-161(both)-160(the)-161(Project)-160(Gutenberg)-161(Literary)-160(Archive)-161(Foundation)-161(and)]TJ 0 -13.549 Td[(Michael)-287(Hart,)-297(the)-287(owner)-287(of)-287(the)-287(Project)-287(Gutenberg)]TJ/F21 10.909 Tf 219.853 0 Td[(")]TJ/F16 10.909 Tf 13.824 0 Td[(trademark.)]TJ -233.677 -13.549 Td[(Contact)-250(the)-250(Foundation)-250(as)-250(set)-250(forth)-250(in)-250(Section)-250(3)-250(below.)]TJ/F16 13.151 Tf 0 -40.629 Td[(1.F.)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
150 0 obj <<
/Type /Page
/Contents 151 0 R
/Resources 149 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 158 0 R
/Annots [ 152 0 R 153 0 R 154 0 R 156 0 R ]
>> endobj
152 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [149.087 420.963 327.401 430.705]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
153 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [46.771 407.403 311.273 417.156]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
154 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [272.441 299.01 294.87 308.73]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
156 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [213.735 106.629 254.644 114.113]
/Subtype /Link
/A << /S /GoTo /D (pglicense3) >>
>> endobj
155 0 obj <<
/D [150 0 R /XYZ 46.771 220.588 null]
>> endobj
157 0 obj <<
/D [150 0 R /XYZ 46.771 95.953 null]
>> endobj
149 0 obj <<
/Font << /F16 6 0 R /F19 29 0 R /F21 100 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
164 0 obj <<
/Length 3809
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(22The)-150(Declaration)-150(of)-150(Independence)-150(of)-150(The)-150(United)-150(States)-150(of)-150(America)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(1.F.1.)]TJ 0 -25.744 Td[(Project)-362(Gutenberg)-363(volunteers)-362(and)-363(employees)-362(expend)-363(consider-)]TJ 0 -13.549 Td[(able)-318(effort)-318(to)-319(identify,)-335(do)-318(copyright)-318(research)-318(on,)-335(transcribe)-319(and)]TJ 0 -13.549 Td[(proofread)-383(public)-383(domain)-383(works)-382(in)-383(creating)-383(the)-383(Project)-383(Guten-)]TJ 0 -13.55 Td[(berg)]TJ/F21 10.909 Tf 19.386 0 Td[(")]TJ/F16 10.909 Tf 15.097 0 Td[(collection.)-712(Despite)-403(these)-404(efforts,)-443(Project)-404(Gutenberg)]TJ/F21 10.909 Tf 235.456 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.549 Td[(electronic)-262(works,)-264(and)-261(the)-262(medium)-261(on)-262(which)-261(they)-262(may)-261(be)-262(stored,)]TJ 0 -13.549 Td[(may)-312(contain)]TJ/F19 10.909 Tf 57.708 0 Td[(\034)]TJ/F16 10.909 Tf 4.844 0 Td[(Defects,)]TJ/F19 10.909 Tf 36.043 0 Td[(\035)]TJ/F16 10.909 Tf 8.247 0 Td[(such)-312(as,)-327(but)-312(not)-312(limited)-312(to,)-328(incomplete,)]TJ -106.842 -13.549 Td[(inaccurate)-395(or)-395(corrupt)-395(data,)-431(transcription)-395(errors,)-431(a)-395(copyright)-395(or)]TJ 0 -13.549 Td[(other)-267(intellectual)-266(property)-267(infringement,)-270(a)-267(defective)-266(or)-267(damaged)]TJ 0 -13.55 Td[(disk)-277(or)-277(other)-277(medium,)-284(a)-277(computer)-277(virus,)-284(or)-277(computer)-277(codes)-277(that)]TJ 0 -13.549 Td[(damage)-250(or)-250(cannot)-250(be)-250(read)-250(by)-250(your)-250(equipment.)]TJ 0 -37.682 Td[(1.F.2.)]TJ 0 -25.744 Td[(LIMITED)-451(WARRANTY,)-451(DISCLAIMER)-451(OF)-451(DAMAGES)]TJ/F19 10.909 Tf 269.721 0 Td[(\024)]TJ/F16 10.909 Tf -269.721 -13.549 Td[(Except)-334(for)-334(the)]TJ/F19 10.909 Tf 67.282 0 Td[(\034)]TJ/F16 10.909 Tf 4.843 0 Td[(Right)-334(of)-334(Replacement)-335(or)-334(Refund)]TJ/F19 10.909 Tf 146.08 0 Td[(\035)]TJ/F16 10.909 Tf 8.489 0 Td[(described)-334(in)]TJ -226.694 -13.549 Td[(paragraph)-328(1.F.3,)-347(the)-328(Project)-327(Gutenberg)-328(Literary)-328(Archive)-328(Foun-)]TJ 0 -13.55 Td[(dation,)-224(the)-218(owner)-218(of)-217(the)-218(Project)-218(Gutenberg)]TJ/F21 10.909 Tf 184.285 0 Td[(")]TJ/F16 10.909 Tf 13.066 0 Td[(trademark,)-224(and)-218(any)]TJ -197.351 -13.549 Td[(other)-361(party)-361(distributing)-361(a)-361(Project)-361(Gutenberg)]TJ/F21 10.909 Tf 196.632 0 Td[(")]TJ/F16 10.909 Tf 14.628 0 Td[(electronic)-361(work)]TJ -211.26 -13.549 Td[(under)-320(this)-319(agreement,)-337(disclaim)-320(all)-319(liability)-320(to)-319(you)-320(for)-320(damages,)]TJ 0 -13.549 Td[(costs)-316(and)-315(expenses,)-333(including)-315(legal)-316(fees.)-447(YOU)-316(AGREE)-316(THAT)]TJ 0 -13.549 Td[(YOU)-394(HAVE)-394(NO)-395(REMEDIES)-394(FOR)-394(NEGLIGENCE,)-395(STRICT)]TJ 0 -13.55 Td[(LIABILITY,)-450(BREACH)-449(OF)-450(WARRANTY)-449(OR)-450(BREACH)-450(OF)]TJ 0 -13.549 Td[(CONTRACT)-234(EXCEPT)-234(THOSE)-234(PROVIDED)-234(IN)-234(PARAGRAPH)]TJ 0 -13.549 Td[(F3.)-299(YOU)-266(AGREE)-266(THAT)-266(THE)-266(FOUNDATION,)-266(THE)-267(TRADE-)]TJ 0 -13.549 Td[(MARK)-367(OWNER,)-366(AND)-367(ANY)-366(DISTRIBUTOR)-367(UNDER)-367(THIS)]TJ 0 -13.549 Td[(AGREEMENT)-376(WILL)-375(NOT)-376(BE)-376(LIABLE)-376(TO)-375(YOU)-376(FOR)-376(AC-)]TJ 0 -13.55 Td[(TUAL,)-210(DIRECT,)-210(INDIRECT,)-210(CONSEQUENTIAL,)-210(PUNITIVE)]TJ 0 -13.549 Td[(OR)-223(INCIDENTAL)-223(DAMAGES)-224(EVEN)-223(IF)-223(YOU)-223(GIVE)-224(NOTICE)]TJ 0 -13.549 Td[(OF)-250(THE)-250(POSSIBILITY)-250(OF)-250(SUCH)-250(DAMAGE.)]TJ 0 -37.682 Td[(1.F.3.)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
163 0 obj <<
/Type /Page
/Contents 164 0 R
/Resources 162 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 158 0 R
/Annots [ 167 0 R ]
>> endobj
167 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [93.543 277.585 163.162 287.305]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
165 0 obj <<
/D [163 0 R /XYZ 93.543 529.134 null]
>> endobj
166 0 obj <<
/D [163 0 R /XYZ 93.543 356.172 null]
>> endobj
160 0 obj <<
/D [163 0 R /XYZ 93.543 91.744 null]
>> endobj
162 0 obj <<
/Font << /F16 6 0 R /F21 100 0 R /F19 29 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
170 0 obj <<
/Length 3646
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10394(23)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(LIMITED)-421(RIGHT)-421(OF)-422(REPLACEMENT)-421(OR)-421(REFUND)]TJ/F19 10.909 Tf 257.859 0 Td[(\024)]TJ/F16 10.909 Tf 15.506 0 Td[(If)]TJ -273.365 -13.549 Td[(you)-434(discover)-434(a)-434(defect)-434(in)-434(this)-434(electronic)-434(work)-434(within)-434(90)-434(days)]TJ 0 -13.549 Td[(of)-335(receiving)-334(it,)-356(you)-335(can)-335(receive)-334(a)-335(refund)-335(of)-334(the)-335(money)-335(\050if)-335(any\051)]TJ 0 -13.549 Td[(you)-369(paid)-369(for)-369(it)-370(by)-369(sending)-369(a)-369(written)-369(explanation)-369(to)-369(the)-370(person)]TJ 0 -13.55 Td[(you)-430(received)-430(the)-431(work)-430(from.)-790(If)-431(you)-430(received)-430(the)-430(work)-430(on)-431(a)]TJ 0 -13.549 Td[(physical)-231(medium,)-236(you)-231(must)-231(return)-232(the)-231(medium)-232(with)-231(your)-232(written)]TJ 0 -13.549 Td[(explanation.)-706(The)-402(person)-402(or)-402(entity)-402(that)-402(provided)-402(you)-402(with)-402(the)]TJ 0 -13.549 Td[(defective)-301(work)-301(may)-301(elect)-300(to)-301(provide)-301(a)-301(replacement)-301(copy)-301(in)-301(lieu)]TJ 0 -13.549 Td[(of)-305(a)-305(refund)-1(.)-415(If)-305(you)-306(received)-305(the)-305(work)-305(electronically,)-319(the)-306(person)]TJ 0 -13.55 Td[(or)-348(entity)-347(providing)-348(it)-347(to)-348(you)-347(may)-348(choose)-347(to)-348(give)-348(you)-347(a)-348(second)]TJ 0 -13.549 Td[(opportunity)-226(to)-226(receive)-225(the)-226(work)-226(electronically)-226(in)-225(lieu)-226(of)-226(a)-226(refund.)]TJ 0 -13.549 Td[(If)-315(the)-315(second)-315(copy)-315(is)-315(also)-315(defective,)-331(you)-315(may)-315(demand)-315(a)-315(refund)]TJ 0 -13.549 Td[(in)-250(writing)-250(without)-250(further)-250(opportunities)-250(to)-250(fix)-250(the)-250(problem.)]TJ 0 -37.467 Td[(1.F.4.)]TJ 0 -25.624 Td[(Except)-258(for)-259(the)-258(limited)-258(right)-258(of)-258(replacement)-259(or)-258(refund)-258(set)-258(forth)-259(in)]TJ 0 -13.549 Td[(paragraph)-225(1.F.3,)-230(this)-225(wo)-1(rk)-225(is)-225(provided)-225(to)-225(you)-225('AS-IS,')-225(WITH)-226(NO)]TJ 0 -13.549 Td[(OTHER)-346(WARRANTIES)-346(OF)-345(ANY)-346(KIND,)-346(EXPRESS)-346(OR)-346(IM-)]TJ 0 -13.549 Td[(PLIED,)-173(INCLUDING)-172(BUT)-172(NOT)-173(LIMITED)-172(TO)-173(WARRANTIES)]TJ 0 -13.55 Td[(OF)-190(MERCHANTIBILITY)-190(OR)-190(FITNESS)-190(FOR)-190(ANY)-191(PURPOSE.)]TJ 0 -37.466 Td[(1.F.5.)]TJ 0 -25.624 Td[(Some)-414(states)-414(do)-415(not)-414(allow)-414(disclaimers)-414(of)-414(certain)-414(implied)-415(war-)]TJ 0 -13.55 Td[(ranties)-220(or)-220(the)-220(exclusion)-220(or)-220(limitation)-220(of)-220(certain)-220(types)-221(of)-220(damages.)]TJ 0 -13.549 Td[(If)-217(any)-217(disclaimer)-218(or)-217(limitation)-217(set)-217(forth)-217(in)-217(this)-217(agreement)-218(violates)]TJ 0 -13.549 Td[(the)-302(law)-303(of)-302(the)-302(state)-302(applicable)-303(to)-302(this)-302(agreement,)-315(the)-303(agreement)]TJ 0 -13.549 Td[(shall)-377(be)-377(interpreted)-377(to)-377(make)-377(the)-377(maximum)-377(disclaimer)-378(or)-377(limi-)]TJ 0 -13.549 Td[(tation)-367(permitted)-366(by)-367(the)-366(applicable)-367(state)-367(law.)-599(The)-367(invalidity)-367(or)]TJ 0 -13.55 Td[(unenforceability)-192(of)-192(any)-192(provision)-192(of)-192(this)-192(agreement)-192(shall)-192(not)-192(void)]TJ 0 -13.549 Td[(the)-250(remaining)-250(provisions.)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
169 0 obj <<
/Type /Page
/Contents 170 0 R
/Resources 168 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 158 0 R
/Annots [ 172 0 R ]
>> endobj
172 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [46.771 276.567 115.271 286.287]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
171 0 obj <<
/D [169 0 R /XYZ 46.771 341.365 null]
>> endobj
173 0 obj <<
/D [169 0 R /XYZ 46.771 226.313 null]
>> endobj
174 0 obj <<
/D [169 0 R /XYZ 46.771 66.142 null]
>> endobj
168 0 obj <<
/Font << /F16 6 0 R /F19 29 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
177 0 obj <<
/Length 3863
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(24The)-150(Declaration)-150(of)-150(Independence)-150(of)-150(The)-150(United)-150(States)-150(of)-150(America)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 93.543 518.175 Td[(1.F.6.)]TJ 0 -27.876 Td[(INDEMNITY)]TJ/F19 10.909 Tf 65.981 0 Td[(\024)]TJ/F16 10.909 Tf 15.092 0 Td[(You)-383(agree)-384(to)-383(indemnify)-384(and)-383(hold)-383(the)-384(Foun-)]TJ -81.073 -13.55 Td[(dation,)-554(the)-494(trademark)-494(owner,)-554(any)-493(agent)-494(or)-494(employee)-493(of)-494(the)]TJ 0 -13.549 Td[(Foundation,)-494(anyone)-445(providing)-445(copies)-445(of)-445(Project)-446(Gutenberg)]TJ/F21 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.549 Td[(electronic)-436(works)-437(in)-436(accordance)-436(with)-436(this)-437(agreement,)-482(and)-437(any)]TJ 0 -13.549 Td[(volunteers)-266(associated)-266(with)-266(the)-266(production,)-270(promotion)-266(and)-266(distri-)]TJ 0 -13.549 Td[(bution)-307(of)-308(Project)-307(Gutenberg)]TJ/F21 10.909 Tf 123.981 0 Td[(")]TJ/F16 10.909 Tf 14.043 0 Td[(electronic)-307(works,)-322(harmless)-307(from)]TJ -138.024 -13.55 Td[(all)-336(liability,)-358(costs)-336(and)-336(expenses,)-357(including)-336(legal)-336(fees,)-358(that)-336(arise)]TJ 0 -13.549 Td[(directly)-263(or)-263(indirectly)-263(from)-264(any)-263(of)-263(the)-263(following)-263(which)-263(you)-263(do)-264(or)]TJ 0 -13.549 Td[(cause)-189(to)-188(occur:)-219(\050a\051)-189(distribution)-188(of)-189(this)-188(or)-189(any)-188(Project)-189(Gutenberg)]TJ/F21 10.909 Tf 269.939 0 Td[(")]TJ/F16 10.909 Tf -269.939 -13.549 Td[(work,)-413(\050b\051)-381(alteration,)-413(modification,)-414(or)-381(additions)-380(or)-381(deletions)-381(to)]TJ 0 -13.549 Td[(any)-250(Project)-250(Gutenberg)]TJ/F21 10.909 Tf 98.16 0 Td[(")]TJ/F16 10.909 Tf 13.418 0 Td[(work,)-250(and)-250(\050c\051)-250(any)-250(Defect)-250(you)-250(cause.)]TJ/F16 15.781 Tf -111.578 -53.287 Td[(Section)-250(2.)]TJ/F16 13.151 Tf 32.422 -52.048 Td[(Information)-260(about)-259(the)-260(Mission)-260(of)-259(Project)]TJ 73.695 -17.096 Td[(Gutenberg)]TJ/F21 13.151 Tf 55.509 0 Td[(")]TJ/F16 10.909 Tf -161.626 -30.058 Td[(Project)-400(Gutenberg)]TJ/F21 10.909 Tf 81.319 0 Td[(")]TJ/F16 10.909 Tf 15.057 0 Td[(is)-400(synonymous)-400(with)-401(the)-400(free)-400(distribution)]TJ -96.376 -13.55 Td[(of)-284(electronic)-284(works)-284(in)-285(formats)-284(readable)-284(by)-284(the)-284(widest)-284(variety)-285(of)]TJ 0 -13.549 Td[(computers)-351(including)-351(obsolete,)-375(old,)-376(middle-aged)-351(and)-351(new)-351(com-)]TJ 0 -13.549 Td[(puters.)-328(It)-277(exists)-276(because)-276(of)-276(the)-276(efforts)-276(of)-276(hundreds)-276(of)-277(volunteers)]TJ 0 -13.549 Td[(and)-250(donations)-250(from)-250(people)-250(in)-250(all)-250(walks)-250(of)-250(life.)]TJ 11.956 -14.233 Td[(Volunteers)-162(and)-163(financial)-162(support)-162(to)-163(provide)-162(volunteers)-162(with)-163(the)]TJ -11.956 -13.549 Td[(assistance)-198(they)-199(need,)-209(is)-198(critical)-198(to)-199(reaching)-198(Project)-199(Gutenberg)]TJ/F21 10.909 Tf 263.732 0 Td[(")]TJ/F16 10.909 Tf 10.691 0 Td[('s)]TJ -274.423 -13.549 Td[(goals)-309(and)-308(ensuring)-309(that)-309(the)-308(Project)-309(Gutenberg)]TJ/F21 10.909 Tf 203.204 0 Td[(")]TJ/F16 10.909 Tf 14.059 0 Td[(collection)-309(will)]TJ -217.263 -13.55 Td[(remain)-382(freely)-381(available)-382(for)-381(generations)-382(to)-382(come.)-644(In)-382(2001,)-415(the)]TJ 0 -13.549 Td[(Project)-350(Gutenberg)-351(Literary)-350(Archive)-350(Fou)-1(ndation)-350(was)-350(created)-351(to)]TJ 0 -13.549 Td[(provide)-302(a)-303(secure)-302(and)-302(permanent)-303(future)-302(for)-302(Project)-303(Gutenberg)]TJ/F21 10.909 Tf 269.939 0 Td[(")]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
176 0 obj <<
/Type /Page
/Contents 177 0 R
/Resources 175 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 158 0 R
>> endobj
178 0 obj <<
/D [176 0 R /XYZ 93.543 338.785 null]
>> endobj
175 0 obj <<
/Font << /F16 6 0 R /F19 29 0 R /F21 100 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
181 0 obj <<
/Length 3126
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10394(25)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(and)-301(future)-302(generations.)-403(To)-301(learn)-302(more)-301(about)-301(the)-301(Project)-302(Guten-)]TJ 0 -13.549 Td[(berg)-487(Literary)-487(Archive)-487(Foundation)-487(and)-487(how)-487(your)-488(efforts)-487(and)]TJ 0 -13.549 Td[(donations)-225(can)-225(help,)-229(see)-225(Sections)-225(3)-225(and)-225(4)-224(and)-225(the)-225(Foundation)-225(web)]TJ 0 -13.549 Td[(page)-250(at)-250(http://www.pglaf.org.)]TJ/F16 15.781 Tf 0 -46.043 Td[(Section)-250(3.)]TJ/F16 13.151 Tf 10.376 -44.805 Td[(Information)-253(about)-253(the)-253(Project)-253(Gutenberg)-253(Literary)]TJ 76.986 -17.096 Td[(Archive)-276(Foundation)]TJ/F16 10.909 Tf -87.362 -26.095 Td[(The)-438(Project)-439(Gutenberg)-438(Literary)-438(Archive)-439(Foundation)-438(is)-438(a)-439(non)]TJ 0 -13.549 Td[(profit)-511(501\050c\051\0503\051)-511(educational)-510(corporation)-511(organized)-511(under)-511(the)]TJ 0 -13.549 Td[(laws)-248(of)-248(the)-248(state)-248(of)-247(Mississippi)-248(and)-248(granted)-248(tax)-248(exempt)-248(status)-248(by)]TJ 0 -13.549 Td[(the)-319(Internal)-319(Revenue)-319(Service.)-457(The)-319(Foundation's)-319(EIN)-319(or)-319(federal)]TJ 0 -13.549 Td[(tax)-337(identification)-336(number)-337(is)-337(64-6221541.)-510(Its)-336(501\050c\051\0503\051)-337(letter)-337(is)]TJ 0 -13.55 Td[(posted)-228(at)-228(http://www.gutenberg.org/fundraising/pglaf.)-243(Contribu-)]TJ 0 -13.549 Td[(tions)-313(to)-314(the)-313(Project)-313(Gutenberg)-314(Literary)-313(Archive)-313(Foundation)-314(are)]TJ 0 -13.549 Td[(tax)-328(deductible)-329(to)-328(the)-328(full)-329(extent)-328(permitted)-329(by)-328(U.S.)-328(federal)-329(laws)]TJ 0 -13.549 Td[(and)-250(your)-250(state's)-250(laws.)]TJ 11.956 -13.549 Td[(The)-214(Foundation's)-214(principal)-214(office)-213(is)-214(located)-214(at)-214(4557)-214(Melan)-214(Dr.)]TJ -11.956 -13.55 Td[(S.)-297(Fairbanks,)-310(AK,)-297(99712.,)-309(but)-297(its)-298(volunteers)-297(and)-297(employees)-298(are)]TJ 0 -13.549 Td[(scattered)-343(throughout)-343(numerous)-344(locations.)-529(Its)-343(business)-343(office)-344(is)]TJ 0 -13.549 Td[(located)-197(at)-197(809)-197(North)-197(1500)-197(West,)-208(Salt)-197(Lake)-197(City,)-208(UT)-197(84116,)-208(\050801\051)]TJ 0 -13.549 Td[(596-1887,)-225(email)-218(business@pglaf.org.)-239(Email)-219(contact)-218(links)-218(and)-219(up)]TJ 0 -13.549 Td[(to)-227(date)-227(contact)-227(information)-227(can)-227(be)-227(found)-227(at)-227(the)-228(Foundation's)-227(web)]TJ 0 -13.55 Td[(site)-250(and)-250(official)-250(page)-250(at)-250(http://www.pglaf.org)]TJ 11.956 -13.549 Td[(For)-250(additional)-250(contact)-250(information:)]TJ/F16 9.863 Tf 7.681 -22.094 Td[(Dr.)-250(Gregory)-250(B.)-250(Newby)]TJ 0 -12.822 Td[(Chief)-250(Executive)-250(and)-250(Director)]TJ 0 -12.822 Td[(gbnewby@pglaf.org)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
180 0 obj <<
/Type /Page
/Contents 181 0 R
/Resources 179 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 158 0 R
/Annots [ 182 0 R 183 0 R 184 0 R 185 0 R 186 0 R ]
>> endobj
182 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [189.068 488.709 194.522 498.419]
/Subtype /Link
/A << /S /GoTo /D (pglicense3) >>
>> endobj
183 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [215.179 488.709 220.634 498.419]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
184 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [80.699 475.149 172.815 484.869]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.pglaf.org) >>
>> endobj
185 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [88.104 273.365 279.602 283.085]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/pglaf) >>
>> endobj
186 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [151.291 137.873 243.407 147.593]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.pglaf.org) >>
>> endobj
161 0 obj <<
/D [180 0 R /XYZ 46.771 464.786 null]
>> endobj
179 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
189 0 obj <<
/Length 3845
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(26The)-150(Declaration)-150(of)-150(Independence)-150(of)-150(The)-150(United)-150(States)-150(of)-150(America)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 15.781 Tf 93.543 518.175 Td[(Section)-250(4.)]TJ/F16 13.151 Tf 26.999 -50.957 Td[(Information)-258(about)-258(Donations)-258(to)-258(the)-258(Project)]TJ 8.106 -17.096 Td[(Gutenberg)-260(Literary)-261(Archive)-260(Foundation)]TJ/F16 10.909 Tf -35.105 -29.451 Td[(Project)-329(Gutenberg)]TJ/F21 10.909 Tf 80.543 0 Td[(")]TJ/F16 10.909 Tf 14.28 0 Td[(depends)-329(upon)-329(and)-329(cannot)-329(survive)-329(without)]TJ -94.823 -13.55 Td[(wide)-217(spread)-217(public)-217(support)-217(and)-217(donations)-217(to)-217(carry)-217(out)-218(its)-217(mission)]TJ 0 -13.549 Td[(of)-334(increasing)-334(the)-334(number)-334(of)-334(public)-334(domain)-334(and)-335(licensed)-334(works)]TJ 0 -13.549 Td[(that)-192(can)-193(be)-192(freely)-193(distributed)-192(in)-192(machine)-193(readable)-192(form)-193(accessible)]TJ 0 -13.549 Td[(by)-261(the)-261(widest)-261(array)-261(of)-261(equipment)-261(including)-261(o)-1(utdated)-261(equipment.)]TJ 0 -13.549 Td[(Many)-303(small)-302(donations)-303(\050$1)-303(to)-302($5,0)-1(00\051)-302(are)-303(particularly)-303(important)]TJ 0 -13.55 Td[(to)-250(maintaining)-250(tax)-250(exempt)-250(status)-250(with)-250(the)-250(IRS.)]TJ 11.956 -14.111 Td[(The)-460(Foundation)-461(is)-460(committed)-461(to)-460(complying)-461(with)-460(the)-461(laws)]TJ -11.956 -13.549 Td[(regulating)-353(charities)-352(and)-353(charitable)-352(donations)-353(in)-352(all)-353(50)-352(states)-353(of)]TJ 0 -13.55 Td[(the)-430(United)-429(States.)-789(Compliance)-430(requirements)-429(are)-430(not)-430(uniform)]TJ 0 -13.549 Td[(and)-389(it)-389(takes)-389(a)-389(considerable)-389(effort,)-424(much)-389(paperwork)-389(an)-1(d)-389(many)]TJ 0 -13.549 Td[(fees)-353(to)-353(meet)-353(and)-354(keep)-353(up)-353(with)-353(these)-353(requirements.)-559(We)-353(do)-354(not)]TJ 0 -13.549 Td[(solicit)-322(donations)-321(in)-322(locations)-322(where)-322(we)-321(have)-322(not)-322(received)-322(writ-)]TJ 0 -13.549 Td[(ten)-417(confirmation)-418(of)-417(compliance.)-753(To)-417(SEND)-417(DONATIONS)-418(or)]TJ 0 -13.55 Td[(determine)-309(the)-310(status)-309(of)-310(compliance)-309(for)-309(any)-310(particular)-309(state)-310(visit)]TJ 0 -13.549 Td[(http://www.gutenberg.org/fundraising/donate)]TJ 11.956 -14.111 Td[(While)-305(we)-304(cannot)-305(and)-304(do)-305(not)-305(solicit)-304(contributions)-305(from)-305(states)]TJ -11.956 -13.549 Td[(where)-323(we)-323(have)-322(not)-323(met)-323(the)-323(solicitation)-323(requirements,)-341(we)-323(know)]TJ 0 -13.55 Td[(of)-366(no)-365(prohibition)-366(against)-366(accepting)-365(unsolicited)-366(donations)-366(from)]TJ 0 -13.549 Td[(donors)-250(in)-250(such)-250(states)-250(who)-250(approach)-250(us)-250(with)-250(offers)-250(to)-250(donate.)]TJ 11.956 -14.111 Td[(International)-237(donations)-237(are)-237(gratefully)-238(accepted,)-239(but)-237(we)-238(cannot)]TJ -11.956 -13.55 Td[(make)-327(any)-328(statements)-327(concerning)-327(tax)-328(treatment)-327(of)-327(donations)-328(re-)]TJ 0 -13.549 Td[(ceived)-326(from)-327(outside)-326(the)-326(United)-326(States.)-479(U.S.)-326(laws)-326(alone)-327(swamp)]TJ 0 -13.549 Td[(our)-250(small)-250(staff.)]TJ 11.956 -14.112 Td[(Please)-413(check)-413(the)-412(Project)-413(Gutenberg)-413(Web)-413(pages)-413(for)-413(current)]TJ -11.956 -13.549 Td[(donation)-376(methods)-376(and)-375(addresses.)-628(Donations)-375(are)-376(accepted)-376(in)-376(a)]TJ 0 -13.549 Td[(number)-396(of)-395(other)-396(ways)-395(including)-396(checks,)-432(online)-395(payments)-396(and)]TJ
ET
1 0 0 1 93.543 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
188 0 obj <<
/Type /Page
/Contents 189 0 R
/Resources 187 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 158 0 R
/Annots [ 190 0 R ]
>> endobj
190 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [93.543 214.492 291.707 224.212]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/donate) >>
>> endobj
159 0 obj <<
/D [188 0 R /XYZ 93.543 529.134 null]
>> endobj
187 0 obj <<
/Font << /F16 6 0 R /F21 100 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
193 0 obj <<
/Length 3275
>>
stream
1 0 0 1 46.771 548.934 cm
0 g 0 G
1 0 0 1 -46.771 -548.934 cm
BT
/F16 10.909 Tf 46.771 548.934 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10394(27)]TJ
ET
1 0 0 1 327.401 548.934 cm
0 g 0 G
1 0 0 1 -327.401 -548.934 cm
BT
/F16 10.909 Tf 46.771 518.175 Td[(credit)-241(card)-241(donations.)-247(To)-241(donate,)-243(please)-241(visit:)-246(http://www.guten-)]TJ 0 -13.549 Td[(berg.org/fundraising/donate)]TJ/F16 15.781 Tf 0 -57.032 Td[(Section)-250(5.)]TJ/F16 13.151 Tf 12.158 -55.793 Td[(General)-254(Informat)1(ion)-254(About)-254(Project)-253(Gutenberg)]TJ/F21 13.151 Tf 243.427 0 Td[(")]TJ/F16 13.151 Tf -160.742 -17.096 Td[(electronic)-278(works.)]TJ/F16 10.909 Tf -94.843 -32.139 Td[(Professor)-259(Michael)-259(S.)-259(Hart)-259(is)-259(the)-259(originator)-259(of)-259(the)-259(Project)-259(Guten-)]TJ 0 -13.55 Td[(berg)]TJ/F21 10.909 Tf 19.386 0 Td[(")]TJ/F16 10.909 Tf 15.085 0 Td[(concept)-403(of)-403(a)-403(library)-402(of)-403(electronic)-403(works)-403(that)-403(could)-403(be)]TJ -34.471 -13.549 Td[(freely)-233(shared)-232(with)-233(anyone.)-244(For)-233(thirty)-233(years,)-236(he)-232(produced)-233(and)-233(dis-)]TJ 0 -13.549 Td[(tributed)-274(Project)-274(Gutenberg)]TJ/F21 10.909 Tf 116.868 0 Td[(")]TJ/F16 10.909 Tf 13.679 0 Td[(eBooks)-274(with)-274(only)-274(a)-274(loose)-274(network)]TJ -130.547 -13.549 Td[(of)-250(volunteer)-250(support.)]TJ 11.956 -14.649 Td[(Project)-379(Gutenberg)]TJ/F21 10.909 Tf 81.091 0 Td[(")]TJ/F16 10.909 Tf 14.829 0 Td[(eBooks)-379(are)-380(often)-379(created)-380(from)-379(several)]TJ -107.876 -13.549 Td[(printed)-248(editions,)-248(all)-248(of)-247(which)-248(are)-248(confirmed)-247(as)-248(Public)-248(Domain)-248(in)]TJ 0 -13.549 Td[(the)-303(U.S.)-302(unless)-303(a)-303(copyright)-303(notice)-302(is)-303(included.)-408(Thus,)-316(we)-303(do)-303(not)]TJ 0 -13.55 Td[(necessarily)-216(keep)-217(eBooks)-216(in)-216(compliance)-217(with)-216(any)-216(particular)-217(paper)]TJ 0 -13.549 Td[(edition.)]TJ 11.956 -14.649 Td[(Each)-355(eBook)-356(is)-356(in)-355(a)-356(subdirectory)-355(of)-356(the)-355(same)-356(number)-355(as)-356(the)]TJ -11.956 -13.549 Td[(eBook's)-266(eBook)-266(number,)-269(often)-266(in)-266(several)-266(formats)-266(including)-266(plain)]TJ 0 -13.549 Td[(vanilla)-250(ASCII,)-250(compressed)-250(\050zipped\051,)-250(HTML)-250(and)-250(others.)]TJ 11.956 -14.649 Td[(Corrected)]TJ/F22 10.909 Tf 45.766 0 Td[(editions)]TJ/F16 10.909 Tf 37.301 0 Td[(of)-252(our)-253(eBooks)-252(replace)-252(the)-252(old)-253(file)-252(and)-252(take)]TJ -95.023 -13.549 Td[(over)-286(the)-285(old)-285(filename)-286(and)-285(etext)-286(number.)-356(The)-286(replaced)-285(older)-286(file)]TJ 0 -13.55 Td[(is)-367(renamed.)]TJ/F22 10.909 Tf 58.126 0 Td[(Versions)]TJ/F16 10.909 Tf 42.186 0 Td[(based)-367(on)-367(separate)-367(sources)-367(are)-367(treated)-367(as)]TJ -100.311 -13.549 Td[(new)-250(eBooks)-250(receiving)-250(new)-250(filenames)-250(and)-250(etext)-250(numbers.)]TJ 11.955 -14.649 Td[(Most)-416(people)-416(start)-416(at)-416(our)-416(Web)-416(site)-416(which)-416(has)-416(the)-416(main)-416(PG)]TJ -11.955 -13.549 Td[(search)-250(facility:)]TJ/F16 9.863 Tf 19.636 -28.139 Td[(http://www.gutenberg.org)]TJ
ET
1 0 0 1 46.771 38.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
192 0 obj <<
/Type /Page
/Contents 193 0 R
/Resources 191 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 198 0 R
/Annots [ 194 0 R 195 0 R 197 0 R ]
>> endobj
194 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [247.1 515.797 327.401 525.517]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/donate) >>
>> endobj
195 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [46.771 502.248 168.266 511.968]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/donate) >>
>> endobj
197 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5]
/Rect [66.408 63.992 168.864 72.78]
/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org) >>
>> endobj
196 0 obj <<
/D [192 0 R /XYZ 46.771 486.939 null]
>> endobj
191 0 obj <<
/Font << /F16 6 0 R /F21 100 0 R /F22 102 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
201 0 obj <<
/Length 1028
>>
stream
1 0 0 1 93.543 548.934 cm
0 g 0 G
1 0 0 1 -93.543 -548.934 cm
BT
/F16 10.909 Tf 93.543 548.934 Td[(28The)-150(Declaration)-150(of)-150(Independence)-150(of)-150(The)-150(United)-150(States)-150(of)-150(America)]TJ
ET
1 0 0 1 374.173 548.934 cm
0 g 0 G
1 0 0 1 -374.173 -548.934 cm
BT
/F16 10.909 Tf 105.499 518.175 Td[(This)-527(Web)-526(site)-527(includes)-527(information)-526(about)-527(Project)-527(Guten-)]TJ -11.956 -13.549 Td[(berg)]TJ/F21 10.909 Tf 19.386 0 Td[(")]TJ/F16 10.909 Tf 10.691 0 Td[(,)-321(including)-307(how)-306(to)-307(make)-307(donations)-306(to)-307(the)-307(Project)-307(Guten-)]TJ -30.077 -13.549 Td[(berg)-251(Literary)-251(Archive)-250(Foun)-1(dation,)-251(how)-250(to)-251(help)-251(produce)-251(our)-251(new)]TJ 0 -13.549 Td[(eBooks,)-410(and)-378(how)-378(to)-378(subscribe)-378(to)-378(our)-378(email)-378(newsletter)-378(to)-378(hear)]TJ 0 -13.55 Td[(about)-250(new)-250(eBooks.)]TJ
ET
1 0 0 1 93.543 436.564 cm
0 g 0 G
0 g 0 G
0 g 0 G
1 0 0 1 0 -397.782 cm
0 g 0 G
1 0 0 1 280.63 0 cm
0 g 0 G
endstream
endobj
200 0 obj <<
/Type /Page
/Contents 201 0 R
/Resources 199 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 198 0 R
>> endobj
199 0 obj <<
/Font << /F16 6 0 R /F21 100 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
202 0 obj <<
/Type /Encoding
/Differences [ 0 /uni0000/controlSTX/controlSOT/controlETX/controlEOT/controlENQ/controlACK/controlBEL/controlBS/controlHT/controlLF/controlVT/controlFF/controlCR/controlSO/controlSI/controlDLE/controlDC1/controlDC2/controlDC3/controlDC4/controlNAK/controlSYN/controlETB/controlCAN/controlEM/controlSUB/controlESC/controlFS/controlGS/controlRS/controlUS/spacehackarabic/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/grave/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/verticalbar/braceright/asciitilde/controlDEL/uni0080/uni0081/uni0082/uni0083/uni0084/uni0085/uni0086/uni0087/uni0088/uni0089/uni008a/uni008b/uni008c/uni008d/uni008e/uni008f/uni0090/uni0091/uni0092/uni0093/uni0094/uni0095/uni0096/uni0097/uni0098/uni0099/uni009a/uni009b/uni009c/uni009d/uni009e/uni009f/nonbreakingspace/exclamdown/cent/sterling/currency/yen/brokenbar/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/softhyphen/registered/overscore/degree/plusminus/twosuperior/threesuperior/acute/mu1/paragraph/periodcentered/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]
>> endobj
102 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 202 0 R
/BaseFont /Times-Italic
>> endobj
203 0 obj <<
/Type /Encoding
/Differences [ 0 /uni2100/uni2101/uni2102/centigrade/uni2104/careof/uni2106/uni2107/uni2108/fahrenheit/uni210a/uni210b/uni210c/uni210d/uni210e/uni210f/uni2110/Ifraktur/uni2112/lsquare/uni2114/uni2115/numero/uni2117/weierstrass/uni2119/uni211a/uni211b/Rfraktur/uni211d/prescription/uni211f/uni2120/telephone/trademark/uni2123/uni2124/uni2125/Omega/uni2127/uni2128/uni2129/uni212a/angstrom/uni212c/uni212d/estimated/uni212f/uni2130/uni2131/uni2132/uni2133/uni2134/aleph/uni2136/uni2137/uni2138/uni2139/uni213a/uni213b/uni213c/uni213d/uni213e/uni213f/uni2140/uni2141/uni2142/uni2143/uni2144/uni2145/uni2146/uni2147/uni2148/uni2149/uni214a/uni214b/uni214c/uni214d/uni214e/uni214f/uni2150/uni2151/uni2152/onethird/twothirds/uni2155/uni2156/uni2157/uni2158/uni2159/uni215a/oneeighth/threeeighths/fiveeighths/seveneighths/uni215f/Oneroman/Tworoman/Threeroman/Fourroman/Fiveroman/Sixroman/Sevenroman/Eightroman/Nineroman/Tenroman/Elevenroman/Twelveroman/uni216c/uni216d/uni216e/uni216f/oneroman/tworoman/threeroman/fourroman/fiveroman/sixroman/sevenroman/eightroman/nineroman/tenroman/elevenroman/twelveroman/uni217c/uni217d/uni217e/uni217f/uni2180/uni2181/uni2182/uni2183/uni2184/uni2185/uni2186/uni2187/uni2188/uni2189/uni218a/uni218b/uni218c/uni218d/uni218e/uni218f/arrowleft/arrowup/arrowright/arrowdown/arrowboth/arrowupdn/arrowupleft/arrowupright/arrowdownright/arrowdownleft/uni219a/uni219b/uni219c/uni219d/uni219e/uni219f/uni21a0/uni21a1/uni21a2/uni21a3/uni21a4/uni21a5/uni21a6/uni21a7/arrowupdownbase/uni21a9/uni21aa/uni21ab/uni21ac/uni21ad/uni21ae/uni21af/uni21b0/uni21b1/uni21b2/uni21b3/uni21b4/carriagereturn/uni21b6/uni21b7/uni21b8/uni21b9/uni21ba/uni21bb/harpoonleftbarbup/uni21bd/uni21be/uni21bf/harpoonrightbarbup/uni21c1/uni21c2/uni21c3/arrowrightoverleft/arrowupleftofdown/arrowleftoverright/uni21c7/uni21c8/uni21c9/uni21ca/uni21cb/uni21cc/arrowleftdblstroke/uni21ce/arrowrightdblstroke/arrowleftdbl/arrowdblup/dblarrowright/arrowdbldown/dblarrowleft/uni21d5/uni21d6/uni21d7/uni21d8/uni21d9/uni21da/uni21db/uni21dc/uni21dd/pageup/pagedown/arrowdashleft/arrowdashup/arrowdashright/arrowdashdown/arrowtableft/arrowtabright/arrowleftwhite/arrowupwhite/arrowrightwhite/arrowdownwhite/capslock/uni21eb/uni21ec/uni21ed/uni21ee/uni21ef/uni21f0/uni21f1/uni21f2/uni21f3/uni21f4/uni21f5/uni21f6/uni21f7/uni21f8/uni21f9/uni21fa/uni21fb/uni21fc/uni21fd/uni21fe/uni21ff]
>> endobj
100 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 203 0 R
/BaseFont /Times-Roman
>> endobj
204 0 obj <<
/Type /Encoding
/Differences [ 0 /uni2000/uni2001/enspace/uni2003/uni2004/uni2005/uni2006/uni2007/uni2008/uni2009/uni200a/zerowidthspace/zerowidthnonjoiner/afii301/afii299/afii300/hyphentwo/uni2011/figuredash/endash/emdash/horizontalbar/dblverticalbar/underscoredbl/quoteleft/quoteright/quotesinglbase/quotereversed/quotedblleft/quotedblright/quotedblbase/uni201f/dagger/daggerdbl/bullet/uni2023/onedotenleader/twodotleader/ellipsis/uni2027/uni2028/uni2029/uni202a/uni202b/afii61573/afii61574/afii61575/uni202f/perthousand/uni2031/minute/second/uni2034/primereversed/uni2036/uni2037/uni2038/guilsinglleft/guilsinglright/referencemark/exclamdbl/uni203d/overline/uni203f/uni2040/uni2041/asterism/uni2043/fraction/uni2045/uni2046/uni2047/uni2048/uni2049/uni204a/uni204b/uni204c/uni204d/uni204e/uni204f/uni2050/uni2051/uni2052/uni2053/uni2054/uni2055/uni2056/uni2057/uni2058/uni2059/uni205a/uni205b/uni205c/uni205d/uni205e/uni205f/uni2060/uni2061/uni2062/uni2063/uni2064/uni2065/uni2066/uni2067/uni2068/uni2069/uni206a/uni206b/uni206c/uni206d/uni206e/uni206f/zerosuperior/uni2071/uni2072/uni2073/foursuperior/fivesuperior/sixsuperior/sevensuperior/eightsuperior/ninesuperior/plussuperior/uni207b/equalsuperior/parenleftsuperior/parenrightsuperior/nsuperior/zeroinferior/oneinferior/twoinferior/threeinferior/fourinferior/fiveinferior/sixinferior/seveninferior/eightinferior/nineinferior/uni208a/uni208b/uni208c/parenleftinferior/parenrightinferior/uni208f/uni2090/uni2091/uni2092/uni2093/uni2094/uni2095/uni2096/uni2097/uni2098/uni2099/uni209a/uni209b/uni209c/uni209d/uni209e/uni209f/uni20a0/colonsign/cruzeiro/franc/lira/uni20a5/uni20a6/peseta/uni20a8/won/sheqelhebrew/dong/euro/uni20ad/uni20ae/uni20af/uni20b0/uni20b1/uni20b2/uni20b3/uni20b4/uni20b5/uni20b6/uni20b7/uni20b8/uni20b9/uni20ba/uni20bb/uni20bc/uni20bd/uni20be/uni20bf/uni20c0/uni20c1/uni20c2/uni20c3/uni20c4/uni20c5/uni20c6/uni20c7/uni20c8/uni20c9/uni20ca/uni20cb/uni20cc/uni20cd/uni20ce/uni20cf/uni20d0/uni20d1/uni20d2/uni20d3/uni20d4/uni20d5/uni20d6/uni20d7/uni20d8/uni20d9/uni20da/uni20db/uni20dc/uni20dd/uni20de/uni20df/uni20e0/uni20e1/uni20e2/uni20e3/uni20e4/uni20e5/uni20e6/uni20e7/uni20e8/uni20e9/uni20ea/uni20eb/uni20ec/uni20ed/uni20ee/uni20ef/uni20f0/uni20f1/uni20f2/uni20f3/uni20f4/uni20f5/uni20f6/uni20f7/uni20f8/uni20f9/uni20fa/uni20fb/uni20fc/uni20fd/uni20fe/uni20ff]
>> endobj
29 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 204 0 R
/BaseFont /Times-Roman
>> endobj
6 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 202 0 R
/BaseFont /Times-Roman
>> endobj
10 0 obj <<
/Type /Pages
/Count 6
/Parent 205 0 R
/Kids [2 0 R 13 0 R 16 0 R 19 0 R 26 0 R 31 0 R]
>> endobj
36 0 obj <<
/Type /Pages
/Count 6
/Parent 205 0 R
/Kids [34 0 R 38 0 R 41 0 R 45 0 R 53 0 R 59 0 R]
>> endobj
70 0 obj <<
/Type /Pages
/Count 6
/Parent 205 0 R
/Kids [67 0 R 72 0 R 75 0 R 79 0 R 86 0 R 89 0 R]
>> endobj
103 0 obj <<
/Type /Pages
/Count 6
/Parent 205 0 R
/Kids [96 0 R 109 0 R 118 0 R 127 0 R 133 0 R 143 0 R]
>> endobj
158 0 obj <<
/Type /Pages
/Count 6
/Parent 205 0 R
/Kids [150 0 R 163 0 R 169 0 R 176 0 R 180 0 R 188 0 R]
>> endobj
198 0 obj <<
/Type /Pages
/Count 2
/Parent 205 0 R
/Kids [192 0 R 200 0 R]
>> endobj
205 0 obj <<
/Type /Pages
/Count 32
/Kids [10 0 R 36 0 R 70 0 R 103 0 R 158 0 R 198 0 R]
>> endobj
206 0 obj <<
/Type /Outlines
/First 23 0 R
/Last 106 0 R
/Count 4
>> endobj
106 0 obj <<
/Title 107 0 R
/A 104 0 R
/Parent 206 0 R
/Prev 93 0 R
>> endobj
93 0 obj <<
/Title 94 0 R
/A 91 0 R
/Parent 206 0 R
/Prev 83 0 R
/Next 106 0 R
>> endobj
83 0 obj <<
/Title 84 0 R
/A 81 0 R
/Parent 206 0 R
/Prev 23 0 R
/Next 93 0 R
>> endobj
23 0 obj <<
/Title 24 0 R
/A 21 0 R
/Parent 206 0 R
/Next 83 0 R
>> endobj
207 0 obj <<
/Names [(Connecticut) 65 0 R (Delaware) 56 0 R (Georgia) 43 0 R (Maryland) 50 0 R (Massachusetts) 49 0 R (Massachusetts_2) 63 0 R (New_Hampshire) 69 0 R (New_Hampshire_2) 62 0 R (New_Jersey) 61 0 R (New_York) 57 0 R (North_Carolina) 47 0 R (Pennsylvania) 55 0 R (Rhode_Island) 64 0 R (South_Carolina) 48 0 R (Virginia) 51 0 R (index1) 22 0 R (index2) 82 0 R (index3) 92 0 R (index4) 105 0 R (pgfooter) 77 0 R (pgheader) 4 0 R (pglicense) 11 0 R (pglicense1) 113 0 R (pglicense1A) 114 0 R (pglicense1B) 120 0 R (pglicense1C) 123 0 R (pglicense1D) 124 0 R (pglicense1E) 125 0 R (pglicense1E1) 129 0 R (pglicense1E2) 131 0 R (pglicense1E3) 137 0 R (pglicense1E4) 139 0 R (pglicense1E5) 140 0 R (pglicense1E6) 145 0 R (pglicense1E7) 147 0 R (pglicense1E8) 116 0 R (pglicense1E9) 155 0 R (pglicense1F) 157 0 R (pglicense1F1) 165 0 R (pglicense1F2) 166 0 R (pglicense1F3) 160 0 R (pglicense1F4) 171 0 R (pglicense1F5) 173 0 R (pglicense1F6) 174 0 R (pglicense2) 178 0 R (pglicense3) 161 0 R (pglicense4) 159 0 R (pglicense5) 196 0 R]
/Limits [(Connecticut) (pglicense5)]
>> endobj
208 0 obj <<
/Kids [207 0 R]
>> endobj
209 0 obj <<
/Dests 208 0 R
>> endobj
210 0 obj <<
/Type /Catalog
/Pages 205 0 R
/Outlines 206 0 R
/Names 209 0 R
/PTEX.Fullbanner (This is pdfTeX, Version 3.14159-1.10b)
>> endobj
211 0 obj <<
/Producer (pdfTeX-1.10b)
/Author (Thomas Jefferson) /Title (The Declaration of Independence of The United States of America)
/Creator (TeX)
/CreationDate (D:20060707100000)
>> endobj
xref
0 212
0000000005 65535 f
0000002431 00000 n
0000001636 00000 n
0000000009 00000 n
0000002374 00000 n
0000000028 00000 f
0000099632 00000 n
0000001779 00000 n
0000001947 00000 n
0000002160 00000 n
0000099722 00000 n
0000035749 00000 n
0000002799 00000 n
0000002683 00000 n
0000002499 00000 n
0000003467 00000 n
0000003351 00000 n
0000002839 00000 n
0000003836 00000 n
0000003720 00000 n
0000003536 00000 n
0000003876 00000 n
0000007595 00000 n
0000100799 00000 n
0000003919 00000 n
0000007654 00000 n
0000007479 00000 n
0000004001 00000 n
0000000099 00000 f
0000099541 00000 n
0000012168 00000 n
0000012052 00000 n
0000007735 00000 n
0000015863 00000 n
0000015747 00000 n
0000012249 00000 n
0000099831 00000 n
0000020131 00000 n
0000020015 00000 n
0000015932 00000 n
0000024201 00000 n
0000024026 00000 n
0000020200 00000 n
0000024142 00000 n
0000025666 00000 n
0000025256 00000 n
0000024270 00000 n
0000025372 00000 n
0000025431 00000 n
0000025490 00000 n
0000025549 00000 n
0000025607 00000 n
0000027195 00000 n
0000026904 00000 n
0000025735 00000 n
0000027020 00000 n
0000027079 00000 n
0000027138 00000 n
0000028757 00000 n
0000028347 00000 n
0000027264 00000 n
0000028463 00000 n
0000028522 00000 n
0000028580 00000 n
0000028639 00000 n
0000028698 00000 n
0000029358 00000 n
0000029183 00000 n
0000028826 00000 n
0000029299 00000 n
0000099941 00000 n
0000029727 00000 n
0000029611 00000 n
0000029427 00000 n
0000030434 00000 n
0000030259 00000 n
0000029767 00000 n
0000030375 00000 n
0000030803 00000 n
0000030687 00000 n
0000030503 00000 n
0000030843 00000 n
0000031568 00000 n
0000100711 00000 n
0000030886 00000 n
0000031627 00000 n
0000031452 00000 n
0000030912 00000 n
0000031996 00000 n
0000031880 00000 n
0000031696 00000 n
0000032036 00000 n
0000035690 00000 n
0000100622 00000 n
0000032079 00000 n
0000035808 00000 n
0000035327 00000 n
0000032127 00000 n
0000035463 00000 n
0000000101 00000 f
0000097085 00000 n
0000000000 00000 f
0000094585 00000 n
0000100051 00000 n
0000035915 00000 n
0000040119 00000 n
0000100544 00000 n
0000035959 00000 n
0000040302 00000 n
0000039403 00000 n
0000036013 00000 n
0000039559 00000 n
0000039730 00000 n
0000040180 00000 n
0000040241 00000 n
0000039947 00000 n
0000059627 00000 n
0000045630 00000 n
0000044956 00000 n
0000040410 00000 n
0000045448 00000 n
0000045104 00000 n
0000045277 00000 n
0000045509 00000 n
0000045570 00000 n
0000049638 00000 n
0000049819 00000 n
0000049290 00000 n
0000045725 00000 n
0000049699 00000 n
0000049430 00000 n
0000049760 00000 n
0000054805 00000 n
0000053768 00000 n
0000049914 00000 n
0000053932 00000 n
0000054106 00000 n
0000054622 00000 n
0000054279 00000 n
0000054683 00000 n
0000054744 00000 n
0000054450 00000 n
0000059688 00000 n
0000059009 00000 n
0000054900 00000 n
0000059505 00000 n
0000059157 00000 n
0000059566 00000 n
0000059331 00000 n
0000065108 00000 n
0000064137 00000 n
0000059783 00000 n
0000064301 00000 n
0000064473 00000 n
0000064644 00000 n
0000064987 00000 n
0000064815 00000 n
0000065048 00000 n
0000100167 00000 n
0000086879 00000 n
0000069506 00000 n
0000082477 00000 n
0000069566 00000 n
0000069071 00000 n
0000065203 00000 n
0000069384 00000 n
0000069445 00000 n
0000069211 00000 n
0000073861 00000 n
0000073366 00000 n
0000069661 00000 n
0000073679 00000 n
0000073506 00000 n
0000073740 00000 n
0000073801 00000 n
0000078046 00000 n
0000077865 00000 n
0000073943 00000 n
0000077985 00000 n
0000082538 00000 n
0000081326 00000 n
0000078141 00000 n
0000081498 00000 n
0000081670 00000 n
0000081842 00000 n
0000082046 00000 n
0000082272 00000 n
0000086940 00000 n
0000086512 00000 n
0000082608 00000 n
0000086652 00000 n
0000091232 00000 n
0000090357 00000 n
0000087023 00000 n
0000090513 00000 n
0000090739 00000 n
0000091171 00000 n
0000090966 00000 n
0000100284 00000 n
0000092535 00000 n
0000092415 00000 n
0000091328 00000 n
0000092618 00000 n
0000094678 00000 n
0000097177 00000 n
0000100369 00000 n
0000100468 00000 n
0000100874 00000 n
0000101962 00000 n
0000102001 00000 n
0000102039 00000 n
0000102182 00000 n
trailer
<<
/Size 212
/Root 210 0 R
/Info 211 0 R
>>
startxref
102380
%%EOF
|