summaryrefslogtreecommitdiff
path: root/19965-pdf.pdf
blob: f1f97504be63e424a4e47bd4e4efa6818124086e (plain)
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
%PDF-1.4
3 0 obj <<
/Length 1250      
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -19.7995 cm
0 g 0 G
1 0 0 1 -46.7715 -529.134 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(The)-250(Project)-250(Gutenberg)-250(EBook)-250(of)-250(Measles)-250(by)-250(W.)-250(C.)-250(Rucker)]TJ 0 -29.9128 Td[(This)-380(eBook)-380(is)-381(for)-380(the)-380(use)-380(of)-380(anyone)-381(anywhere)-380(at)-380(no)-380(cost)-380(and)]TJ 0 -13.5492 Td[(with)-327(almost)-327(no)-327(restrictions)-327(whatsoever.)-480(You)-327(may)-327(copy)-327(it,)-346(give)]TJ 0 -13.5492 Td[(it)-400(away)-399(or)-400(re-use)-400(it)-399(under)-400(the)-400(terms)-399(of)-400(the)-400(Project)-399(Gutenberg)]TJ 0 -13.5492 Td[(License)-240(included)-240(with)-240(this)-240(eBook)-240(or)-240(online)-240(at)-240(http://www.guten-)]TJ 0 -13.5492 Td[(berg.org/license)]TJ 0 -29.9128 Td[(Title:)-500(Measles)]TJ 0 -27.0984 Td[(Author:)-500(W.)-500(C.)-500(Rucker)]TJ 0 -27.0984 Td[(Release)-500(Date:)-500(November)-500(29,)-500(2006)-500([Ebook)-500(19965])]TJ 0 -27.0984 Td[(Language:)-500(English)]TJ 0 -40.6476 Td[(***START)-500(OF)-500(THE)-500(PROJECT)-500(GUTENBERG)-500(EBOOK)]TJ 0 -13.5492 Td[(MEASLES***)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 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.5276 595.2756]
/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.3175 445.2365 192.3882 454.9565]
/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.0996 445.2365 327.4012 454.9565]
 /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.7715 431.6873 116.7532 441.4073]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/license) >> 
>> endobj
4 0 obj <<
/D [2 0 R /XYZ 46.7715 529.134 null]
>> endobj
1 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
14 0 obj <<
/Length 135       
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -510.1518 cm
0 g 0 G
1 0 0 1 280.6297 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.5276 595.2756]
/Parent 10 0 R
>> endobj
12 0 obj <<
/ProcSet [ /PDF ]
>> endobj
17 0 obj <<
/Length 1133      
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 7.9701 Tf 337.795 512.8112 Td[([001])]TJ/F16 10.9091 Tf -291.0235 -8.1853 Td[(UNITED)-250(STATES)-250(PUBLIC)-250(HEALTH)-250(SERVICE)]TJ/F16 18.9589 Tf 0 -78.224 Td[(MEASLES)]TJ/F16 10.9091 Tf 133.9494 -32.4218 Td[(By)]TJ -24.183 -13.5492 Td[(W.)-265(C.)-264(RUCKER)]TJ/F19 10.9091 Tf -85.8044 -13.5492 Td[(Assistant)-252(Surgeon)-252(General,)-252(United)-252(States)-251(Public)-252(Health)]TJ 100.3002 -13.5492 Td[(Service)]TJ
ET
1 0 0 1 152.0077 336.7945 cm
q
[]0 d
0 J
0.3985 w
0 0.1992 m
70.1574 0.1992 l
S
Q
1 0 0 1 -152.0077 -336.7945 cm
BT
/F16 10.9091 Tf 143.0764 320.2565 Td[(SUPPLEMENT)-263(NO.)-262(1)]TJ 24.6725 -13.5492 Td[(TO)-268(THE)]TJ -48.6629 -13.5492 Td[(PUBLIC)-261(HEALTH)-261(REPORTS)]TJ 21.9209 -13.5492 Td[(JANUARY)-264(24,)-268(1913)]TJ -10.5305 -13.5492 Td[([EDITION)-261(OF)-261(JUNE,)-260(1916])]TJ 25.6275 -13.5492 Td[(WASHINGTON)]TJ -54.2533 -13.5492 Td[(GOVERNMENT)-258(PRINTING)-259(OFFICE)]TJ 74.3267 -13.5492 Td[(1916)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 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.5276 595.2756]
/Parent 10 0 R
>> endobj
18 0 obj <<
/D [16 0 R /XYZ 46.7715 518.1751 null]
>> endobj
15 0 obj <<
/Font << /F16 6 0 R /F19 20 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
23 0 obj <<
/Length 135       
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -510.1518 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
22 0 obj <<
/Type /Page
/Contents 23 0 R
/Resources 21 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 10 0 R
>> endobj
21 0 obj <<
/ProcSet [ /PDF ]
>> endobj
26 0 obj <<
/Length 3555      
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -19.7995 cm
0 g 0 G
1 0 0 1 -46.7715 -529.134 cm
BT
/F16 7.9701 Tf 337.795 512.8112 Td[([003])]TJ/F16 18.9589 Tf -291.0235 -63.1432 Td[(MEASLES.)]TJ/F16 10.9091 Tf 0 -31.2469 Td[(By)-435(W.)-435(C.)-435(R)]TJ/F16 7.9701 Tf 57.2774 0 Td[(UCKER)]TJ/F16 10.9091 Tf 27.0107 0 Td[(,)-435(Assistant)-435(Surgeon)-435(General,)-482(United)-435(States)]TJ -84.2881 -13.5492 Td[(Public)-250(Health)-250(Service.)]TJ 11.9552 -13.5492 Td[(Over)-358(11,000)-357(American)-358(children)-357(died)-358(of)-357(measles)-358(in)-357(the)-358(year)]TJ -11.9552 -13.5492 Td[(1910.)-597(This)-366(did)-366(not)-366(include)-366(a)-365(large)-366(number)-366(who)-366(died)-366(of)-365(bron-)]TJ 0 -13.5492 Td[(cho-pneumonia,)-346(a)-327(great)-327(number)-327(of)-327(cases)-327(of)-326(which,)-347(in)-326(children,)]TJ 0 -13.5492 Td[(are)-248(caused)-248(by)-247(measles.)-250(Sixty-eight)-247(and)-248(two-tenths)-248(per)-248(cent)-248(of)-247(all)]TJ 0 -13.5492 Td[(deaths)-251(from)-251(broncho-pneumonia)-251(occur)-251(in)-251(children)-251(under)-251(5)-251(years)]TJ 0 -13.5492 Td[(of)-365(age,)-394(a)-365(time)-365(of)-365(life)-365(when)-366(measles)-365(is)-365(most)-365(apt)-365(to)-365(occur.)-595(But)]TJ 0 -13.5492 Td[(the)-324(story)-323(of)-324(the)-324(ravages)-323(of)-324(this)-324(disease)-323(is)-324(not)-324(complete)-323(without)]TJ 0 -13.5492 Td[(the)-306(mention)-306(of)-307(the)-306(large)-306(number)-306(of)-307(cases)-306(of)-306(tuberculosis)-306(which)]TJ 0 -13.5492 Td[(follow)-336(an)-336(attack)-337(of)-336(it.)-508(Less)-337(frequently)-336(inflammation)-336(of)-336(the)-336(ear)]TJ 0 -13.5492 Td[(or)-354(the)-353(eye)-354(may)-353(be)-354(left)-354(behind)-353(as)-354(a)-353(mark)-354(of)-354(a)-353(visitation)-354(of)-353(this)]TJ 0 -13.5492 Td[(common)-247(disease.)-248(From)-247(a)-247(public)-246(health)-247(standpoint,)-247(then,)-247(measles)]TJ 0 -13.5492 Td[(is)-250(a)-250(disease)-250(of)-250(prime)-250(importance.)]TJ 11.9552 -13.5492 Td[(Long)-276(association)-277(with)-276(a)-277(disease)-276(breeds)-277(a)-276(contempt)-277(for)-276(it,)-284(and)]TJ -11.9552 -13.5492 Td[(measles,)-386(in)-359(common)-358(with)-359(the)-359(other)-358(diseases)-359(of)-359(childhood,)-385(has)]TJ 0 -13.5492 Td[(come)-365(to)-365(be)-365(looked)-365(upon)-365(as)-365(an)-365(unavoidable)-364(accompaniment)-365(of)]TJ 0 -13.5492 Td[(youth.)]TJ 11.9552 -13.5492 Td[(Each)-363(autumn)-364(when)-363(school)-363(opens)-364(there)-363(is)-363(an)-364(increase)-363(in)-364(the)]TJ -11.9552 -13.5492 Td[(number)-335(of)-335(cases)-334(of)-335(measles,)-356(and)-335(as)-335(the)-335(season)-335(progresses)-334(they)]TJ 0 -13.5492 Td[(gradually)-198(increase,)-208(and)-198(winter)-198(frequently)-198(sees)-198(the)-198(disease)-197(spread-)]TJ 0 -13.5492 Td[(ing)-212(in)-212(epidemic)-212(form.)-237(Hirsch)-212(has)-212(collected)-212(data)-212(of)-212(309)-212(epidemics)]TJ 0 -13.5492 Td[(of)-353(measles,)-379(and)-353(has)-354(classified)-353(them)-353(according)-353(to)-354(season;)-404(sum-)]TJ 0 -13.5492 Td[(mer)-340(had)-340(43,)-362(autumn)-339(had)-340(76,)-362(winter)-340(had)-340(96,)-362(and)-340(spring)-340(had)-339(94)]TJ 0 -13.5492 Td[(epidemics.)]TJ 11.9552 -13.5492 Td[(Measles)-349(is)-349(a)-349(disease)-349(of)-348(close)-349(association;)-399(hence)-349(its)-349(increase)]TJ -11.9552 -13.5492 Td[(during)-250(the)-250(colder)-250(months.)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
25 0 obj <<
/Type /Page
/Contents 26 0 R
/Resources 24 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 10 0 R
>> endobj
27 0 obj <<
/D [25 0 R /XYZ 46.7715 518.1751 null]
>> endobj
24 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
30 0 obj <<
/Length 4808      
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(2)-21947(Measles)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 10.9091 Tf 105.4986 518.1751 Td[(Frequently)-320(a)-320(child)-320(will)-320(go)-320(to)-320(a)-320(party)-320(and)-320(engage)-320(in)-321(innocent)]TJ -11.9552 -13.5492 Td[(games)-340(in)-339(which)-340(children)-339(are)-340(brought)-339(in)-340(close)-339(contact)-340(with)-339(one)]TJ 0 -13.5492 Td[(another.)-472(Perhaps)-323(among)-324(the)-324(guests)-324(there)-324(is)-324(one)-324(with)-323(reddened,)]TJ 0 -13.5492 Td[(watery,)-203(eyes,)-204(which)-192(are)-192(sensitive)-191(to)-192(light.)-231(The)-192(eyelids)-192(are)-191(perhaps)]TJ 0 -13.5492 Td[(a)-279(little)-280(puffy,)-286(and)-279(the)-280(guest)-279(has)-279(a)-280(hard,)-286(high-pitched)-280(cough.)-337(The)]TJ 0 -13.5492 Td[(other)-428(children)-428(pay)-429(no)-428(attention)-428(to)-428(this,)-473(and)-428(the)-428(games)-428(go)-428(on)]TJ 0 -13.5492 Td[(uninterruptedly.)-235(In)-206(this)-206(way)-206(a)-205(single)-206(child)-206(in)-206(the)-206(beginning)-205(stages)]TJ 0 -13.5492 Td[(of)-293(measles)-294(may)-293(easily)-293(affect)-293(15)-294(or)-293(20)-293(others.)-380(This)-293(is)-293(frequently)]TJ 0 -13.5492 Td[(the)-250(case)-250(when)-250(kissing)-250(games)-250(are)-250(played.)]TJ 11.9552 -15.1857 Td[(About)-188(10)-187(days)-188(later)-187(the)-188(children)-188(who)-187(have)-188(exposed)-188(themselves)]TJ -11.9552 -13.5492 Td[(to)-278(the)-279(disease)-278(begin)-278(to)-279(sicken.)-335(They,)-285(too,)-285(have)-279(red,)-285(watery,)-285(sen-)]TJ 0 -13.5492 Td[(sitive)-307(eyes)-308(and)-307(puffy)-307(eyelids.)-422(In)-308(fact,)-321(in)-307(rather)-308(severe)-307(cases)-307(the)]TJ 0 -13.5492 Td[(whole)-308(face)-308(has)-307(a)-308(rather)-308(swollen,)-322(puffed)-308(appearance.)-424(The)-307(throat)]TJ 0 -13.5492 Td[(feels)-197(parched)-198(and)-197(a)-197(dry,)-208(irritating)-197(cough)-198(increases)-197(the)-197(discomfort.)]TJ 0 -13.5492 Td[(The)-309(child)-308(is)-309(apt)-308(to)-309(come)-309(home)-308(from)-309(school)-308(feeling)-309(drowsy)-308(and)]TJ 0 -13.5492 Td[(irritable,)-478(not)-432(infrequently)-432(complains)-432(of)-432(chilly)-432(sensations,)-477(and)]TJ 0 -13.5492 Td[(may)-257(even)-257(have)-256(a)-257(chill.)-270(At)-257(night)-257(the)-256(irritation)-257(increases,)-259(the)-256(child)]TJ/F16 7.9701 Tf -72.7558 0 Td[([004])]TJ/F16 10.9091 Tf 72.7558 -13.5492 Td[(is)-300(feverish,)-312(the)-300(whites)-300(of)-300(the)-299(eyeballs)-300(show)-300(little)-300(red)-300(lines)-299(upon)]TJ 0 -13.5492 Td[(them,)-471(and)-427(the)-427(little)-427(sufferer)-427(has)-427(the)-427(appearance)-427(of)-427(bei)1(ng)-427(just)]TJ 0 -13.5492 Td[(ready)-250(to)-250(cry.)]TJ 11.9552 -15.1857 Td[(If)-391(the)-390(anxious)-391(mother)-391(takes)-390(the)-391(child)-391(to)-390(the)-391(window)-391(in)-391(the)]TJ -11.9552 -13.5492 Td[(morning,)-340(raises)-323(the)-322(curtain,)-340(and)-322(examines)-323(the)-322(little)-322(one's)-322(throat)]TJ 0 -13.5492 Td[(she)-249(will)-248(see)-249(that)-248(the)-249(hard)-249(palate)-248(and)-249(back)-248(of)-249(the)-249(throat)-248(are)-249(a)-248(dull,)]TJ 0 -13.5492 Td[(angry)-352(red.)-555(Perhaps)-352(there)-352(are)-352(a)-352(few)-351(little)-352(red)-352(spots)-352(on)-352(the)-351(hard)]TJ 0 -13.5492 Td[(palate,)-217(and)-210(if)-209(the)-209(mother)-210(will)-209(look)-209(closely)-210(at)-209(the)-209(lining)-209(membrane)]TJ 0 -13.5492 Td[(of)-234(the)-233(cheek)-234(she)-233(will)-234(see)-233(some)-234(small)-233(white-tipped,)-237(reddish)-233(spots.)]TJ 0 -13.5492 Td[(These)-379(are)-380(called)-379("Koplik's")-379(spots,)-412(and)-380(are)-379(one)-379(of)-380(the)-379(signs)-379(of)]TJ 0 -13.5492 Td[(measles.)]TJ 11.9552 -15.1857 Td[(The)-226(child)-226(is)-225(kept)-226(from)-226(school)-226(that)-226(day,)-230(and)-226(that)-226(night)-226(his)-226(fever)]TJ -11.9552 -13.5492 Td[(is)-292(higher)-292(than)-292(it)-292(was)-292(the)-292(night)-292(before.)-376(He)-292(rolls)-292(and)-292(tosses)-292(about)]TJ 0 -13.5492 Td[(the)-308(bed)-308(and)-308(wakes)-308(up)-309(his)-308(mother)-308(a)-308(good)-308(many)-308(times)-308(to)-308(ask)-308(for)]TJ 0 -13.5492 Td[(a)-350(drink)-351(of)-350(water.)-551(This)-351(sort)-350(of)-350(thing)-351(continues)-350(for)-350(3)-351(or)-350(4)-350(days;)]TJ 0 -13.5492 Td[(then,)-324(one)-310(morning)-310(when)-309(the)-310(child)-309(is)-310(having)-310(its)-309(bath)-310(the)-309(mother)]TJ 0 -13.5492 Td[(sees)-331(some)-332(little)-331(dusky)-332(red)-331(spots)-332(along)-331(the)-332(hair)-331(line.)-495(They)-331(look)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
29 0 obj <<
/Type /Page
/Contents 30 0 R
/Resources 28 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 10 0 R
>> endobj
31 0 obj <<
/D [29 0 R /XYZ 191.6924 299.7514 null]
>> endobj
28 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
34 0 obj <<
/Length 4689      
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 321.9467 548.9335 Td[(3)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(a)-328(good)-327(deal)-328(like)-328(flea)-328(bites.)-483(Within)-328(24)-327(hours)-328(this)-328(rash)-328(is)-327(spread)]TJ 0 -13.5492 Td[(over)-401(the)-400(body)-401(and)-401(the)-400(child)-401(looks)-400(very)-401(much)-401(bespeckled)-400(and)]TJ 0 -13.5492 Td[(swollen.)-344(In)-281(from)-282(5)-281(to)-281(7)-281(days)-282(the)-281(rash)-281(begins)-282(to)-281(fade,)-289(and)-281(within)]TJ 0 -13.5492 Td[(3)-369(or)-369(4)-370(days)-369(thereafter)-369(is)-369(entirely)-370(gone)-369(away,)-399(leaving)-369(behind)-369(a)]TJ 0 -13.5492 Td[(faint)-332(mottling)-331(of)-332(the)-331(skin.)-495(This)-332(is)-331(followed)-332(by)-332(a)-331(peeling)-332(off)-331(of)]TJ 0 -13.5492 Td[(the)-268(outer)-267(layer)-268(of)-267(the)-268(skin)-267(in)-268(little)-268(bran-like)-267(pieces.)-303(This)-267(process)]TJ 0 -13.5492 Td[(is)-250(called)-250(desquamation,)-250(and)-250(lasts)-250(about)-250(a)-250(week)-250(or)-250(10)-250(days.)]TJ 11.9552 -14.7766 Td[(In)-290(the)-291(meantime)-290(the)-291(fever)-290(has)-291(gone)-290(away,)-301(and)-290(as)-291(soon)-290(as)-291(the)]TJ -11.9552 -13.5492 Td[(child)-425(has)-424(finished)-425(scaling)-424(he)-425(is)-424(permitted)-425(to)-425(go)-424(out)-425(and)-424(play)]TJ 0 -13.5492 Td[(with)-320(the)-319(other)-320(children,)-337(and)-320(before)-320(long)-319(is)-320(back)-320(at)-319(school.)-459(The)]TJ 0 -13.5492 Td[(foregoing)-250(is)-250(a)-250(description)-250(of)-250(a)-250(mild)-250(case.)]TJ 11.9552 -14.7766 Td[(If)-432(measles)-433(assume)-432(a)-432(malignant)-433(type,)-478(as)-432(it)-432(sometimes)-433(does)]TJ -11.9552 -13.5492 Td[(among)-261(the)-261(nonrobust,)-264(it)-261(may)-261(be)-261(ushered)-261(in)-261(by)-261(convulsions,)-263(very)]TJ 0 -13.5492 Td[(high)-419(fever,)-461(and)-419(an)-419(excessive)-419(development)-419(of)-419(all)-419(the)-419(ordinary)]TJ 0 -13.5492 Td[(symptoms,)-308(or)-296(the)-297(rash)-296(when)-297(it)-296(appears,)-308(instead)-296(of)-297(being)-296(a)-296(good)]TJ 0 -13.5492 Td[(healthy-looking)-304(red,)-318(may)-305(be)-304(a)-305(bluish-black)-304(discoloration)-304(which)]TJ 0 -13.5492 Td[(looks)-326(like)-327(a)-326(recent)-327(bruise.)-479(Broncho-pneumonia,)-346(the)-326(most)-326(com-)]TJ 0 -13.5492 Td[(mon)-359(and)-359(the)-359(most)-359(fatal)-359(of)-359(all)-359(the)-359(complications)-359(of)-359(measles,)-386(is)]TJ 0 -13.5492 Td[(very)-295(apt)-294(to)-295(occur.)-383(The)-295(cough)-294(is)-295(very)-295(painful,)-305(and)-295(death)-294(quickly)]TJ 0 -13.5492 Td[(relieves)-250(the)-250(sufferer.)]TJ 11.9552 -14.7766 Td[(The)-224(two)-224(forms)-224(of)-225(the)-224(disease)-224(which)-224(have)-224(just)-224(been)-224(cited)-224(are)-225(in)]TJ -11.9552 -13.5492 Td[(no)-318(way)-317(exaggerated)-318(and)-318(unfortunately)-317(they)-318(are)-317(of)-318(far)-318(too)-317(com-)]TJ 0 -13.5492 Td[(mon)-238(occurrence.)-246(The)-237(first)-238(child)-238(received)-237(the)-238(infection)-238(directly)-237(in)]TJ 0 -13.5492 Td[(the)-345(harmless)-345(games)-345(at)-345(the)-345(party)-345(by)-345(coming)-345(in)-344(intimate)-345(contact)]TJ 0 -13.5492 Td[(with)-306(a)-306(child)-306(who)-305(was)-306(just)-306(coming)-306(down)-306(with)-306(measles)-306(at)-306(a)-305(time)]TJ 0 -13.5492 Td[(when,)-323(according)-309(to)-308(the)-309(researches)-308(of)-308(Anderson)-309(and)-308(Goldberger)]TJ 0 -13.5492 Td[(in)-359(the)-358(Hygienic)-359(Laboratory)-358(of)-359(the)-359(United)-358(States)-359(Public)-358(Health)]TJ 0 -13.5492 Td[(Service,)-302(the)-291(infecting)-291(virus)-291(is)-292(most)-291(active.)-374(Their)-291(work)-291(seems)-291(to)]TJ 0 -13.5492 Td[(show)-294(that)-293(the)-294(infection)-293(does)-294(not)-294(persist)-293(after)-294(the)-293(fever)-294(has)-293(gone)]TJ 0 -13.5492 Td[(away.)]TJ/F16 7.9701 Tf 291.0235 0 Td[([005])]TJ/F16 10.9091 Tf -279.0683 -14.7766 Td[(While)-305(all)-306(of)-305(the)-305(severe)-305(cases)-306(may)-305(not)-305(be)-305(as)-306(grave)-305(as)-305(the)-306(one)]TJ -11.9552 -13.5492 Td[(which)-353(was)-353(cited)-353(above,)-379(it)-353(must)-353(be)-354(admitted,)-379(nevertheless,)-378(that)]TJ 0 -13.5492 Td[(broncho-pneumonia)-356(is)-355(the)-356(great)-356(menace)-356(of)-355(measles.)-567(Fifty-odd)]TJ 0 -13.5492 Td[(years)-241(ago)-242(Gregory)-241(wrote)-242("I)-241(am)-241(sure)-242(I)-241(speak)-242(much)-241(within)-241(bounds)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
33 0 obj <<
/Type /Page
/Contents 34 0 R
/Resources 32 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 36 0 R
>> endobj
35 0 obj <<
/D [33 0 R /XYZ 46.7715 119.188 null]
>> endobj
32 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
39 0 obj <<
/Length 4546      
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(4)-21947(Measles)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 518.1751 Td[(when)-495(I)-495(say)-495(that)-495(nine-tenths)-496(of)-495(the)-495(deaths)-495(by)-495(measles)-495(occur)]TJ 0 -13.5492 Td[(in)-336(consequence)-335(of)-336(pneumonia.")-335(Less)-336(frequently)-335(there)-336(are)-335(other)]TJ 0 -13.5492 Td[(complications,)-418(and)-384(the)-384(eyes,)-417(ears,)-418(the)-384(central)-384(nervous)-384(system,)]TJ 0 -13.5492 Td[(heart,)-244(and)-242(the)-243(skin)-242(may)-243(any)-242(one)-243(of)-242(them)-243(suffer.)-247(Sometimes)-242(there)]TJ 0 -13.5492 Td[(is)-357(gangrene)-357(at)-357(the)-357(corners)-357(of)-357(the)-357(mouth)-357(and)-357(this)-357(may)-356(result)-357(in)]TJ 0 -13.5492 Td[(death)-250(or)-250(horrible)-250(deformity.)]TJ 11.9552 -15.1857 Td[(Measles,)-519(then,)-519(is)-465(a)-465(serious)-465(disease,)-519(sparing)-465(practically)-466(no)]TJ -11.9552 -13.5492 Td[(exposed)-248(person)-248(who)-248(has)-248(not)-248(had)-249(it.)-249(In)-248(1846)-248(it)-248(attacked)-248(the)-248(Faroe)]TJ 0 -13.5492 Td[(Islands,)-308(and)-297(the)-297(record)-296(of)-297(that)-297(visitation)-296(is)-297(both)-297(remarkable)-296(and)]TJ 0 -13.5492 Td[(instructive.)-676(The)-391(island)-392(had)-392(been)-392(free)-392(from)-392(the)-392(disease)-392(for)-391(65)]TJ 0 -13.5492 Td[(years,)-338(when)-320(a)-320(Danish)-321(cabinetmaker)-320(returned)-320(from)-320(Copenhagen)]TJ 0 -13.5492 Td[(to)-287(Thorshavn)-287(with)-287(the)-286(disease.)-361(He)-287(infected)-287(two)-287(friends,)-296(and)-286(the)]TJ 0 -13.5492 Td[(epidemic)-202(increased)-203(by)-202(leaps)-203(and)-202(bounds,)-212(until)-202(within)-203(a)-202(very)-202(short)]TJ 0 -13.5492 Td[(time)-359(over)-359(6,000)-359(persons)-360(out)-359(of)-359(a)-359(population)-359(of)-359(7,782)-359(were)-359(at-)]TJ 0 -13.5492 Td[(tacked.)-246(Almost)-239(every)-238(house)-239(on)-238(the)-239(island)-238(became)-239(a)-239(hospital,)-240(and)]TJ 0 -13.5492 Td[(the)-403(only)-404(persons)-403(who)-403(passed)-404(through)-403(the)-403(visitation)-403(unscathed)]TJ 0 -13.5492 Td[(were)-428(old)-429(inhabitants)-428(who)-429(had)-428(had)-429(the)-428(disease)-429(as)-428(children)-428(65)]TJ 0 -13.5492 Td[(years)-289(before.)-367(Not)-289(a)-289(single)-289(old)-289(person)-289(who)-289(was)-289(not)-289(protected)-289(by)]TJ 0 -13.5492 Td[(a)-258(previous)-258(attack)-259(and)-258(who)-258(was)-258(exposed)-259(to)-258(the)-258(infection)-258(failed)-258(to)]TJ 0 -13.5492 Td[(contract)-250(the)-250(disease.)]TJ 11.9552 -15.1857 Td[(This)-340(is)-340(one)-340(of)-341(the)-340(oldest)-340(ailments)-340(with)-340(which)-340(man)-340(has)-341(been)]TJ -11.9552 -13.5492 Td[(afflicted.)-530(In)-343(fact)-344(the)-343(word)-343("measles")-343(traces)-344(its)-343(genealogy)-343(back)]TJ 0 -13.5492 Td[(through)-304(the)-304(German)-304("masern")-304(to)-304(the)-304(Sanskrit)-304("masura,")-303(a)-304(word)]TJ 0 -13.5492 Td[(meaning)-242("spots.")-243(The)-242(writings)-243(of)-242(the)-243(ancient)-242(Arabian)-242(physicians)]TJ 0 -13.5492 Td[(are)-480(replete)-480(with)-481(mention)-480(of)-480(this)-480(disease.)-941(The)-480(Italians,)-537(who)]TJ 0 -13.5492 Td[(evidently)-416(regarded)-416(it)-416(no)-416(more)-415(seriously)-416(than)-416(we)-416(do,)-458(called)-415(it)]TJ 0 -13.5492 Td[("morbillo,")-250(which)-250(means)-250("little)-250(sickness.")]TJ 11.9552 -15.1857 Td[(Time)-299(and)-298(again)-299(measles)-299(has)-299(been)-298(widely)-299(diffused)-299(on)-299(Asiatic)]TJ -11.9552 -13.5492 Td[(and)-251(European)-251(soil,)-251(and)-250(shortly)-251(after)-251(the)-251(colonization)-251(of)-250(America)]TJ 0 -13.5492 Td[(it)-336(appeared)-336(in)-336(our)-336(colonies.)-508(Many)-336(are)-336(the)-336(quaint)-336(records)-336(of)-336(its)]TJ 0 -13.5492 Td[(visitations,)-423(not)-389(the)-388(least)-389(interesting)-389(of)-388(which)-389(is)-388(a)-389(letter)-388(which)]TJ 0 -13.5492 Td[(appeared)-325(in)-324(the)-325(Boston)-324(Evening)-325(Post,)-343(November)-325(12,)-343(1739,)-343(en-)]TJ 0 -13.5492 Td[(titled)-319("A)-320(letter)-319(about)-320(good)-319(management)-320(under)-319(the)-320(distemper)-319(of)]TJ 0 -13.5492 Td[(measles)-419(at)-418(this)-419(time)-419(spreading)-418(in)-419(the)-419(country,)-461(here)-418(published)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 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.5276 595.2756]
/Parent 36 0 R
>> endobj
37 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
42 0 obj <<
/Length 4735      
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 321.9467 548.9335 Td[(5)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(for)-360(the)-359(benefit)-360(of)-359(the)-360(poor)-359(and)-360(such)-360(as)-359(may)-360(want)-359(help)-360(of)-359(able)]TJ 0 -13.5492 Td[(physicians.")-352(It)-353(is)-352(signed)-353("Your)-352(hearty)-352(friend)-353(and)-352(servant,")-352(and)]TJ 0 -13.5492 Td[(the)-234(authorship)-234(is)-234(attributed)-234(to)-234(Cotton)-234(Mather.)-245(It)-234(is)-234(stated)-234(that)-234(this)]TJ 0 -13.5492 Td[(letter)-379(is)-380(a)-379(reprint)-380(of)-379(one)-380(which)-379(Dr.)-639(Mather)-379(wrote)-379(prior)-380(to)-379(his)]TJ 0 -13.5492 Td[(death)-250(in)-250(1728.)]TJ 11.9552 -14.7766 Td[(At)-305(present)-305(the)-305(disease)-304(is)-305(distributed)-305(over)-305(the)-305(entire)-305(habitable)]TJ -11.9552 -13.5492 Td[(globe,)-213(from)-203(Iceland)-204(on)-203(the)-203(north)-204(to)-203(Tierra)-204(del)-203(Fuego)-204(on)-203(the)-203(south.)]TJ 0 -13.5492 Td[(It)-398(occurs)-398(most)-398(often)-397(and)-398(more)-398(severely)-398(in)-398(the)-398(colder)-397(months,)]TJ 0 -13.5492 Td[(probably)-229(because)-230(at)-229(such)-230(times)-229(people)-229(are)-230(more)-229(closely)-229(crowded)]TJ 0 -13.5492 Td[(together)-449(under)-448(more)-449(insanitary)-449(conditions.)-846(When)-448(introduced)]TJ/F16 7.9701 Tf 291.0235 0 Td[([006])]TJ/F16 10.9091 Tf -291.0235 -13.5492 Td[(among)-449(a)-448(people)-449(who)-449(have)-448(never)-449(suffered)-449(from)-448(it)-449(before,)-498(its)]TJ 0 -13.5492 Td[(ravages)-206(are)-206(frightful,)-215(as)-206(in)-206(the)-206(case)-206(of)-206(the)-206(inhabitants)-206(of)-206(certain)-206(of)]TJ 0 -13.5492 Td[(the)-234(Fiji)-235(Islands,)-237(who,)-237(upon)-235(being)-234(exposed)-234(to)-234(the)-235(infection,)-237(fell)-234(ill)]TJ 0 -13.5492 Td[(and)-277(died)-278(by)-277(thousands,)-285(so)-277(that)-277(it)-278(is)-277(estimated)-278(that)-277(20,000)-277(deaths)]TJ 0 -13.5492 Td[(occurred)-231(in)-231(four)-231(months.)-243(The)-231(epidemic)-231(ceased)-231(only)-231(when)-230(almost)]TJ 0 -13.5492 Td[(every)-250(person)-250(on)-250(the)-250(island)-250(had)-250(been)-250(infected.)]TJ 11.9552 -14.7766 Td[(During)-300(the)-300(year)-300(1910)-300(the)-300(death)-300(rates)-300(from)-300(this)-300(disease)-300(in)-300(the)]TJ -11.9552 -13.5492 Td[(States)-334(of)-334(Rhode)-334(Island)-334(and)-334(North)-334(Carolina)-334(were)-334(32.6)-333(and)-334(27.1)]TJ 0 -13.5492 Td[(per)-250(100,000)-250(inhabitants.)]TJ 11.9552 -14.7766 Td[(In)-318(the)-318(same)-317(year)-318(the)-318(death)-318(rate)-317(per)-318(100,000)-318(from)-318(measles)-318(in)]TJ -11.9552 -13.5492 Td[(Pittsburgh,)-323(Pa.,)-323(was)-308(33.1;)-338(Providence,)-322(R.)-309(I.,)-323(31.9;)-337(Kansas)-308(City,)]TJ 0 -13.5492 Td[(Mo.,)-256(28.4;)-257(Lowell,)-257(Mass.,)-256(28.1;)-257(Albany,)-256(N.)-255(Y.,)-256(23.9;)-257(Columbus,)]TJ 0 -13.5492 Td[(Ohio,)-250(23.6;)-250(Buffalo,)-250(N.)-250(Y.,)-250(22.1;)-250(and)-250(Richmond,)-250(Va.,)-250(21.1.)]TJ 11.9552 -14.7766 Td[(The)-234(death)-235(rate)-234(among)-235(those)-234(attacked)-234(varies)-235(from)-234(1/2)-235(to)-234(35)-235(per)]TJ -11.9552 -13.5492 Td[(cent.)-467(If)-322(it)-322(is)-322(estimated)-322(that)-323(the)-322(death)-322(rate)-322(is)-323(1)-322(per)-322(cent,)-340(and)-322(the)]TJ 0 -13.5492 Td[(number)-374(of)-374(deaths)-375(from)-374(it)-374(in)-374(the)-375(United)-374(States)-374(during)-374(the)-374(year)]TJ 0 -13.5492 Td[(1910)-337(was)-337(11,000,)-358(then)-337(it)-337(would)-336(follow)-337(that)-337(during)-337(that)-337(year)-336(at)]TJ 0 -13.5492 Td[(least)-336(1,100,000)-337(children)-336(suffered)-337(from)-336(this)-336(disease.)-510(When)-336(it)-336(is)]TJ 0 -13.5492 Td[(considered)-390(that)-390(perhaps)-390(30)-389(per)-390(cent)-390(of)-390(these)-390(children)-390(were)-389(of)]TJ 0 -13.5492 Td[(school)-394(age,)-431(and)-394(that)-394(the)-394(disease)-394(occurs)-395(most)-394(often)-394(during)-394(the)]TJ 0 -13.5492 Td[(months)-348(of)-348(school)-348(attendance,)-372(then)-348(it)-348(will)-348(be)-348(seen)-348(that)-348(330,000)]TJ 0 -13.5492 Td[(children)-339(were)-340(kept)-339(from)-340(school)-339(from)-340(six)-339(weeks)-340(to)-339(two)-339(months)]TJ 0 -13.5492 Td[(on)-336(account)-337(of)-336(measles.)-510(Leaving)-336(out)-337(of)-336(consideration)-337(the)-336(death)]TJ 0 -13.5492 Td[(and)-310(suffering)-310(which)-309(was)-310(produced)-310(in)-310(this)-309(way,)-325(this)-310(is)-310(a)-309(serious)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 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.5276 595.2756]
/Parent 36 0 R
>> endobj
43 0 obj <<
/D [41 0 R /XYZ 139.568 395.0049 null]
>> endobj
40 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
46 0 obj <<
/Length 4761      
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(6)-21947(Measles)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 518.1751 Td[(economic)-250(loss.)]TJ 11.9552 -15.1857 Td[(Measles)-403(is)-402(a)-403(frequent)-403(accompaniment)-403(of)-402(war,)-441(or)-403(any)-403(other)]TJ -11.9552 -13.5492 Td[(occasion)-418(which)-417(brings)-418(large)-417(numbers)-418(of)-417(persons)-418(together)-417(un-)]TJ 0 -13.5492 Td[(der)-350(unhygienic)-350(conditions.)-551(In)-350(fact,)-375(measles)-351(is)-350(one)-350(of)-350(the)-350(most)]TJ 0 -13.5492 Td[(formidable)-296(of)-296(camp)-296(diseases.)-388(This)-296(fact)-296(is)-296(well)-296(demonstrated)-296(by)]TJ 0 -13.5492 Td[(morbidity)-285(and)-285(mortality)-285(statistics)-284(of)-285(the)-285(Civil)-285(War.)-355(At)-285(that)-284(time)]TJ 0 -13.5492 Td[(the)-428(mortality)-429(rate)-428(was)-428(very)-429(high)-428(in)-428(the)-429(general)-428(field)-428(hospital)]TJ 0 -13.5492 Td[(at)-423(Chattanooga,)-465(being)-423(22.4)-423(per)-422(cent,)-466(and)-423(in)-422(the)-423(general)-422(field)]TJ 0 -13.5492 Td[(hospital)-359(at)-360(Nashville)-359(it)-360(was)-359(19.6)-360(per)-359(cent.)-579(In)-359(1865)-360(there)-359(were)]TJ 0 -13.5492 Td[(38,000)-254(cases)-254(with)-253(1,900)-254(deaths)-254(from)-254(measles)-254(in)-254(the)-253(Confederate)]TJ 0 -13.5492 Td[(army.)-343(It)-281(is)-281(reported)-281(that)-281(during)-281(the)-281(Brazilio-Paraguayan)-281(War)-281(an)]TJ 0 -13.5492 Td[(epidemic)-318(of)-317(measles)-318(swept)-317(off)-318(nearly)-317(a)-318(fifth)-317(of)-318(the)-317(Paraguayan)]TJ 0 -13.5492 Td[(army)-250(in)-250(three)-250(months.)]TJ 11.9552 -15.1857 Td[(It)-189(is)-190(thus)-189(seen)-189(that)-189(measles)-190(is)-189(many)-189(times)-190(a)-189(very)-189(severe)-190(disease,)]TJ -11.9552 -13.5492 Td[(one)-262(which)-261(can)-262(not)-262(be)-262(dealt)-261(with)-262(lightly,)-265(one)-261(to)-262(which)-262(we)-261(should)]TJ 0 -13.5492 Td[(not)-306(expose)-306(our)-306(children.)-417(A)-306(child)-306(with)-306(measles)-306(should)-306(be)-306(put)-305(to)]TJ 0 -13.5492 Td[(bed)-219(and)-220(kept)-219(there)-219(as)-220(long)-219(as)-219(it)-220(has)-219(any)-220(fever)-219(or)-219(cough.)-240(The)-219(room)]TJ 0 -13.5492 Td[(should)-272(be)-272(airy,)-277(but)-271(it)-272(should)-272(be)-272(darkened,)-277(because)-272(children)-271(with)]TJ 0 -13.5492 Td[(measles)-387(are)-387(very)-387(sensitive)-386(to)-387(light.)-661(The)-387(bedclothes)-387(should)-386(be)]TJ 0 -13.5492 Td[(light,)-208(because)-198(the)-197(child)-198(is)-197(apt)-198(to)-197(get)-198(too)-198(warm,)-208(kick)-197(off)-198(the)-197(covers,)]TJ 0 -13.5492 Td[(and)-280(suffer)-281(from)-280(the)-280(cold.)-341(A)-281(chilling)-280(in)-280(this)-281(way)-280(may)-280(predispose)]TJ 0 -13.5492 Td[(to)-326(pneumonia.)-478(Food)-326(should)-326(be)-326(light)-326(and)-326(should)-325(consist)-326(chiefly)]TJ 0 -13.5492 Td[(of)-317(nutritious)-317(broths,)-334(pasteurized)-317(milk,)-334(soft-boiled)-317(eggs,)-334(and)-317(the)]TJ/F16 7.9701 Tf -72.7559 0 Td[([007])]TJ/F16 10.9091 Tf 72.7559 -13.5492 Td[(like.)-244(Ice)-231(lemonade)-232(will)-231(bring)-232(comfort)-231(to)-232(the)-231(inflamed)-232(throat.)-243(The)]TJ 0 -13.5492 Td[(child's)-299(eyes)-298(should)-299(be)-299(kept)-299(clean,)-311(and)-298(should)-299(the)-299(fever)-299(get)-298(high)]TJ 0 -13.5492 Td[(the)-323(comfort)-323(of)-323(the)-323(little)-323(sufferer)-323(may)-323(be)-323(increased)-322(by)-323(sponging)]TJ 0 -13.5492 Td[(with)-331(tepid)-332(water)-331(and)-331(alcohol.)-495(Sometimes)-331(it)-331(is)-332(necessary)-331(to)-331(put)]TJ 0 -13.5492 Td[(an)-273(ice)-274(bag)-273(to)-274(the)-273(head,)-279(but,)-280(if)-273(the)-273(child)-274(is)-273(sick)-274(enough)-273(to)-273(require)]TJ 0 -13.5492 Td[(this,)-250(skilled)-250(assistance)-250(should)-250(be)-250(summoned.)]TJ 11.9552 -15.1857 Td[(When)-199(the)-199(fever)-199(and)-200(cough)-199(have)-199(gone)-199(the)-199(child)-199(may)-199(be)-200(allowed)]TJ -11.9552 -13.5492 Td[(to)-317(be)-318(up)-317(and)-317(about)-318(the)-317(room,)-334(but)-318(for)-317(a)-317(time)-318(should)-317(not)-317(indulge)]TJ 0 -13.5492 Td[(in)-225(violent)-226(exercise,)-230(because)-225(there)-226(is)-225(often)-225(some)-226(weakening)-225(of)-225(the)]TJ 0 -13.5492 Td[(heart)-229(muscle)-228(by)-229(the)-228(disease.)-243(The)-228(aim)-229(is)-228(to)-229(allow)-228(the)-229(heart)-228(muscle)]TJ 0 -13.5492 Td[(to)-420(regain)-420(its)-420(normal)-421(condition)-420(before)-420(putting)-420(too)-420(much)-420(strain)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 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.5276 595.2756]
/Parent 36 0 R
>> endobj
47 0 obj <<
/D [45 0 R /XYZ 234.698 216.8197 null]
>> endobj
44 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
50 0 obj <<
/Length 4840      
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 321.9467 548.9335 Td[(7)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(upon)-327(it.)-483(The)-327(diet)-328(should)-327(be)-328(increased)-327(when)-328(the)-327(fever)-328(has)-327(gone)]TJ 0 -13.5492 Td[(away,)-278(and)-273(should)-273(include)-272(good,)-279(plain,)-278(strong)-273(foods.)-317(If)-273(there)-273(is)-272(a)]TJ 0 -13.5492 Td[(tendency)-264(to)-264(regain)-264(weight)-264(and)-264(strength)-265(slowly,)-267(the)-264(child)-264(may)-264(be)]TJ 0 -13.5492 Td[(given)-282(an)-282(increased)-281(amount)-282(of)-282(pasteurized)-282(cream)-282(or)-282(good)-281(butter.)]TJ 0 -13.5492 Td[(If)-250(the)-250(child)-250(prefers)-250(cod-liver)-250(oil,)-250(this)-250(may)-250(be)-250(substituted.)]TJ 11.9552 -14.7766 Td[(The)-258(important)-257(point)-258(about)-257(the)-258(prevention)-257(of)-258(the)-257(disease)-258(is)-258(the)]TJ -11.9552 -13.5492 Td[(fact)-317(that,)-333(judging)-317(from)-317(the)-316(experiments)-317(of)-317(Anderson)-317(and)-316(Gold-)]TJ 0 -13.5492 Td[(berger)-409(above)-410(referred)-409(to,)-450(measles)-409(is)-410(rarely)-409(transmissible)-409(after)]TJ 0 -13.5492 Td[(the)-386(fever)-386(has)-386(gone)-386(down.)-658(Experimenting)-386(with)-386(monkeys,)-420(they)]TJ 0 -13.5492 Td[(found)-239(that)-240(they)-239(were)-240(unable)-239(to)-240(transmit)-239(measles)-240(from)-239(monkey)-239(to)]TJ 0 -13.5492 Td[(monkey)-243(after)-244(the)-243(stage)-244(of)-243(fever)-244(had)-243(ceased.)-248(It)-243(used)-244(to)-243(be)-243(thought)]TJ 0 -13.5492 Td[(that)-278(the)-279(germs)-278(of)-279(measles)-278(were)-279(in)-278(the)-279(scales)-278(of)-279(skin)-278(which)-278(were)]TJ 0 -13.5492 Td[(shed)-250(at)-250(the)-250(close)-250(of)-250(the)-250(disease.)]TJ 11.9552 -14.7766 Td[(It)-381(is)-381(thought)-380(by)-381(some)-381(that)-381(there)-380(may)-381(be)-381(chronic)-381(carriers)-381(of)]TJ -11.9552 -13.5492 Td[(measles,)-366(but)-344(this)-343(is)-343(not)-343(at)-343(all)-343(proven.)-530(It)-343(is)-343(also)-343(believed)-343(that)-343(a)]TJ 0 -13.5492 Td[(discharging)-297(ear)-297(following)-297(measles)-297(may)-297(be)-297(the)-297(means)-297(of)-297(contin-)]TJ 0 -13.5492 Td[(uing)-314(the)-314(transmission)-313(of)-314(the)-314(disease.)-442(This)-313(is)-314(not)-314(proven.)-441(There)]TJ 0 -13.5492 Td[(are)-329(on)-329(record)-329(a)-329(large)-329(number)-329(of)-329(instances)-329(which)-329(seem)-329(to)-329(point)]TJ 0 -13.5492 Td[(to)-253(the)-253(fact)-254(that)-253(under)-253(certain)-253(conditions)-254(a)-253(third)-253(person)-253(may)-253(carry)]TJ 0 -13.5492 Td[(the)-276(infection)-276(from)-276(the)-275(sick)-276(to)-276(the)-276(well.)-328(Transmission)-276(of)-275(measles)]TJ 0 -13.5492 Td[(to)-250(human)-250(beings)-250(by)-250(the)-250(lower)-250(animals)-250(is)-250(still)-250(unproven.)]TJ 11.9552 -14.7766 Td[(It)-202(is)-202(not)-203(known)-202(what)-202(the)-202(cause)-202(of)-203(measles)-202(is.)-234(A)-202(great)-202(many)-203(sci-)]TJ -11.9552 -13.5492 Td[(entists)-251(have)-250(described)-251(germs)-251(which)-251(they)-250(believe)-251(to)-251(be)-251(the)-250(causal)]TJ 0 -13.5492 Td[(agents,)-337(but)-320(up)-319(to)-320(date)-320(these)-319(have)-320(not)-320(been)-319(positively)-320(proven)-319(as)]TJ 0 -13.5492 Td[(the)-306(cause)-306(of)-307(measles.)-418(We)-306(do,)-321(however,)-320(know)-306(that)-306(the)-306(infection)]TJ 0 -13.5492 Td[(of)-359(measles)-359(is)-359(found)-360(in)-359(the)-359(secretions)-359(from)-359(the)-359(nose)-359(and)-359(throat)]TJ 0 -13.5492 Td[(during)-260(the)-259(first)-260(stages)-259(of)-260(the)-260(disease;)-264(therefore)-260(persons)-259(suffering)]TJ 0 -13.5492 Td[(with)-238(measles)-238(should)-237(not)-238(be)-238(allowed)-238(to)-237(come)-238(in)-238(contact)-238(with)-237(well)]TJ 0 -13.5492 Td[(persons)-250(until)-250(the)-250(period)-250(of)-250(fever)-250(has)-250(well)-250(passed.)]TJ 11.9552 -14.7766 Td[(Since)-355(the)-356(disease)-355(is)-356(known)-355(to)-356(be)-355(spread)-356(by)-355(the)-356(sputum,)-382(the)]TJ -11.9552 -13.5492 Td[(prime)-268(measure)-268(in)-269(the)-268(prevention)-268(of)-268(this)-269(disease)-268(is)-268(to)-268(prevent)-268(the)]TJ 0 -13.5492 Td[(sputum)-200(from)-200(the)-200(sick)-199(being)-200(taken)-200(into)-200(the)-200(system)-200(of)-200(well)-199(persons.)]TJ 0 -13.5492 Td[(Children)-420(with)-420(measles)-420(should)-421(be)-420(provided)-420(with)-420(a)-420(quantity)-420(of)]TJ 0 -13.5492 Td[(soft)-378(paper)-378(napkins,)-410(and)-378(as)-378(soon)-378(as)-378(the)-378(napkins)-377(become)-378(soiled)]TJ/F16 7.9701 Tf 291.0235 0 Td[([008])]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
49 0 obj <<
/Type /Page
/Contents 50 0 R
/Resources 48 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 36 0 R
>> endobj
51 0 obj <<
/D [49 0 R /XYZ 132.2756 66.142 null]
>> endobj
48 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
54 0 obj <<
/Length 4313      
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(8)-21947(Measles)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 518.1751 Td[(they)-257(should)-257(be)-258(burned.)-271(Children)-257(should)-258(be)-257(taught)-257(that)-257(they)-257(must)]TJ 0 -13.5492 Td[(always)-198(hold)-198(a)-198(handkerchief)-197(in)-198(front)-198(of)-198(the)-198(mouth)-198(while)-197(coughing.)]TJ 0 -13.5492 Td[(This)-352(is)-353(a)-352(measure)-352(which)-353(tends)-352(to)-353(control)-352(the)-352(spread)-353(of)-352(a)-352(good)]TJ 0 -13.5492 Td[(many)-412(diseases)-412(besides)-412(measles,)-452(because)-412(during)-412(coughing)-411(and)]TJ 0 -13.5492 Td[(sneezing)-281(sputum)-281(may)-282(be)-281(thrown)-281(several)-281(feet.)-344(Everything)-281(which)]TJ 0 -13.5492 Td[(has)-359(come)-358(in)-359(contact)-358(with)-359(measles)-359(patients)-358(should)-359(be)-358(sterilized)]TJ 0 -13.5492 Td[(before)-440(it)-440(is)-440(allowed)-440(to)-440(come)-440(in)-440(contact)-440(with)-440(other)-439(people)-440(or)]TJ 0 -13.5492 Td[(other)-431(things)-431(which)-431(may)-432(be)-431(handled)-431(or)-431(used)-431(by)-431(other)-431(people.)]TJ 0 -13.5492 Td[(Bedclothes,)-442(napkins,)-441(table)-403(linen,)-442(towels,)-441(and)-404(the)-403(like)-403(may)-403(be)]TJ 0 -13.5492 Td[(sterilized)-250(by)-250(boiling.)]TJ 11.9552 -13.5492 Td[(When)-211(it)-210(is)-211(known)-210(that)-211(measles)-210(exists)-211(in)-210(a)-211(community,)-218(no)-211(child)]TJ -11.9552 -13.5492 Td[(having)-319(a)-318(bad)-319(cough)-319(should)-318(be)-319(allowed)-319(to)-318(come)-319(in)-319(contact)-318(with)]TJ 0 -13.5492 Td[(other)-250(children)-250(during)-250(the)-250(first)-250(three)-250(or)-250(four)-250(days)-250(of)-250(the)-250(cough.)]TJ 11.9552 -13.5492 Td[(It)-264(is)-265(little)-264(less)-264(than)-265(criminal)-264(to)-264(permit)-265(children)-264(known)-264(to)-265(have)]TJ -11.9552 -13.5492 Td[(measles)-224(to)-224(come)-223(in)-224(contact)-224(with)-224(well)-224(children.)-241(In)-224(this)-223(connection)]TJ 0 -13.5492 Td[(it)-423(may)-423(be)-423(remarked)-422(that)-423(while)-423(it)-423(is)-423(generally)-423(considered)-422(that)]TJ 0 -13.5492 Td[(one)-359(attack)-359(of)-359(measles)-359(confers)-359(immunity,)-386(there)-359(are)-359(many)-359(cases)]TJ 0 -13.5492 Td[(on)-312(record)-312(of)-312(second)-312(and)-312(third)-312(attacks.)-436(It)-312(is)-312(true)-312(that)-312(the)-312(second)]TJ 0 -13.5492 Td[(attacks)-329(are)-329(usually)-329(very)-330(mild,)-349(but)-329(too)-329(great)-329(reliance)-329(should)-329(not)]TJ 0 -13.5492 Td[(be)-250(placed)-250(on)-250(this)-250(immunity.)]TJ 11.9552 -13.5492 Td[(Children)-187(should)-188(be)-188(discouraged)-187(as)-188(far)-187(as)-188(possible)-187(from)-188(playing)]TJ -11.9552 -13.5492 Td[(games)-384(which)-384(will)-384(permit)-384(of)-384(an)-384(interchange)-384(of)-384(nasal)-383(or)-384(mouth)]TJ 0 -13.5492 Td[(secretions.)-482(It)-328(is)-327(the)-327(duty)-328(of)-327(every)-328(parent)-327(having)-328(measles)-327(in)-327(the)]TJ 0 -13.5492 Td[(home)-192(to)-193(see)-192(to)-193(it)-192(that)-193(it)-192(is)-193(reported)-192(to)-193(the)-192(public-health)-192(authorities.)]TJ 0 -13.5492 Td[(It)-270(is)-270(equally)-271(the)-270(duty)-270(of)-270(parents)-270(to)-270(see)-271(to)-270(it)-270(that)-270(their)-270(children)-270(do)]TJ 0 -13.5492 Td[(not)-258(come)-258(in)-258(contact)-258(with)-258(well)-258(children)-258(during)-258(the)-258(time)-258(when)-258(the)]TJ 0 -13.5492 Td[(infection)-321(may)-321(be)-321(transmitted.)-464(Measles)-321(kills)-321(more)-321(people)-321(in)-321(the)]TJ 0 -13.5492 Td[(United)-349(States)-349(every)-349(year)-348(than)-349(smallpox.)-547(You)-349(can't)-349(kill)-349(a)-348(child)]TJ 0 -13.5492 Td[(any)-336(deader)-336(with)-336(smallpox)-336(than)-335(you)-336(can)-336(with)-336(measles.)-508(It)-336(is)-335(the)]TJ 0 -13.5492 Td[(duty)-309(of)-310(private)-309(citizens)-309(and)-309(municipalities)-310(to)-309(take)-309(every)-309(known)]TJ 0 -13.5492 Td[(measure)-250(for)-250(the)-250(prevention)-250(of)-250(the)-250(spread)-250(of)-250(this)-250(disease.)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 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.5276 595.2756]
/Parent 36 0 R
>> endobj
52 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
57 0 obj <<
/Length 338       
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -19.7995 cm
0 g 0 G
1 0 0 1 -46.7715 -529.134 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(***END)-500(OF)-500(THE)-500(PROJECT)-500(GUTENBERG)-500(EBOOK)]TJ 0 -13.5492 Td[(MEASLES***)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
56 0 obj <<
/Type /Page
/Contents 57 0 R
/Resources 55 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 59 0 R
>> endobj
58 0 obj <<
/D [56 0 R /XYZ 46.7715 529.134 null]
>> endobj
55 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
62 0 obj <<
/Length 135       
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -510.1518 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
61 0 obj <<
/Type /Page
/Contents 62 0 R
/Resources 60 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 59 0 R
>> endobj
60 0 obj <<
/ProcSet [ /PDF ]
>> endobj
63 0 obj
<< /S /GoTo /D (index1) >>
endobj
66 0 obj
(Credits)
endobj
69 0 obj <<
/Length 488       
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 18.9589 Tf 46.7715 479.3208 Td[(Credits)]TJ/F16 10.9091 Tf 0 -37.8764 Td[(November)-250(29,)-250(2006)]TJ 21.8182 -19.0037 Td[(Project)-250(Gutenberg)-250(Edition)]TJ 0 -13.5492 Td[(Bryan)-250(Ness)]TJ 0 -13.5492 Td[(Joshua)-250(Hutchinson)]TJ 0 -13.5492 Td[(Online)-250(Distributed)-250(Proofreading)-250(Team)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
68 0 obj <<
/Type /Page
/Contents 69 0 R
/Resources 67 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 59 0 R
>> endobj
64 0 obj <<
/D [68 0 R /XYZ 46.7715 529.134 null]
>> endobj
67 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
72 0 obj <<
/Length 135       
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -280.6297 -510.1518 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
71 0 obj <<
/Type /Page
/Contents 72 0 R
/Resources 70 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 59 0 R
>> endobj
70 0 obj <<
/ProcSet [ /PDF ]
>> endobj
73 0 obj
<< /S /GoTo /D (index2) >>
endobj
76 0 obj
(A Word from Project Gutenberg)
endobj
79 0 obj <<
/Length 3209      
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 18.9589 Tf 46.7715 479.3208 Td[(A)-250(Word)-250(from)-250(Project)-250(Gutenberg)]TJ/F16 10.9091 Tf 0 -32.4219 Td[(This)-250(file)-250(should)-250(be)-250(named)-250(19965-pdf.pdf)-250(or)-250(19965-pdf.zip.)]TJ 11.9552 -13.5492 Td[(This)-291(and)-291(all)-291(associated)-291(files)-291(of)-291(various)-291(formats)-291(will)-291(be)-291(found)]TJ -11.9552 -13.5492 Td[(in:)]TJ/F16 9.8629 Tf 19.6364 -22.6399 Td[(http://www.gutenberg.org/dirs/1/9/9/6/19965/)]TJ/F16 10.9091 Tf -7.6812 -23.3673 Td[(Updated)-447(editions)-446(will)-447(replace)-447(the)-447(previous)-446(one)]TJ/F21 10.9091 Tf 220.746 0 Td[(\024)]TJ/F16 10.9091 Tf 15.7825 0 Td[(the)-447(old)]TJ -248.4837 -13.5492 Td[(editions)-250(will)-250(be)-250(renamed.)]TJ 11.9552 -13.5492 Td[(Creating)-308(the)-308(works)-308(from)-308(public)-308(domain)-308(print)-308(editions)-308(means)]TJ -11.9552 -13.5492 Td[(that)-220(no)-220(one)-219(owns)-220(a)-220(United)-220(States)-219(copyright)-220(in)-220(these)-220(works,)-226(so)-219(the)]TJ 0 -13.5492 Td[(Foundation)-324(\050and)-325(you!\051)-473(can)-325(copy)-324(and)-325(distribute)-324(it)-325(in)-324(the)-324(United)]TJ 0 -13.5492 Td[(States)-163(without)-163(permission)-163(and)-163(without)-163(paying)-163(copyright)-163(royalties.)]TJ 0 -13.5492 Td[(Special)-298(rules,)-310(set)-299(forth)-298(in)-298(the)-298(General)-298(Terms)-299(of)-298(Use)-298(part)-298(of)-298(this)]TJ 0 -13.5492 Td[(license,)-360(apply)-337(to)-338(copying)-337(and)-338(distributing)-338(Project)-337(Gutenberg)]TJ/F22 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(electronic)-247(works)-246(to)-247(protect)-246(the)-247(Project)-246(Gutenberg)]TJ/F22 10.9091 Tf 214.8796 0 Td[(")]TJ/F16 10.9091 Tf 13.3805 0 Td[(concept)-247(and)]TJ -228.2601 -13.5492 Td[(trademark.)-243(Project)-228(Gutenberg)-227(is)-228(a)-228(registered)-228(trademark,)-233(and)-227(may)]TJ 0 -13.5492 Td[(not)-394(be)-394(used)-394(if)-393(you)-394(charge)-394(for)-394(the)-394(eBooks,)-430(unless)-394(you)-393(receive)]TJ 0 -13.5492 Td[(specific)-377(permission.)-630(If)-377(you)-377(do)-377(not)-377(charge)-377(anything)-377(for)-376(copies)]TJ 0 -13.5492 Td[(of)-303(this)-302(eBook,)-316(complying)-303(with)-303(the)-302(rules)-303(is)-303(very)-303(easy.)-408(You)-302(may)]TJ 0 -13.5492 Td[(use)-228(this)-228(eBook)-228(for)-228(nearly)-228(any)-228(purpose)-228(such)-228(as)-228(creation)-228(of)-228(deriva-)]TJ 0 -13.5492 Td[(tive)-375(works,)-407(reports,)-406(performances)-376(and)-375(research.)-626(They)-375(may)-375(be)]TJ 0 -13.5492 Td[(modified)-262(and)-261(printed)-262(and)-262(given)-262(away)]TJ/F21 10.9091 Tf 166.1939 0 Td[(\024)]TJ/F16 10.9091 Tf 13.7644 0 Td[(you)-262(may)-261(do)-262(practically)]TJ/F19 10.9091 Tf -179.9583 -13.5492 Td[(anything)]TJ/F16 10.9091 Tf 41.7859 0 Td[(with)-330(public)-331(domain)-330(eBooks.)-491(Redistribution)-331(is)-330(subject)]TJ -41.7859 -13.5492 Td[(to)-250(the)-250(trademark)-250(license,)-250(especially)-250(commercial)-250(redistribution.)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
78 0 obj <<
/Type /Page
/Contents 79 0 R
/Resources 77 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 59 0 R
/Annots [ 80 0 R ]
>> endobj
80 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [66.4079 395.0105 247.2349 403.9365]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/dirs/1/9/9/6/19965/) >> 
>> endobj
74 0 obj <<
/D [78 0 R /XYZ 46.7715 529.134 null]
>> endobj
11 0 obj <<
/D [78 0 R /XYZ 46.7715 124.7152 null]
>> endobj
77 0 obj <<
/Font << /F16 6 0 R /F21 82 0 R /F22 84 0 R /F19 20 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
85 0 obj
<< /S /GoTo /D (index3) >>
endobj
88 0 obj
(The Full Project Gutenberg License)
endobj
91 0 obj <<
/Length 3411      
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 18.9589 Tf 93.5434 479.3208 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)]TJ/F19 10.9091 Tf 0 -31.6842 Td[(Please)-250(read)-250(this)-250(before)-250(you)-250(distribute)-250(or)-250(use)-250(this)-250(work.)]TJ/F16 10.9091 Tf 11.9552 -13.5492 Td[(To)-269(protect)-269(the)-268(Project)-269(Gutenberg)]TJ/F22 10.9091 Tf 144.4282 0 Td[(")]TJ/F16 10.9091 Tf 13.6234 0 Td[(mission)-269(of)-269(promoting)-268(the)]TJ -170.0068 -13.5492 Td[(free)-225(distribution)-225(of)-225(electronic)-226(works,)-230(by)-225(using)-225(or)-225(distributing)-225(this)]TJ 0 -13.5492 Td[(work)-304(\050or)-304(any)-303(other)-304(work)-304(associated)-304(in)-303(any)-304(way)-304(with)-304(the)-303(phrase)]TJ/F21 10.9091 Tf 0 -13.5492 Td[(\034)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Project)-270(Gutenberg)]TJ/F21 10.9091 Tf 79.8943 0 Td[(\035)]TJ/F16 10.9091 Tf 4.8436 0 Td[(\051,)-275(you)-269(agree)-270(to)-270(comply)-269(with)-270(all)-269(the)-270(terms)-270(of)]TJ -89.5815 -13.5492 Td[(the)-268(Full)-269(Project)-268(Gutenberg)]TJ/F22 10.9091 Tf 116.6487 0 Td[(")]TJ/F16 10.9091 Tf 13.6175 0 Td[(License)-268(\050available)-269(with)-268(this)-268(file)-268(or)]TJ -130.2662 -13.5492 Td[(online)-250(at)-250(http://www.gutenberg.org/license\051.)]TJ/F16 15.7808 Tf 0 -35.4865 Td[(Section)-250(1.)]TJ/F16 13.1507 Tf 15.5801 -44.4205 Td[(General)-255(Terms)-254(of)-255(Use)-255(&)-254(Redistributing)-255(Project)]TJ 45.0124 -17.0958 Td[(Gutenberg)]TJ/F22 13.1507 Tf 55.5088 0 Td[(")]TJ/F16 13.1507 Tf 16.4153 0 Td[(electronic)-268(works)]TJ -132.5166 -41.8023 Td[(1.A.)]TJ/F16 10.9091 Tf 0 -25.9023 Td[(By)-330(reading)-331(or)-330(using)-331(any)-330(part)-331(of)-330(this)-331(Project)-330(Gutenberg)]TJ/F22 10.9091 Tf 245.1377 0 Td[(")]TJ/F16 10.9091 Tf 14.2957 0 Td[(elec-)]TJ -259.4334 -13.5492 Td[(tronic)-302(work,)-315(you)-302(indicate)-303(that)-302(you)-302(have)-302(read,)-315(understand,)-315(agree)]TJ 0 -13.5492 Td[(to)-198(and)-197(accept)-198(all)-197(the)-198(terms)-198(of)-197(this)-198(license)-197(and)-198(intellectual)-197(property)]TJ 0 -13.5492 Td[(\050trademark/copyright\051)-211(agreement.)-237(If)-211(you)-211(do)-211(not)-211(agree)-211(to)-211(abide)-211(by)]TJ 0 -13.5492 Td[(all)-270(the)-271(terms)-270(of)-270(this)-271(agreement,)-275(you)-270(must)-271(cease)-270(using)-270(and)-270(return)]TJ 0 -13.5492 Td[(or)-262(destroy)-263(all)-262(copies)-262(of)-262(Project)-263(Gutenberg)]TJ/F22 10.9091 Tf 183.192 0 Td[(")]TJ/F16 10.9091 Tf 13.552 0 Td[(electronic)-262(works)-263(in)]TJ -196.744 -13.5492 Td[(your)-379(possession.)-639(If)-379(you)-380(paid)-379(a)-380(fee)-379(for)-380(obtaining)-379(a)-380(copy)-379(of)-379(or)]TJ 0 -13.5492 Td[(access)-269(to)-270(a)-269(Project)-270(Gutenberg)]TJ/F22 10.9091 Tf 129.9028 0 Td[(")]TJ/F16 10.9091 Tf 13.6303 0 Td[(electronic)-269(work)-270(and)-269(you)-270(do)-269(not)]TJ -143.5331 -13.5492 Td[(agree)-206(to)-206(be)-205(bound)-206(by)-206(the)-206(terms)-206(of)-205(this)-206(agreement,)-215(you)-206(may)-205(obtain)]TJ 0 -13.5492 Td[(a)-304(refund)-304(from)-304(the)-304(person)-304(or)-304(entity)-304(to)-304(whom)-304(you)-304(paid)-304(the)-303(fee)-304(as)]TJ 0 -13.5492 Td[(set)-250(forth)-250(in)-250(paragraph)-250(1.E.8.)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
90 0 obj <<
/Type /Page
/Contents 91 0 R
/Resources 89 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 59 0 R
/Annots [ 92 0 R 93 0 R 96 0 R ]
>> endobj
92 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [264.2961 377.5124 362.1593 387.2324]
/Subtype /Link
/A << /S /GoTo /D (pglicense) >>
>> endobj
93 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [134.1469 363.9632 280.7976 373.6832]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/license) >> 
>> endobj
96 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [189.8814 63.7638 215.6377 73.4838]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
86 0 obj <<
/D [90 0 R /XYZ 93.5434 529.134 null]
>> endobj
94 0 obj <<
/D [90 0 R /XYZ 93.5434 363.9632 null]
>> endobj
95 0 obj <<
/D [90 0 R /XYZ 93.5434 254.1186 null]
>> endobj
89 0 obj <<
/Font << /F16 6 0 R /F19 20 0 R /F22 84 0 R /F21 82 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
100 0 obj <<
/Length 4596      
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 548.9335 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(15)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 13.1507 Tf 46.7715 518.1751 Td[(1.B.)]TJ/F21 10.9091 Tf 0 -27.8662 Td[(\034)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Project)-352(Gutenberg)]TJ/F21 10.9091 Tf 80.7901 0 Td[(\035)]TJ/F16 10.9091 Tf 8.6811 0 Td[(is)-352(a)-352(registered)-351(trademark.)-556(It)-351(may)-352(only)-352(be)]TJ -94.3148 -13.5492 Td[(used)-395(on)-394(or)-395(associated)-394(in)-395(any)-395(way)-394(with)-395(an)-394(electronic)-395(work)-394(by)]TJ 0 -13.5492 Td[(people)-347(who)-346(agree)-347(to)-346(be)-347(bound)-347(by)-346(the)-347(terms)-346(of)-347(this)-346(agreement.)]TJ 0 -13.5492 Td[(There)-255(are)-255(a)-256(few)-255(things)-255(that)-255(you)-255(can)-256(do)-255(with)-255(most)-255(Project)-255(Guten-)]TJ 0 -13.5492 Td[(berg)]TJ/F22 10.9091 Tf 19.3854 0 Td[(")]TJ/F16 10.9091 Tf 14.7401 0 Td[(electronic)-371(works)-371(even)-372(without)-371(complying)-371(with)-371(the)-371(full)]TJ -34.1255 -13.5492 Td[(terms)-362(of)-362(this)-361(agreement.)-586(See)-362(paragraph)-361(1.C)-362(below.)-586(There)-361(are)]TJ 0 -13.5492 Td[(a)-330(lot)-331(of)-330(things)-330(you)-331(can)-330(do)-330(with)-331(Project)-330(Gutenberg)]TJ/F22 10.9091 Tf 223.3206 0 Td[(")]TJ/F16 10.9091 Tf 14.2946 0 Td[(electronic)]TJ -237.6152 -13.5492 Td[(works)-193(if)-192(you)-193(follow)-192(the)-193(terms)-193(of)-192(this)-193(agreement)-192(and)-193(help)-192(preserve)]TJ 0 -13.5492 Td[(free)-284(future)-283(access)-284(to)-283(Project)-284(Gutenberg)]TJ/F22 10.9091 Tf 171.7712 0 Td[(")]TJ/F16 10.9091 Tf 13.7841 0 Td[(electronic)-284(works.)-350(See)]TJ -185.5553 -13.5492 Td[(paragraph)-250(1.E)-250(below.)]TJ/F16 13.1507 Tf 0 -43.3027 Td[(1.C.)]TJ/F16 10.9091 Tf 0 -27.8661 Td[(The)-247(Project)-247(Gutenberg)-247(Literary)-247(Archive)-247(Foundation)-247(\050)]TJ/F21 10.9091 Tf 233.6982 0 Td[(\034)]TJ/F16 10.9091 Tf 4.8437 0 Td[(the)-247(Foun-)]TJ -238.5419 -13.5492 Td[(dation)]TJ/F21 10.9091 Tf 27.2727 0 Td[(\035)]TJ/F16 10.9091 Tf 9.0575 0 Td[(or)-386(PGLAF\051,)-387(owns)-386(a)-386(compilation)-386(copyright)-387(in)-386(the)-386(col-)]TJ -36.3302 -13.5492 Td[(lection)-306(of)-305(Project)-306(Gutenberg)]TJ/F22 10.9091 Tf 125.7339 0 Td[(")]TJ/F16 10.9091 Tf 14.0241 0 Td[(electronic)-306(works.)-416(Nearly)-306(all)-305(the)]TJ -139.758 -13.5492 Td[(individual)-233(works)-232(in)-233(the)-233(collection)-232(are)-233(in)-233(the)-232(public)-233(domain)-233(in)-232(the)]TJ 0 -13.5492 Td[(United)-323(States.)-469(If)-322(an)-323(individual)-323(work)-323(is)-323(in)-323(the)-323(public)-323(domain)-322(in)]TJ 0 -13.5492 Td[(the)-344(United)-345(States)-344(and)-344(you)-345(are)-344(located)-344(in)-345(the)-344(United)-344(States,)-368(we)]TJ 0 -13.5492 Td[(do)-332(not)-331(claim)-332(a)-331(right)-332(to)-332(prevent)-331(you)-332(from)-331(copying,)-352(distributing,)]TJ 0 -13.5492 Td[(performing,)-231(displaying)-226(or)-226(creating)-226(derivative)-226(works)-226(based)-225(on)-226(the)]TJ 0 -13.5492 Td[(work)-232(as)-231(long)-232(as)-231(all)-232(references)-231(to)-232(Project)-231(Gutenberg)-232(are)-231(removed.)]TJ 0 -13.5492 Td[(Of)-187(course,)-200(we)-188(hope)-187(that)-188(you)-187(will)-188(support)-187(the)-188(Project)-187(Gutenberg)]TJ/F22 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(mission)-334(of)-334(promoting)-334(free)-335(access)-334(to)-334(electronic)-334(works)-334(by)-334(freely)]TJ 0 -13.5492 Td[(sharing)-212(Project)-211(Gutenberg)]TJ/F22 10.9091 Tf 113.6846 0 Td[(")]TJ/F16 10.9091 Tf 12.9988 0 Td[(works)-212(in)-211(compliance)-212(with)-211(the)-212(terms)]TJ -126.6834 -13.5492 Td[(of)-441(this)-441(agreement)-441(for)-441(keeping)-441(the)-441(Project)-440(Gutenberg)]TJ/F22 10.9091 Tf 241.4996 0 Td[(")]TJ/F16 10.9091 Tf 15.5011 0 Td[(name)]TJ -257.0007 -13.5492 Td[(associated)-262(with)-262(the)-262(work.)-286(You)-262(can)-262(easily)-262(comply)-262(with)-262(the)-262(terms)]TJ 0 -13.5492 Td[(of)-283(this)-284(agreement)-283(by)-283(keeping)-284(this)-283(work)-283(in)-283(the)-284(same)-283(format)-283(with)]TJ 0 -13.5492 Td[(its)-287(attached)-287(full)-287(Project)-287(Gutenberg)]TJ/F22 10.9091 Tf 151.2842 0 Td[(")]TJ/F16 10.9091 Tf 13.8212 0 Td[(License)-287(when)-287(you)-287(share)-287(it)]TJ -165.1054 -13.5492 Td[(without)-250(charge)-250(with)-250(others.)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
99 0 obj <<
/Type /Page
/Contents 100 0 R
/Resources 98 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 106 0 R
/Annots [ 102 0 R 103 0 R ]
>> endobj
102 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [229.5147 420.1848 244.9728 429.9048]
/Subtype /Link
/A << /S /GoTo /D (pglicense1C) >>
>> endobj
103 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [93.1133 365.988 107.9605 375.708]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E) >>
>> endobj
101 0 obj <<
/D [99 0 R /XYZ 46.7715 529.134 null]
>> endobj
104 0 obj <<
/D [99 0 R /XYZ 46.7715 354.098 null]
>> endobj
105 0 obj <<
/D [99 0 R /XYZ 46.7715 66.142 null]
>> endobj
98 0 obj <<
/Font << /F16 6 0 R /F21 82 0 R /F22 84 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
110 0 obj <<
/Length 3495      
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(16)-21447(Measles)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 13.1507 Tf 93.5434 518.1751 Td[(1.D.)]TJ/F16 10.9091 Tf 0 -29.3501 Td[(The)-468(copyright)-467(laws)-468(of)-467(the)-468(place)-467(where)-468(you)-467(are)-468(located)-467(also)]TJ 0 -13.5492 Td[(govern)-267(what)-268(you)-267(can)-267(do)-268(with)-267(this)-267(work.)-302(Copyright)-268(laws)-267(in)-267(most)]TJ 0 -13.5492 Td[(countries)-366(are)-366(in)-366(a)-366(constant)-366(state)-366(of)-366(change.)-598(If)-366(you)-366(are)-366(outside)]TJ 0 -13.5492 Td[(the)-394(United)-394(States,)-430(check)-395(the)-394(laws)-394(of)-394(your)-394(country)-394(in)-394(addition)]TJ 0 -13.5492 Td[(to)-439(the)-440(terms)-439(of)-439(this)-439(agreement)-440(before)-439(downloading,)-486(copying,)]TJ 0 -13.5492 Td[(displaying,)-243(performing,)-243(distributing)-241(or)-240(creating)-241(derivative)-241(works)]TJ 0 -13.5492 Td[(based)-268(on)-269(this)-268(work)-269(or)-268(any)-269(other)-268(Project)-269(Gutenberg)]TJ/F22 10.9091 Tf 221.5701 0 Td[(")]TJ/F16 10.9091 Tf 13.6194 0 Td[(work.)-305(The)]TJ -235.1895 -13.5492 Td[(Foundation)-344(makes)-343(no)-344(representations)-343(concerning)-344(the)-343(copyright)]TJ 0 -13.5492 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.1507 Tf 0 -45.9739 Td[(1.E.)]TJ/F16 10.9091 Tf 0 -29.3501 Td[(Unless)-250(you)-250(have)-250(removed)-250(all)-250(references)-250(to)-250(Project)-250(Gutenberg:)]TJ 0 -27.1683 Td[(1.E.1.)]TJ 0 -27.1684 Td[(The)-259(following)-260(sentence,)-261(with)-260(active)-259(links)-259(to,)-262(or)-259(other)-259(immediate)]TJ 0 -13.5492 Td[(access)-465(to,)-520(the)-465(full)-466(Project)-465(Gutenberg)]TJ/F22 10.9091 Tf 170.488 0 Td[(")]TJ/F16 10.9091 Tf 15.7685 0 Td[(License)-465(must)-466(appear)]TJ -186.2565 -13.5492 Td[(prominently)-274(whenever)-275(any)-274(copy)-274(of)-275(a)-274(Project)-274(Gutenberg)]TJ/F22 10.9091 Tf 244.5283 0 Td[(")]TJ/F16 10.9091 Tf 13.6833 0 Td[(work)]TJ -258.2116 -13.5492 Td[(\050any)-421(work)-422(on)-421(which)-421(the)-422(phrase)]TJ/F21 10.9091 Tf 148.7542 0 Td[(\034)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Project)-421(Gutenberg)]TJ/F21 10.9091 Tf 81.5487 0 Td[(\035)]TJ/F16 10.9091 Tf 9.4396 0 Td[(appears,)]TJ -244.5861 -13.5492 Td[(or)-346(with)-347(which)-346(the)-347(phrase)]TJ/F21 10.9091 Tf 115.8485 0 Td[(\034)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Project)-346(Gutenberg)]TJ/F21 10.9091 Tf 80.7326 0 Td[(\035)]TJ/F16 10.9091 Tf 8.6235 0 Td[(is)-346(associated\051)-347(is)]TJ -210.0482 -13.5492 Td[(accessed,)-250(displayed,)-250(performed,)-250(viewed,)-250(copied)-250(or)-250(distributed:)]TJ/F16 9.8629 Tf 19.6364 -25.3499 Td[(This)-432(eBook)-432(is)-432(for)-432(the)-433(use)-432(of)-432(anyone)-432(anywhere)-432(at)-432(no)-432(cost)]TJ 0 -12.8218 Td[(and)-345(with)-344(almost)-345(no)-344(restrictions)-345(whatsoever.)-534(You)-345(may)-344(copy)]TJ 0 -12.8219 Td[(it,)-437(give)-400(it)-400(away)-400(or)-400(re-use)-400(it)-400(under)-400(the)-399(terms)-400(of)-400(the)-400(Project)]TJ 0 -12.8218 Td[(Gutenberg)-476(License)-476(included)-476(with)-476(this)-475(eBook)-476(or)-476(online)-476(at)]TJ 0 -12.8218 Td[(http://www.gutenberg.org)]TJ/F16 10.9091 Tf -19.6364 -40.2455 Td[(1.E.2.)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 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.5276 595.2756]
/Parent 106 0 R
/Annots [ 112 0 R ]
>> endobj
112 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [113.1798 104.2374 215.636 113.0252]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org) >> 
>> endobj
107 0 obj <<
/D [109 0 R /XYZ 93.5434 364.9761 null]
>> endobj
111 0 obj <<
/D [109 0 R /XYZ 93.5434 302.7292 null]
>> endobj
113 0 obj <<
/D [109 0 R /XYZ 93.5434 91.1602 null]
>> endobj
108 0 obj <<
/Font << /F16 6 0 R /F22 84 0 R /F21 82 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
116 0 obj <<
/Length 3871      
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 548.9335 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(17)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(If)-295(an)-295(individual)-295(Project)-295(Gutenberg)]TJ/F22 10.9091 Tf 151.6385 0 Td[(")]TJ/F16 10.9091 Tf 13.9096 0 Td[(electronic)-295(work)-295(is)-295(derived)]TJ -165.5481 -13.5492 Td[(from)-228(the)-228(public)-229(domain)-228(\050does)-228(not)-228(contain)-229(a)-228(notice)-228(indicating)-228(that)]TJ 0 -13.5492 Td[(it)-184(is)-183(posted)-184(with)-183(permission)-184(of)-183(the)-184(copyright)-183(holder\051,)-197(the)-184(work)-183(can)]TJ 0 -13.5492 Td[(be)-256(copied)-256(and)-256(distributed)-256(to)-256(anyone)-256(in)-256(the)-256(United)-255(States)-256(without)]TJ 0 -13.5492 Td[(paying)-230(any)-230(fees)-230(or)-230(charges.)-243(If)-230(you)-230(are)-230(redistributing)-230(or)-230(providing)]TJ 0 -13.5492 Td[(access)-248(to)-248(a)-248(work)-248(with)-248(the)-248(phrase)]TJ/F21 10.9091 Tf 143.744 0 Td[(\034)]TJ/F16 10.9091 Tf 4.8437 0 Td[(Project)-248(Gutenberg)]TJ/F21 10.9091 Tf 79.6573 0 Td[(\035)]TJ/F16 10.9091 Tf 7.5484 0 Td[(associated)]TJ -235.7934 -13.5492 Td[(with)-410(or)-411(appearing)-410(on)-410(the)-411(work,)-450(you)-410(must)-411(comply)-410(either)-410(with)]TJ 0 -13.5492 Td[(the)-424(requirements)-425(of)-424(paragraphs)-425(1.E.1)-424(through)-425(1.E.7)-424(or)-424(obtain)]TJ 0 -13.5492 Td[(permission)-280(for)-281(the)-280(use)-281(of)-280(the)-281(work)-280(and)-281(the)-280(Project)-280(Gutenberg)]TJ/F22 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 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.6077 Td[(1.E.3.)]TJ 0 -26.2584 Td[(If)-344(an)-343(individual)-344(Project)-343(Gutenberg)]TJ/F22 10.9091 Tf 153.7548 0 Td[(")]TJ/F16 10.9091 Tf 14.4388 0 Td[(electronic)-344(work)-343(is)-344(posted)]TJ -168.1936 -13.5492 Td[(with)-351(the)-350(permission)-351(of)-351(the)-351(copyright)-350(holder,)-376(your)-351(use)-351(and)-350(dis-)]TJ 0 -13.5492 Td[(tribution)-257(must)-258(comply)-257(with)-257(both)-258(paragraphs)-257(1.E.1)-257(through)-257(1.E.7)]TJ 0 -13.5492 Td[(and)-301(any)-301(additional)-301(terms)-301(imposed)-301(by)-301(the)-301(copyright)-301(holder.)-402(Ad-)]TJ 0 -13.5492 Td[(ditional)-256(terms)-256(will)-255(be)-256(linked)-256(to)-256(the)-256(Project)-256(Gutenberg)]TJ/F22 10.9091 Tf 233.2208 0 Td[(")]TJ/F16 10.9091 Tf 13.4817 0 Td[(License)]TJ -246.7025 -13.5492 Td[(for)-267(all)-267(works)-267(posted)-268(with)-267(the)-267(permission)-267(of)-267(the)-267(copyright)-267(holder)]TJ 0 -13.5492 Td[(found)-250(at)-250(the)-250(beginning)-250(of)-250(this)-250(work.)]TJ 0 -38.6077 Td[(1.E.4.)]TJ 0 -26.2584 Td[(Do)-275(not)-275(unlink)-275(or)-274(detach)-275(or)-275(remove)-275(the)-275(full)-275(Project)-274(Gutenberg)]TJ/F22 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(License)-330(terms)-329(from)-330(this)-329(work,)-350(or)-329(any)-330(files)-330(containing)-329(a)-330(part)-329(of)]TJ 0 -13.5492 Td[(this)-185(work)-185(or)-185(any)-185(other)-185(work)-185(associated)-185(with)-185(Project)-185(Gutenberg)]TJ/F22 10.9091 Tf 267.2116 0 Td[(")]TJ/F16 10.9091 Tf 10.6909 0 Td[(.)]TJ -277.9025 -38.6077 Td[(1.E.5.)]TJ 0 -26.2584 Td[(Do)-457(not)-457(copy,)-508(display,)-509(perform,)-508(distribute)-457(or)-457(redistribute)-456(this)]TJ 0 -13.5492 Td[(electronic)-441(work,)-488(or)-441(any)-441(part)-441(of)-440(this)-441(electronic)-441(work,)-488(without)]TJ 0 -13.5492 Td[(prominently)-258(displaying)-257(the)-258(sentence)-258(set)-257(forth)-258(in)-258(paragraph)-257(1.E.1)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
115 0 obj <<
/Type /Page
/Contents 116 0 R
/Resources 114 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 106 0 R
/Annots [ 117 0 R 118 0 R 120 0 R 123 0 R ]
>> endobj
117 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [192.5246 420.9525 215.5536 430.6725]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
118 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [206.1203 393.8541 229.1493 403.5741]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
120 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [241.7911 301.8896 264.8201 311.6096]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
123 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [304.3722 63.7638 327.4012 73.4838]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
119 0 obj <<
/D [115 0 R /XYZ 46.7715 381.5049 null]
>> endobj
121 0 obj <<
/D [115 0 R /XYZ 46.7715 235.3436 null]
>> endobj
122 0 obj <<
/D [115 0 R /XYZ 46.7715 143.3791 null]
>> endobj
114 0 obj <<
/Font << /F16 6 0 R /F22 84 0 R /F21 82 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
126 0 obj <<
/Length 4058      
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(18)-21447(Measles)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 518.1751 Td[(with)-394(active)-395(links)-394(or)-395(immediate)-394(access)-394(to)-395(the)-394(full)-395(terms)-394(of)-394(the)]TJ 0 -13.5492 Td[(Project)-250(Gutenberg)]TJ/F22 10.9091 Tf 79.6799 0 Td[(")]TJ/F16 10.9091 Tf 13.4181 0 Td[(License.)]TJ -93.098 -34.5909 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)-475(binary,)]TJ 0 -13.5492 Td[(compressed,)-287(marked)-280(up,)-287(nonproprietary)-280(or)-280(proprietary)-279(form,)-287(in-)]TJ 0 -13.5492 Td[(cluding)-234(any)-234(word)-233(processing)-234(or)-234(hypertext)-234(form.)-245(However,)-237(if)-233(you)]TJ 0 -13.5492 Td[(provide)-318(access)-318(to)-317(or)-318(distribute)-318(copies)-318(of)-318(a)-318(Project)-317(Gutenberg)]TJ/F22 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(work)-462(in)-461(a)-462(format)-462(other)-462(than)]TJ/F21 10.9091 Tf 136.2594 0 Td[(\034)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Plain)-462(Vanilla)-461(ASCII)]TJ/F21 10.9091 Tf 93.1033 0 Td[(\035)]TJ/F16 10.9091 Tf 9.8809 0 Td[(or)-462(other)]TJ -244.0872 -13.5492 Td[(format)-284(used)-284(in)-284(the)-284(official)-284(version)-284(posted)-284(on)-284(the)-283(official)-284(Project)]TJ 0 -13.5492 Td[(Gutenberg)]TJ/F22 10.9091 Tf 46.0472 0 Td[(")]TJ/F16 10.9091 Tf 13.8335 0 Td[(web)-288(site)-288(\050http://www.gutenberg.org\051,)-298(you)-288(must,)-297(at)]TJ -59.8807 -13.5492 Td[(no)-357(additional)-357(cost,)-383(fee)-357(or)-357(expense)-357(to)-357(the)-357(user,)-384(provide)-357(a)-356(copy,)]TJ 0 -13.5492 Td[(a)-380(means)-380(of)-379(exporting)-380(a)-380(copy,)-412(or)-380(a)-380(means)-380(of)-380(obtaining)-380(a)-379(copy)]TJ 0 -13.5492 Td[(upon)-313(request,)-328(of)-313(the)-313(work)-313(in)-312(its)-313(original)]TJ/F21 10.9091 Tf 181.0894 0 Td[(\034)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Plain)-313(Vanilla)-313(ASCII)]TJ/F21 10.9091 Tf 89.8531 0 Td[(\035)]TJ/F16 10.9091 Tf -275.7861 -13.5492 Td[(or)-248(other)-247(form.)-250(Any)-247(alternate)-248(format)-248(must)-247(include)-248(the)-248(full)-247(Project)]TJ 0 -13.5492 Td[(Gutenberg)]TJ/F22 10.9091 Tf 46.0472 0 Td[(")]TJ/F16 10.9091 Tf 13.4182 0 Td[(License)-250(as)-250(specified)-250(in)-250(paragraph)-250(1.E.1.)]TJ -59.4654 -34.5909 Td[(1.E.7.)]TJ 0 -24.0701 Td[(Do)-450(not)-450(charge)-449(a)-450(fee)-450(for)-450(access)-449(to,)-500(viewing,)-500(displaying,)-499(per-)]TJ 0 -13.5492 Td[(forming,)-240(copying)-237(or)-237(distributing)-238(any)-237(Project)-237(Gutenberg)]TJ/F22 10.9091 Tf 240.6886 0 Td[(")]TJ/F16 10.9091 Tf 13.2793 0 Td[(works)]TJ -253.9679 -13.5492 Td[(unless)-250(you)-250(comply)-250(with)-250(paragraph)-250(1.E.8)-250(or)-250(1.E.9.)]TJ 0 -34.5909 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)-439(providing)]TJ 0 -13.5492 Td[(access)-361(to)-361(or)-361(distributing)-361(Project)-361(Gutenberg)]TJ/F22 10.9091 Tf 192.388 0 Td[(")]TJ/F16 10.9091 Tf 14.6282 0 Td[(electronic)-361(works)]TJ -207.0162 -13.5492 Td[(provided)-250(that)]TJ/F21 10.9091 Tf 12.5455 -18.6155 Td[(")]TJ/F16 10.9091 Tf 9.2727 0 Td[(You)-218(pay)-218(a)-219(royalty)-218(fee)-218(of)-218(20%)-218(of)-219(the)-218(gross)-218(profits)-218(you)-218(derive)]TJ 0 -13.5492 Td[(from)-212(the)-211(use)-212(of)-212(Project)-211(Gutenberg)]TJ/F22 10.9091 Tf 146.6659 0 Td[(")]TJ/F16 10.9091 Tf 13.0001 0 Td[(works)-212(calculated)-211(using)]TJ -159.666 -13.5492 Td[(the)-211(method)-210(you)-211(already)-211(use)-211(to)-210(calculate)-211(your)-211(applicable)-210(tax-)]TJ 0 -13.5492 Td[(es.)-240(The)-221(fee)-220(is)-220(owed)-221(to)-220(the)-221(owner)-220(of)-221(the)-220(Project)-220(Gutenberg)]TJ/F22 10.9091 Tf 248.1207 0 Td[(")]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
125 0 obj <<
/Type /Page
/Contents 126 0 R
/Resources 124 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 106 0 R
/Annots [ 128 0 R 130 0 R ]
>> endobj
128 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [301.1431 294.5456 326.8994 304.2656]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
130 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [246.554 208.7863 269.5831 218.5062]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
127 0 obj <<
/D [125 0 R /XYZ 93.5434 491.7269 null]
>> endobj
129 0 obj <<
/D [125 0 R /XYZ 93.5434 284.0248 null]
>> endobj
97 0 obj <<
/D [125 0 R /XYZ 93.5434 198.2654 null]
>> endobj
124 0 obj <<
/Font << /F16 6 0 R /F22 84 0 R /F21 82 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
133 0 obj <<
/Length 4250      
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 548.9335 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(19)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 68.5897 518.1751 Td[(trademark,)-296(but)-287(he)-287(has)-286(agreed)-287(to)-287(donate)-287(royalties)-287(under)-286(this)]TJ 0 -13.5492 Td[(paragraph)-263(to)-263(the)-263(Project)-263(Gutenberg)-263(Literary)-263(Archive)-263(Foun-)]TJ 0 -13.5492 Td[(dation.)-842(Royalty)-448(payments)-447(must)-448(be)-447(paid)-448(within)-447(60)-447(days)]TJ 0 -13.5492 Td[(following)-365(each)-365(date)-365(on)-366(which)-365(you)-365(prepare)-365(\050or)-365(are)-365(legally)]TJ 0 -13.5492 Td[(required)-473(to)-473(prepare\051)-473(your)-473(periodic)-473(tax)-473(returns.)-919(Royalty)]TJ 0 -13.5492 Td[(payments)-284(should)-284(be)-284(clearly)-284(marked)-284(as)-284(such)-284(and)-284(sent)-283(to)-284(the)]TJ 0 -13.5492 Td[(Project)-350(Gutenberg)-350(Literary)-351(Archive)-350(Foundation)-350(at)-350(the)-350(ad-)]TJ 0 -13.5492 Td[(dress)-312(specified)-312(in)-312(Section)-312(4,)]TJ/F21 10.9091 Tf 128.3829 0 Td[(\034)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Information)-312(about)-312(donations)]TJ -133.2265 -13.5492 Td[(to)-250(the)-250(Project)-250(Gutenberg)-250(Literary)-250(Archive)-250(Foundation.)]TJ/F21 10.9091 Tf 237.8395 0 Td[(\035)]TJ/F16 10.9091 Tf -237.8395 -13.5492 Td[(You)-425(provide)-425(a)-425(full)-424(refund)-425(of)-425(any)-425(money)-425(paid)-425(by)-425(a)-424(user)]TJ 0 -13.5492 Td[(who)-339(notifies)-339(you)-340(in)-339(writing)-339(\050or)-339(by)-340(e-mail\051)-339(within)-339(30)-339(days)]TJ 0 -13.5492 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)-343(full)]TJ 0 -13.5492 Td[(Project)-235(Gutenberg)]TJ/F22 10.9091 Tf 79.5139 0 Td[(")]TJ/F16 10.9091 Tf 13.2522 0 Td[(License.)-245(You)-235(must)-234(require)-235(such)-235(a)-235(user)]TJ -92.7661 -13.5492 Td[(to)-324(return)-324(or)-323(destroy)-324(all)-324(copies)-324(of)-323(the)-324(works)-324(possessed)-324(in)-323(a)]TJ 0 -13.5492 Td[(physical)-322(medium)-321(and)-322(discontinue)-321(all)-322(use)-322(of)-321(and)-322(all)-321(access)]TJ 0 -13.5492 Td[(to)-250(other)-250(copies)-250(of)-250(Project)-250(Gutenberg)]TJ/F22 10.9091 Tf 158.4542 0 Td[(")]TJ/F16 10.9091 Tf 13.4182 0 Td[(works.)]TJ -171.8724 -13.5492 Td[(You)-427(provide,)-472(in)-427(accordance)-428(with)-427(paragraph)-427(1.F.3,)-472(a)-427(full)]TJ 0 -13.5492 Td[(refund)-215(of)-216(any)-215(money)-216(paid)-215(for)-216(a)-215(work)-216(or)-215(a)-216(replacement)-215(copy,)]TJ 0 -13.5492 Td[(if)-245(a)-246(defect)-245(in)-245(the)-246(electronic)-245(work)-245(is)-246(discovered)-245(and)-245(reported)]TJ 0 -13.5492 Td[(to)-250(you)-250(within)-250(90)-250(days)-250(of)-250(receipt)-250(of)-250(the)-250(work.)]TJ 0 -13.5492 Td[(You)-278(comply)-279(with)-278(all)-279(other)-278(terms)-279(of)-278(this)-279(agreement)-278(for)-278(free)]TJ 0 -13.5492 Td[(distribution)-250(of)-250(Project)-250(Gutenberg)]TJ/F22 10.9091 Tf 144.5342 0 Td[(")]TJ/F16 10.9091 Tf 13.4182 0 Td[(works.)]TJ -179.7706 -34.9004 Td[(1.E.9.)]TJ 0 -24.2248 Td[(If)-316(you)-315(wish)-316(to)-316(charge)-315(a)-316(fee)-316(or)-315(distribute)-316(a)-316(Project)-315(Gutenberg)]TJ/F22 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(electronic)-233(work)-233(or)-233(group)-234(of)-233(works)-233(on)-233(different)-233(terms)-233(than)-233(are)-233(set)]TJ 0 -13.5492 Td[(forth)-346(in)-347(this)-346(agreement,)-371(you)-346(must)-346(obtain)-347(permission)-346(in)-346(writing)]TJ 0 -13.5492 Td[(from)-161(both)-160(the)-161(Project)-160(Gutenberg)-161(Literary)-160(Archive)-161(Foundation)-160(and)]TJ 0 -13.5492 Td[(Michael)-287(Hart,)-297(the)-287(owner)-287(of)-287(the)-287(Project)-287(Gutenberg)]TJ/F22 10.9091 Tf 219.8537 0 Td[(")]TJ/F16 10.9091 Tf 13.8234 0 Td[(trademark.)]TJ -233.6771 -13.5492 Td[(Contact)-250(the)-250(Foundation)-250(as)-250(set)-250(forth)-250(in)-250(Section)-250(3)-250(below.)]TJ/F16 13.1507 Tf 0 -40.6288 Td[(1.F.)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
132 0 obj <<
/Type /Page
/Contents 133 0 R
/Resources 131 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 106 0 R
/Annots [ 134 0 R 135 0 R 136 0 R 138 0 R ]
>> endobj
134 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [149.0874 420.9634 327.4012 430.7052]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
135 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [46.7715 407.4033 311.2729 417.156]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
136 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [272.4411 299.0098 294.8701 308.7297]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
138 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [213.7347 106.629 254.6437 114.1126]
/Subtype /Link
/A << /S /GoTo /D (pglicense3) >>
>> endobj
137 0 obj <<
/D [132 0 R /XYZ 46.7715 220.5882 null]
>> endobj
139 0 obj <<
/D [132 0 R /XYZ 46.7715 95.9534 null]
>> endobj
131 0 obj <<
/Font << /F16 6 0 R /F21 82 0 R /F22 84 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
145 0 obj <<
/Length 3806      
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(20)-21447(Measles)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 518.1751 Td[(1.F.1.)]TJ 0 -25.7442 Td[(Project)-362(Gutenberg)-363(volunteers)-362(and)-363(employees)-362(expend)-362(consider-)]TJ 0 -13.5492 Td[(able)-318(effort)-318(to)-318(identify,)-336(do)-318(copyright)-318(research)-318(on,)-335(transcribe)-318(and)]TJ 0 -13.5492 Td[(proofread)-383(public)-383(domain)-382(works)-383(in)-383(creating)-383(the)-383(Project)-382(Guten-)]TJ 0 -13.5492 Td[(berg)]TJ/F22 10.9091 Tf 19.3854 0 Td[(")]TJ/F16 10.9091 Tf 15.0968 0 Td[(collection.)-712(Despite)-403(these)-404(efforts,)-443(Project)-404(Gutenberg)]TJ/F22 10.9091 Tf 235.4566 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(electronic)-261(works,)-265(and)-261(the)-262(medium)-261(on)-262(which)-261(they)-262(may)-261(be)-261(stored,)]TJ 0 -13.5492 Td[(may)-312(contain)]TJ/F21 10.9091 Tf 57.7077 0 Td[(\034)]TJ/F16 10.9091 Tf 4.8436 0 Td[(Defects,)]TJ/F21 10.9091 Tf 36.0436 0 Td[(\035)]TJ/F16 10.9091 Tf 8.2466 0 Td[(such)-312(as,)-327(but)-312(not)-312(limited)-312(to,)-328(incomplete,)]TJ -106.8415 -13.5492 Td[(inaccurate)-395(or)-395(corrupt)-395(data,)-431(transcription)-395(errors,)-431(a)-395(copyright)-394(or)]TJ 0 -13.5492 Td[(other)-266(intellectual)-267(property)-266(infringement,)-271(a)-266(defective)-267(or)-266(damaged)]TJ 0 -13.5492 Td[(disk)-277(or)-277(other)-277(medium,)-284(a)-277(computer)-277(virus,)-283(or)-277(computer)-277(codes)-277(that)]TJ 0 -13.5492 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.7442 Td[(LIMITED)-451(WARRANTY,)-451(DISCLAIMER)-451(OF)-451(DAMAGES)]TJ/F21 10.9091 Tf 269.7206 0 Td[(\024)]TJ/F16 10.9091 Tf -269.7206 -13.5492 Td[(Except)-334(for)-334(the)]TJ/F21 10.9091 Tf 67.2814 0 Td[(\034)]TJ/F16 10.9091 Tf 4.8437 0 Td[(Right)-334(of)-334(Replacement)-334(or)-335(Refund)]TJ/F21 10.9091 Tf 146.0794 0 Td[(\035)]TJ/F16 10.9091 Tf 8.489 0 Td[(described)-334(in)]TJ -226.6935 -13.5492 Td[(paragraph)-328(1.F.3,)-347(the)-328(Project)-327(Gutenberg)-328(Literary)-328(Archive)-327(Foun-)]TJ 0 -13.5492 Td[(dation,)-224(the)-218(owner)-218(of)-217(the)-218(Project)-218(Gutenberg)]TJ/F22 10.9091 Tf 184.2848 0 Td[(")]TJ/F16 10.9091 Tf 13.0661 0 Td[(trademark,)-224(and)-218(any)]TJ -197.3509 -13.5492 Td[(other)-361(party)-361(distributing)-361(a)-361(Project)-361(Gutenberg)]TJ/F22 10.9091 Tf 196.6316 0 Td[(")]TJ/F16 10.9091 Tf 14.6282 0 Td[(electronic)-361(work)]TJ -211.2598 -13.5492 Td[(under)-320(this)-319(agreement,)-337(disclaim)-320(all)-319(liability)-320(to)-319(you)-320(for)-319(damages,)]TJ 0 -13.5492 Td[(costs)-316(and)-315(expenses,)-333(including)-315(legal)-316(fees.)-447(YOU)-316(AGREE)-315(THAT)]TJ 0 -13.5492 Td[(YOU)-394(HAVE)-394(NO)-395(REMEDIES)-394(FOR)-394(NEGLIGENCE,)-394(STRICT)]TJ 0 -13.5492 Td[(LIABILITY,)-450(BREACH)-449(OF)-450(WARRANTY)-449(OR)-450(BREACH)-449(OF)]TJ 0 -13.5492 Td[(CONTRACT)-234(EXCEPT)-234(THOSE)-234(PROVIDED)-234(IN)-233(PARAGRAPH)]TJ 0 -13.5492 Td[(F3.)-298(YOU)-267(AGREE)-266(THAT)-266(THE)-266(FOUNDATION,)-266(THE)-266(TRADE-)]TJ 0 -13.5492 Td[(MARK)-367(OWNER,)-366(AND)-367(ANY)-366(DISTRIBUTOR)-367(UNDER)-366(THIS)]TJ 0 -13.5492 Td[(AGREEMENT)-376(WILL)-375(NOT)-376(BE)-376(LIABLE)-375(TO)-376(YOU)-376(FOR)-375(AC-)]TJ 0 -13.5492 Td[(TUAL,)-210(DIRECT,)-210(INDIRECT,)-210(CONSEQUENTIAL,)-209(PUNITIVE)]TJ 0 -13.5492 Td[(OR)-223(INCIDENTAL)-223(DAMAGES)-224(EVEN)-223(IF)-223(YOU)-223(GIVE)-223(NOTICE)]TJ 0 -13.5492 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.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
144 0 obj <<
/Type /Page
/Contents 145 0 R
/Resources 143 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 106 0 R
/Annots [ 148 0 R ]
>> endobj
148 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [93.5434 277.5854 163.162 287.3054]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
146 0 obj <<
/D [144 0 R /XYZ 93.5434 529.134 null]
>> endobj
147 0 obj <<
/D [144 0 R /XYZ 93.5434 356.1721 null]
>> endobj
141 0 obj <<
/D [144 0 R /XYZ 93.5434 91.7444 null]
>> endobj
143 0 obj <<
/Font << /F16 6 0 R /F22 84 0 R /F21 82 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
151 0 obj <<
/Length 3693      
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 548.9335 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(21)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(LIMITED)-421(RIGHT)-421(OF)-422(REPLACEMENT)-421(OR)-421(REFUND)]TJ/F21 10.9091 Tf 257.8587 0 Td[(\024)]TJ/F16 10.9091 Tf 15.5056 0 Td[(If)]TJ -273.3643 -13.5492 Td[(you)-434(discover)-434(a)-434(defect)-434(in)-434(this)-434(electronic)-434(work)-434(within)-433(90)-434(days)]TJ 0 -13.5492 Td[(of)-335(receiving)-334(it,)-356(you)-335(can)-335(receive)-334(a)-335(refund)-335(of)-334(the)-335(money)-335(\050if)-334(any\051)]TJ 0 -13.5492 Td[(you)-369(paid)-369(for)-369(it)-370(by)-369(sending)-369(a)-369(written)-369(explanation)-369(to)-369(the)-369(person)]TJ 0 -13.5492 Td[(you)-430(received)-430(the)-431(work)-430(from.)-790(If)-430(you)-431(received)-430(the)-430(work)-430(on)-430(a)]TJ 0 -13.5492 Td[(physical)-231(medium,)-236(you)-231(must)-231(return)-232(the)-231(medium)-232(with)-231(your)-231(written)]TJ 0 -13.5492 Td[(explanation.)-706(The)-402(person)-402(or)-402(entity)-402(that)-402(provided)-402(you)-401(with)-402(the)]TJ 0 -13.5492 Td[(defective)-301(work)-301(may)-301(elect)-300(to)-301(provide)-301(a)-301(replacement)-301(copy)-301(in)-300(lieu)]TJ 0 -13.5492 Td[(of)-305(a)-305(refund.)-416(If)-305(you)-306(received)-305(the)-305(work)-305(electronically,)-319(the)-305(person)]TJ 0 -13.5492 Td[(or)-348(entity)-347(providing)-348(it)-347(to)-348(you)-347(may)-348(choose)-347(to)-348(give)-347(you)-348(a)-347(second)]TJ 0 -13.5492 Td[(opportunity)-226(to)-225(receive)-226(the)-226(work)-226(electronically)-225(in)-226(lieu)-226(of)-226(a)-225(refund.)]TJ 0 -13.5492 Td[(If)-315(the)-315(second)-315(copy)-315(is)-315(also)-315(defective,)-331(you)-315(may)-315(demand)-315(a)-314(refund)]TJ 0 -13.5492 Td[(in)-250(writing)-250(without)-250(further)-250(opportunities)-250(to)-250(fix)-250(the)-250(problem.)]TJ 0 -37.4663 Td[(1.F.4.)]TJ 0 -25.6244 Td[(Except)-258(for)-258(the)-259(limited)-258(right)-258(of)-258(replacement)-259(or)-258(refund)-258(set)-258(forth)-258(in)]TJ 0 -13.5492 Td[(paragraph)-225(1.F.3,)-230(this)-225(work)-226(is)-225(provided)-225(to)-225(you)-225('AS-IS,')-225(WITH)-225(NO)]TJ 0 -13.5492 Td[(OTHER)-346(WARRANTIES)-346(OF)-345(ANY)-346(KIND,)-346(EXPRESS)-346(OR)-345(IM-)]TJ 0 -13.5492 Td[(PLIED,)-172(INCLUDING)-173(BUT)-172(NOT)-173(LIMITED)-172(TO)-172(WARRANTIES)]TJ 0 -13.5492 Td[(OF)-190(MERCHANTIBILITY)-190(OR)-190(FITNESS)-190(FOR)-190(ANY)-190(PURPOSE.)]TJ 0 -37.4663 Td[(1.F.5.)]TJ 0 -25.6244 Td[(Some)-414(states)-414(do)-414(not)-415(allow)-414(disclaimers)-414(of)-414(certain)-414(implied)-414(war-)]TJ 0 -13.5492 Td[(ranties)-220(or)-220(the)-220(exclusion)-220(or)-220(limitation)-220(of)-220(certain)-220(types)-220(of)-220(damages.)]TJ 0 -13.5492 Td[(If)-217(any)-217(disclaimer)-217(or)-218(limitation)-217(set)-217(forth)-217(in)-217(this)-217(agreement)-217(violates)]TJ 0 -13.5492 Td[(the)-302(law)-302(of)-303(the)-302(state)-302(applicable)-302(to)-303(this)-302(agreement,)-315(the)-302(agreement)]TJ 0 -13.5492 Td[(shall)-377(be)-377(interpreted)-377(to)-377(make)-377(the)-377(maximum)-377(disclaimer)-377(or)-377(limi-)]TJ 0 -13.5492 Td[(tation)-367(permitted)-366(by)-367(the)-366(applicable)-367(state)-366(law.)-600(The)-367(invalidity)-366(or)]TJ 0 -13.5492 Td[(unenforceability)-192(of)-192(any)-192(provision)-192(of)-192(this)-192(agreement)-192(shall)-191(not)-192(void)]TJ 0 -13.5492 Td[(the)-250(remaining)-250(provisions.)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 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.5276 595.2756]
/Parent 156 0 R
/Annots [ 153 0 R ]
>> endobj
153 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [46.7715 276.5666 115.2712 286.2866]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
152 0 obj <<
/D [150 0 R /XYZ 46.7715 341.3646 null]
>> endobj
154 0 obj <<
/D [150 0 R /XYZ 46.7715 226.3135 null]
>> endobj
155 0 obj <<
/D [150 0 R /XYZ 46.7715 66.142 null]
>> endobj
149 0 obj <<
/Font << /F16 6 0 R /F21 82 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
159 0 obj <<
/Length 3862      
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(22)-21447(Measles)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 518.1751 Td[(1.F.6.)]TJ 0 -27.8765 Td[(INDEMNITY)]TJ/F21 10.9091 Tf 65.981 0 Td[(\024)]TJ/F16 10.9091 Tf 15.0916 0 Td[(You)-383(agree)-384(to)-383(indemnify)-384(and)-383(hold)-383(the)-384(Foun-)]TJ -81.0726 -13.5492 Td[(dation,)-554(the)-494(trademark)-493(owner,)-555(any)-493(agent)-494(or)-493(employee)-494(of)-493(the)]TJ 0 -13.5492 Td[(Foundation,)-494(anyone)-445(providing)-445(copies)-445(of)-445(Project)-445(Gutenberg)]TJ/F22 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(electronic)-436(works)-436(in)-437(accordance)-436(with)-436(this)-436(agreement,)-483(and)-436(any)]TJ 0 -13.5492 Td[(volunteers)-266(associated)-266(with)-266(the)-266(production,)-270(promotion)-266(and)-265(distri-)]TJ 0 -13.5492 Td[(bution)-307(of)-308(Project)-307(Gutenberg)]TJ/F22 10.9091 Tf 123.9806 0 Td[(")]TJ/F16 10.9091 Tf 14.0432 0 Td[(electronic)-307(works,)-322(harmless)-307(from)]TJ -138.0238 -13.5492 Td[(all)-336(liability,)-357(costs)-336(and)-336(expenses,)-358(including)-336(legal)-336(fees,)-357(that)-336(arise)]TJ 0 -13.5492 Td[(directly)-263(or)-263(indirectly)-263(from)-264(any)-263(of)-263(the)-263(following)-263(which)-263(you)-263(do)-263(or)]TJ 0 -13.5492 Td[(cause)-188(to)-189(occur:)-219(\050a\051)-189(distribution)-188(of)-189(this)-188(or)-188(any)-189(Project)-188(Gutenberg)]TJ/F22 10.9091 Tf 269.9388 0 Td[(")]TJ/F16 10.9091 Tf -269.9388 -13.5492 Td[(work,)-413(\050b\051)-381(alteration,)-413(modification,)-414(or)-380(additions)-381(or)-381(deletions)-380(to)]TJ 0 -13.5492 Td[(any)-250(Project)-250(Gutenberg)]TJ/F22 10.9091 Tf 98.1598 0 Td[(")]TJ/F16 10.9091 Tf 13.4182 0 Td[(work,)-250(and)-250(\050c\051)-250(any)-250(Defect)-250(you)-250(cause.)]TJ/F16 15.7808 Tf -111.578 -53.2861 Td[(Section)-250(2.)]TJ/F16 13.1507 Tf 32.4217 -52.0487 Td[(Information)-260(about)-259(the)-260(Mission)-260(of)-260(Project)]TJ 73.6949 -17.0958 Td[(Gutenberg)]TJ/F22 13.1507 Tf 55.5089 0 Td[(")]TJ/F16 10.9091 Tf -161.6255 -30.0583 Td[(Project)-400(Gutenberg)]TJ/F22 10.9091 Tf 81.3185 0 Td[(")]TJ/F16 10.9091 Tf 15.0568 0 Td[(is)-400(synonymous)-400(with)-401(the)-400(free)-400(distribution)]TJ -96.3753 -13.5492 Td[(of)-284(electronic)-284(works)-284(in)-285(formats)-284(readable)-284(by)-284(the)-284(widest)-284(variety)-284(of)]TJ 0 -13.5492 Td[(computers)-351(including)-350(obsolete,)-376(old,)-376(middle-aged)-351(and)-351(new)-350(com-)]TJ 0 -13.5492 Td[(puters.)-328(It)-276(exists)-277(because)-276(of)-276(the)-276(efforts)-276(of)-276(hundreds)-276(of)-276(volunteers)]TJ 0 -13.5492 Td[(and)-250(donations)-250(from)-250(people)-250(in)-250(all)-250(walks)-250(of)-250(life.)]TJ 11.9552 -14.2329 Td[(Volunteers)-162(and)-163(financial)-162(support)-162(to)-163(provide)-162(volunteers)-162(with)-163(the)]TJ -11.9552 -13.5492 Td[(assistance)-198(they)-199(need,)-208(is)-199(critical)-198(to)-199(reaching)-198(Project)-198(Gutenberg)]TJ/F22 10.9091 Tf 263.7316 0 Td[(")]TJ/F16 10.9091 Tf 10.6909 0 Td[('s)]TJ -274.4225 -13.5492 Td[(goals)-309(and)-308(ensuring)-309(that)-309(the)-308(Project)-309(Gutenberg)]TJ/F22 10.9091 Tf 203.2042 0 Td[(")]TJ/F16 10.9091 Tf 14.0583 0 Td[(collection)-309(will)]TJ -217.2625 -13.5492 Td[(remain)-382(freely)-381(available)-382(for)-381(generations)-382(to)-382(come.)-644(In)-382(2001,)-414(the)]TJ 0 -13.5492 Td[(Project)-350(Gutenberg)-351(Literary)-350(Archive)-350(Foundation)-351(was)-350(created)-350(to)]TJ 0 -13.5492 Td[(provide)-302(a)-303(secure)-302(and)-302(permanent)-303(future)-302(for)-302(Project)-302(Gutenberg)]TJ/F22 10.9091 Tf 269.9389 0 Td[(")]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
158 0 obj <<
/Type /Page
/Contents 159 0 R
/Resources 157 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 156 0 R
>> endobj
160 0 obj <<
/D [158 0 R /XYZ 93.5434 338.7847 null]
>> endobj
157 0 obj <<
/Font << /F16 6 0 R /F21 82 0 R /F22 84 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
163 0 obj <<
/Length 3184      
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 548.9335 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(23)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(and)-301(future)-301(generations.)-404(To)-301(learn)-302(more)-301(about)-301(the)-301(Project)-301(Guten-)]TJ 0 -13.5492 Td[(berg)-487(Literary)-487(Archive)-487(Foundation)-487(and)-487(how)-487(your)-487(efforts)-487(and)]TJ 0 -13.5492 Td[(donations)-225(can)-225(help,)-229(see)-225(Sections)-225(3)-225(and)-224(4)-225(and)-225(the)-225(Foundation)-224(web)]TJ 0 -13.5492 Td[(page)-250(at)-250(http://www.pglaf.org.)]TJ/F16 15.7808 Tf 0 -46.0426 Td[(Section)-250(3.)]TJ/F16 13.1507 Tf 10.3759 -44.8051 Td[(Information)-253(about)-253(the)-253(Project)-253(Gutenberg)-254(Literary)]TJ 76.9859 -17.0959 Td[(Archive)-276(Foundation)]TJ/F16 10.9091 Tf -87.3618 -26.0947 Td[(The)-438(Project)-439(Gutenberg)-438(Literary)-438(Archive)-439(Foundation)-438(is)-438(a)-438(non)]TJ 0 -13.5492 Td[(profit)-511(501\050c\051\0503\051)-510(educational)-511(corporation)-511(organized)-511(under)-510(the)]TJ 0 -13.5492 Td[(laws)-248(of)-248(the)-248(state)-247(of)-248(Mississippi)-248(and)-248(granted)-248(tax)-248(exempt)-248(status)-247(by)]TJ 0 -13.5492 Td[(the)-319(Internal)-319(Revenue)-319(Service.)-457(The)-319(Foundation's)-319(EIN)-318(or)-319(federal)]TJ 0 -13.5492 Td[(tax)-337(identification)-336(number)-337(is)-337(64-6221541.)-509(Its)-337(501\050c\051\0503\051)-337(letter)-336(is)]TJ 0 -13.5492 Td[(posted)-228(at)-228(http://www.gutenberg.org/fundraising/pglaf.)-242(Contribu-)]TJ 0 -13.5492 Td[(tions)-313(to)-314(the)-313(Project)-313(Gutenberg)-314(Literary)-313(Archive)-313(Foundation)-313(are)]TJ 0 -13.5492 Td[(tax)-328(deductible)-329(to)-328(the)-328(full)-329(extent)-328(permitted)-328(by)-329(U.S.)-328(federal)-328(laws)]TJ 0 -13.5492 Td[(and)-250(your)-250(state's)-250(laws.)]TJ 11.9552 -13.5492 Td[(The)-214(Foundation's)-214(principal)-214(office)-213(is)-214(located)-214(at)-214(4557)-214(Melan)-214(Dr.)]TJ -11.9552 -13.5492 Td[(S.)-297(Fairbanks,)-309(AK,)-298(99712.,)-309(but)-297(its)-297(volunteers)-298(and)-297(employees)-297(are)]TJ 0 -13.5492 Td[(scattered)-343(throughout)-343(numerous)-343(locations.)-530(Its)-343(business)-343(office)-343(is)]TJ 0 -13.5492 Td[(located)-197(at)-197(809)-197(North)-197(1500)-197(West,)-208(Salt)-197(Lake)-197(City,)-208(UT)-197(84116,)-207(\050801\051)]TJ 0 -13.5492 Td[(596-1887,)-225(email)-218(business@pglaf.org.)-239(Email)-219(contact)-218(links)-218(and)-218(up)]TJ 0 -13.5492 Td[(to)-227(date)-227(contact)-227(information)-227(can)-227(be)-227(found)-227(at)-227(the)-227(Foundation's)-227(web)]TJ 0 -13.5492 Td[(site)-250(and)-250(official)-250(page)-250(at)-250(http://www.pglaf.org)]TJ 11.9552 -13.5492 Td[(For)-250(additional)-250(contact)-250(information:)]TJ/F16 9.8629 Tf 7.6812 -22.0946 Td[(Dr.)-250(Gregory)-250(B.)-250(Newby)]TJ 0 -12.8218 Td[(Chief)-250(Executive)-250(and)-250(Director)]TJ 0 -12.8218 Td[(gbnewby@pglaf.org)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
162 0 obj <<
/Type /Page
/Contents 163 0 R
/Resources 161 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 156 0 R
/Annots [ 164 0 R 165 0 R 166 0 R 167 0 R 168 0 R ]
>> endobj
164 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [189.0679 488.7094 194.5224 498.4185]
/Subtype /Link
/A << /S /GoTo /D (pglicense3) >>
>> endobj
165 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [215.179 488.7094 220.6336 498.4185]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
166 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [80.6987 475.1493 172.8149 484.8693]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.pglaf.org) >> 
>> endobj
167 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [88.1039 273.365 279.6017 283.085]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/pglaf) >> 
>> endobj
168 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [151.2913 137.8731 243.4074 147.5931]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.pglaf.org) >> 
>> endobj
142 0 obj <<
/D [162 0 R /XYZ 46.7715 464.7856 null]
>> endobj
161 0 obj <<
/Font << /F16 6 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
171 0 obj <<
/Length 3809      
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(24)-21447(Measles)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 15.7808 Tf 93.5434 518.1751 Td[(Section)-250(4.)]TJ/F16 13.1507 Tf 26.9981 -50.957 Td[(Information)-258(about)-258(Donations)-258(to)-258(the)-259(Project)]TJ 8.107 -17.0958 Td[(Gutenberg)-261(Literary)-260(Archive)-261(Foundation)]TJ/F16 10.9091 Tf -35.1051 -29.4518 Td[(Project)-329(Gutenberg)]TJ/F22 10.9091 Tf 80.5424 0 Td[(")]TJ/F16 10.9091 Tf 14.2806 0 Td[(depends)-329(upon)-329(and)-329(cannot)-329(survive)-329(without)]TJ -94.823 -13.5492 Td[(wide)-217(spread)-217(public)-217(support)-217(and)-217(donations)-217(to)-217(carry)-217(out)-217(its)-217(mission)]TJ 0 -13.5492 Td[(of)-334(increasing)-334(the)-334(number)-334(of)-334(public)-334(domain)-334(and)-334(licensed)-334(works)]TJ 0 -13.5492 Td[(that)-192(can)-193(be)-192(freely)-193(distributed)-192(in)-192(machine)-193(readable)-192(form)-192(accessible)]TJ 0 -13.5492 Td[(by)-261(the)-261(widest)-261(array)-261(of)-261(equipment)-261(including)-261(outdated)-261(equipment.)]TJ 0 -13.5492 Td[(Many)-303(small)-302(donations)-303(\050$1)-303(to)-302($5,000\051)-303(are)-303(particularly)-302(important)]TJ 0 -13.5492 Td[(to)-250(maintaining)-250(tax)-250(exempt)-250(status)-250(with)-250(the)-250(IRS.)]TJ 11.9552 -14.1115 Td[(The)-460(Foundation)-461(is)-460(committed)-461(to)-460(complying)-461(with)-460(the)-461(laws)]TJ -11.9552 -13.5492 Td[(regulating)-352(charities)-353(and)-352(charitable)-353(donations)-352(in)-353(all)-352(50)-353(states)-352(of)]TJ 0 -13.5492 Td[(the)-430(United)-429(States.)-789(Compliance)-430(requirements)-429(are)-430(not)-429(uniform)]TJ 0 -13.5492 Td[(and)-389(it)-389(takes)-389(a)-389(considerable)-389(effort,)-424(much)-389(paperwork)-389(and)-389(many)]TJ 0 -13.5492 Td[(fees)-353(to)-353(meet)-353(and)-353(keep)-354(up)-353(with)-353(these)-353(requirements.)-559(We)-353(do)-353(not)]TJ 0 -13.5492 Td[(solicit)-322(donations)-321(in)-322(locations)-322(where)-322(we)-321(have)-322(not)-322(received)-321(writ-)]TJ 0 -13.5492 Td[(ten)-417(confirmation)-418(of)-417(compliance.)-752(To)-418(SEND)-417(DONATIONS)-417(or)]TJ 0 -13.5492 Td[(determine)-309(the)-310(status)-309(of)-310(compliance)-309(for)-309(any)-310(particular)-309(state)-309(visit)]TJ 0 -13.5492 Td[(http://www.gutenberg.org/fundraising/donate)]TJ 11.9552 -14.1115 Td[(While)-305(we)-304(cannot)-305(and)-304(do)-305(not)-305(solicit)-304(contributions)-305(from)-305(states)]TJ -11.9552 -13.5492 Td[(where)-323(we)-323(have)-322(not)-323(met)-323(the)-323(solicitation)-323(requirements,)-341(we)-322(know)]TJ 0 -13.5492 Td[(of)-366(no)-365(prohibition)-366(against)-366(accepting)-365(unsolicited)-366(donations)-365(from)]TJ 0 -13.5492 Td[(donors)-250(in)-250(such)-250(states)-250(who)-250(approach)-250(us)-250(with)-250(offers)-250(to)-250(donate.)]TJ 11.9552 -14.1115 Td[(International)-237(donations)-237(are)-237(gratefully)-238(accepted,)-239(but)-237(we)-238(cannot)]TJ -11.9552 -13.5492 Td[(make)-327(any)-328(statements)-327(concerning)-327(tax)-328(treatment)-327(of)-327(donations)-327(re-)]TJ 0 -13.5492 Td[(ceived)-326(from)-326(outside)-327(the)-326(United)-326(States.)-479(U.S.)-326(laws)-326(alone)-326(swamp)]TJ 0 -13.5492 Td[(our)-250(small)-250(staff.)]TJ 11.9552 -14.1115 Td[(Please)-413(check)-413(the)-412(Project)-413(Gutenberg)-413(Web)-413(pages)-413(for)-413(current)]TJ -11.9552 -13.5492 Td[(donation)-376(methods)-375(and)-376(addresses.)-627(Donations)-376(are)-376(accepted)-376(in)-375(a)]TJ 0 -13.5492 Td[(number)-396(of)-395(other)-396(ways)-395(including)-396(checks,)-431(online)-396(payments)-395(and)]TJ
ET
1 0 0 1 93.5434 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
170 0 obj <<
/Type /Page
/Contents 171 0 R
/Resources 169 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 156 0 R
/Annots [ 172 0 R ]
>> endobj
172 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [93.5434 214.492 291.7067 224.212]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/donate) >> 
>> endobj
140 0 obj <<
/D [170 0 R /XYZ 93.5434 529.134 null]
>> endobj
169 0 obj <<
/Font << /F16 6 0 R /F22 84 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
175 0 obj <<
/Length 3354      
>>
stream
1 0 0 1 46.7715 548.9335 cm
0 g 0 G
1 0 0 1 -46.7715 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 548.9335 Td[(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(25)]TJ
ET
1 0 0 1 327.4012 548.9335 cm
0 g 0 G
1 0 0 1 -327.4012 -548.9335 cm
BT
/F16 10.9091 Tf 46.7715 518.1751 Td[(credit)-241(card)-241(donations.)-247(To)-241(donate,)-243(please)-241(visit:)-245(http://www.guten-)]TJ 0 -13.5492 Td[(berg.org/fundraising/donate)]TJ/F16 15.7808 Tf 0 -57.0314 Td[(Section)-250(5.)]TJ/F16 13.1507 Tf 12.1577 -55.794 Td[(General)-254(Information)-253(About)-254(Project)-254(Gutenberg)]TJ/F22 13.1507 Tf 243.4267 0 Td[(")]TJ/F16 13.1507 Tf -160.7415 -17.0958 Td[(electronic)-279(works.)]TJ/F16 10.9091 Tf -94.8429 -32.1391 Td[(Professor)-259(Michael)-259(S.)-259(Hart)-259(is)-259(the)-259(originator)-259(of)-259(the)-258(Project)-259(Guten-)]TJ 0 -13.5492 Td[(berg)]TJ/F22 10.9091 Tf 19.3854 0 Td[(")]TJ/F16 10.9091 Tf 15.0856 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.5492 Td[(freely)-233(shared)-232(with)-233(anyone.)-244(For)-233(thirty)-232(years,)-237(he)-232(produced)-233(and)-232(dis-)]TJ 0 -13.5492 Td[(tributed)-274(Project)-274(Gutenberg)]TJ/F22 10.9091 Tf 116.8674 0 Td[(")]TJ/F16 10.9091 Tf 13.6792 0 Td[(eBooks)-274(with)-274(only)-274(a)-274(loose)-274(network)]TJ -130.5466 -13.5492 Td[(of)-250(volunteer)-250(support.)]TJ 11.9552 -14.649 Td[(Project)-379(Gutenberg)]TJ/F22 10.9091 Tf 81.0911 0 Td[(")]TJ/F16 10.9091 Tf 14.8294 0 Td[(eBooks)-379(are)-380(often)-379(created)-379(from)-380(several)]TJ -107.8757 -13.5492 Td[(printed)-248(editions,)-248(all)-248(of)-247(which)-248(are)-248(confirmed)-247(as)-248(Public)-248(Domain)-247(in)]TJ 0 -13.5492 Td[(the)-303(U.S.)-302(unless)-303(a)-303(copyright)-303(notice)-302(is)-303(included.)-408(Thus,)-316(we)-303(do)-302(not)]TJ 0 -13.5492 Td[(necessarily)-216(keep)-217(eBooks)-216(in)-216(compliance)-217(with)-216(any)-216(particular)-216(paper)]TJ 0 -13.5492 Td[(edition.)]TJ 11.9552 -14.649 Td[(Each)-356(eBook)-355(is)-356(in)-355(a)-356(subdirectory)-355(of)-356(the)-355(same)-356(number)-355(as)-356(the)]TJ -11.9552 -13.5492 Td[(eBook's)-266(eBook)-266(number,)-269(often)-266(in)-266(several)-266(formats)-266(including)-265(plain)]TJ 0 -13.5492 Td[(vanilla)-250(ASCII,)-250(compressed)-250(\050zipped\051,)-250(HTML)-250(and)-250(others.)]TJ 11.9552 -14.649 Td[(Corrected)]TJ/F19 10.9091 Tf 45.7663 0 Td[(editions)]TJ/F16 10.9091 Tf 37.3009 0 Td[(of)-252(our)-253(eBooks)-252(replace)-252(the)-252(old)-253(file)-252(and)-252(take)]TJ -95.0224 -13.5492 Td[(over)-285(the)-286(old)-285(filename)-286(and)-285(etext)-286(number.)-356(The)-286(replaced)-285(older)-285(file)]TJ 0 -13.5492 Td[(is)-367(renamed.)]TJ/F19 10.9091 Tf 58.1253 0 Td[(Versions)]TJ/F16 10.9091 Tf 42.1858 0 Td[(based)-367(on)-367(separate)-367(sources)-367(are)-367(treated)-367(as)]TJ -100.3111 -13.5492 Td[(new)-250(eBooks)-250(receiving)-250(new)-250(filenames)-250(and)-250(etext)-250(numbers.)]TJ 11.9552 -14.6489 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.9552 -13.5492 Td[(search)-250(facility:)]TJ/F16 9.8629 Tf 19.6364 -28.1389 Td[(http://www.gutenberg.org)]TJ
ET
1 0 0 1 46.7715 38.7817 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
174 0 obj <<
/Type /Page
/Contents 175 0 R
/Resources 173 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 156 0 R
/Annots [ 176 0 R 177 0 R 179 0 R ]
>> endobj
176 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [247.0996 515.7969 327.4012 525.5169]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/donate) >> 
>> endobj
177 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [46.7715 502.2477 168.2658 511.9677]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/donate) >> 
>> endobj
179 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [66.4079 63.9919 168.8641 72.7798]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org) >> 
>> endobj
178 0 obj <<
/D [174 0 R /XYZ 46.7715 486.9394 null]
>> endobj
173 0 obj <<
/Font << /F16 6 0 R /F22 84 0 R /F19 20 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
182 0 obj <<
/Length 961       
>>
stream
1 0 0 1 93.5434 548.9335 cm
0 g 0 G
1 0 0 1 -93.5434 -548.9335 cm
BT
/F16 10.9091 Tf 93.5434 548.9335 Td[(26)-21447(Measles)]TJ
ET
1 0 0 1 374.1731 548.9335 cm
0 g 0 G
1 0 0 1 -374.1731 -548.9335 cm
BT
/F16 10.9091 Tf 105.4986 518.1751 Td[(This)-527(Web)-526(site)-527(includes)-527(information)-526(about)-527(Project)-527(Guten-)]TJ -11.9552 -13.5492 Td[(berg)]TJ/F22 10.9091 Tf 19.3854 0 Td[(")]TJ/F16 10.9091 Tf 10.6909 0 Td[(,)-321(including)-307(how)-306(to)-307(make)-307(donations)-306(to)-307(the)-307(Project)-306(Guten-)]TJ -30.0763 -13.5492 Td[(berg)-251(Literary)-251(Archive)-250(Foundation,)-251(how)-251(to)-251(help)-251(produce)-251(our)-250(new)]TJ 0 -13.5492 Td[(eBooks,)-410(and)-378(how)-378(to)-378(subscribe)-378(to)-378(our)-378(email)-378(newsletter)-377(to)-378(hear)]TJ 0 -13.5492 Td[(about)-250(new)-250(eBooks.)]TJ
ET
1 0 0 1 93.5434 436.5638 cm
0 g 0 G
0 g 0 G
0 g 0 G
1 0 0 1 0 -397.7821 cm
0 g 0 G
1 0 0 1 280.6297 0 cm
0 g 0 G
endstream
endobj
181 0 obj <<
/Type /Page
/Contents 182 0 R
/Resources 180 0 R
/MediaBox [0 0 419.5276 595.2756]
/Parent 156 0 R
>> endobj
180 0 obj <<
/Font << /F16 6 0 R /F22 84 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
183 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
84 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 183 0 R
/BaseFont /Times-Roman
>> endobj
184 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
82 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 184 0 R
/BaseFont /Times-Roman
>> endobj
185 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
20 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 185 0 R
/BaseFont /Times-Italic
>> endobj
6 0 obj <<
/Type /Font
/Subtype /Type1
/Encoding 185 0 R
/BaseFont /Times-Roman
>> endobj
10 0 obj <<
/Type /Pages
/Count 6
/Parent 186 0 R
/Kids [2 0 R 13 0 R 16 0 R 22 0 R 25 0 R 29 0 R]
>> endobj
36 0 obj <<
/Type /Pages
/Count 6
/Parent 186 0 R
/Kids [33 0 R 38 0 R 41 0 R 45 0 R 49 0 R 53 0 R]
>> endobj
59 0 obj <<
/Type /Pages
/Count 6
/Parent 186 0 R
/Kids [56 0 R 61 0 R 68 0 R 71 0 R 78 0 R 90 0 R]
>> endobj
106 0 obj <<
/Type /Pages
/Count 6
/Parent 186 0 R
/Kids [99 0 R 109 0 R 115 0 R 125 0 R 132 0 R 144 0 R]
>> endobj
156 0 obj <<
/Type /Pages
/Count 6
/Parent 186 0 R
/Kids [150 0 R 158 0 R 162 0 R 170 0 R 174 0 R 181 0 R]
>> endobj
186 0 obj <<
/Type /Pages
/Count 30
/Kids [10 0 R 36 0 R 59 0 R 106 0 R 156 0 R]
>> endobj
187 0 obj <<
/Type /Outlines
/First 65 0 R
/Last 87 0 R
/Count 3
>> endobj
87 0 obj <<
/Title 88 0 R
/A 85 0 R
/Parent 187 0 R
/Prev 75 0 R
>> endobj
75 0 obj <<
/Title 76 0 R
/A 73 0 R
/Parent 187 0 R
/Prev 65 0 R
/Next 87 0 R
>> endobj
65 0 obj <<
/Title 66 0 R
/A 63 0 R
/Parent 187 0 R
/Next 75 0 R
>> endobj
188 0 obj <<
/Names [(Pg001) 18 0 R (Pg003) 27 0 R (Pg004) 31 0 R (Pg005) 35 0 R (Pg006) 43 0 R (Pg007) 47 0 R (Pg008) 51 0 R (index1) 64 0 R (index2) 74 0 R (index3) 86 0 R (pgfooter) 58 0 R (pgheader) 4 0 R (pglicense) 11 0 R (pglicense1) 94 0 R (pglicense1A) 95 0 R (pglicense1B) 101 0 R (pglicense1C) 104 0 R (pglicense1D) 105 0 R (pglicense1E) 107 0 R (pglicense1E1) 111 0 R (pglicense1E2) 113 0 R (pglicense1E3) 119 0 R (pglicense1E4) 121 0 R (pglicense1E5) 122 0 R (pglicense1E6) 127 0 R (pglicense1E7) 129 0 R (pglicense1E8) 97 0 R (pglicense1E9) 137 0 R (pglicense1F) 139 0 R (pglicense1F1) 146 0 R (pglicense1F2) 147 0 R (pglicense1F3) 141 0 R (pglicense1F4) 152 0 R (pglicense1F5) 154 0 R (pglicense1F6) 155 0 R (pglicense2) 160 0 R (pglicense3) 142 0 R (pglicense4) 140 0 R (pglicense5) 178 0 R]
/Limits [(Pg001) (pglicense5)]
>> endobj
189 0 obj <<
/Kids [188 0 R]
>> endobj
190 0 obj <<
/Dests 189 0 R
>> endobj
191 0 obj <<
/Type /Catalog
/Pages 186 0 R
/Outlines 187 0 R
/Names 190 0 R
>> endobj
192 0 obj <<
/Producer (pdfeTeX-1.21a)
 /Author (W. C. Rucker) /Title (Measles) 
/Creator (TeX)
/CreationDate (D:20061129131045-08'00')
/PTEX.Fullbanner (This is pdfeTeX using libpoppler, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) kpathsea version 3.5.4)
>> endobj
xref
0 193
0000000005 65535 f 
0000002128 00000 n 
0000001316 00000 n 
0000000009 00000 n 
0000002070 00000 n 
0000000019 00000 f 
0000113231 00000 n 
0000001461 00000 n 
0000001633 00000 n 
0000001852 00000 n 
0000113321 00000 n 
0000048914 00000 n 
0000002507 00000 n 
0000002389 00000 n 
0000002196 00000 n 
0000003917 00000 n 
0000003738 00000 n 
0000002547 00000 n 
0000003856 00000 n 
0000000081 00000 f 
0000113139 00000 n 
0000004309 00000 n 
0000004191 00000 n 
0000003998 00000 n 
0000008141 00000 n 
0000007962 00000 n 
0000004349 00000 n 
0000008080 00000 n 
0000013256 00000 n 
0000013076 00000 n 
0000008210 00000 n 
0000013194 00000 n 
0000018250 00000 n 
0000018072 00000 n 
0000013325 00000 n 
0000018190 00000 n 
0000113430 00000 n 
0000023041 00000 n 
0000022923 00000 n 
0000018319 00000 n 
0000028082 00000 n 
0000027903 00000 n 
0000023110 00000 n 
0000028021 00000 n 
0000033149 00000 n 
0000032970 00000 n 
0000028151 00000 n 
0000033088 00000 n 
0000038294 00000 n 
0000038116 00000 n 
0000033218 00000 n 
0000038234 00000 n 
0000042852 00000 n 
0000042734 00000 n 
0000038363 00000 n 
0000043495 00000 n 
0000043317 00000 n 
0000042921 00000 n 
0000043435 00000 n 
0000113540 00000 n 
0000043875 00000 n 
0000043757 00000 n 
0000043564 00000 n 
0000043915 00000 n 
0000044648 00000 n 
0000114212 00000 n 
0000043958 00000 n 
0000044708 00000 n 
0000044530 00000 n 
0000043984 00000 n 
0000045088 00000 n 
0000044970 00000 n 
0000044777 00000 n 
0000045128 00000 n 
0000048854 00000 n 
0000114124 00000 n 
0000045171 00000 n 
0000048975 00000 n 
0000048486 00000 n 
0000045219 00000 n 
0000048623 00000 n 
0000000083 00000 f 
0000111081 00000 n 
0000000000 00000 f 
0000108626 00000 n 
0000049080 00000 n 
0000053365 00000 n 
0000114049 00000 n 
0000049123 00000 n 
0000053547 00000 n 
0000052645 00000 n 
0000049176 00000 n 
0000052796 00000 n 
0000052970 00000 n 
0000053425 00000 n 
0000053486 00000 n 
0000053190 00000 n 
0000073108 00000 n 
0000058988 00000 n 
0000058307 00000 n 
0000053652 00000 n 
0000058806 00000 n 
0000058455 00000 n 
0000058632 00000 n 
0000058867 00000 n 
0000058928 00000 n 
0000113650 00000 n 
0000062989 00000 n 
0000063177 00000 n 
0000062635 00000 n 
0000059081 00000 n 
0000063052 00000 n 
0000062777 00000 n 
0000063115 00000 n 
0000068266 00000 n 
0000067201 00000 n 
0000063271 00000 n 
0000067367 00000 n 
0000067545 00000 n 
0000068077 00000 n 
0000067723 00000 n 
0000068140 00000 n 
0000068203 00000 n 
0000067901 00000 n 
0000073170 00000 n 
0000072477 00000 n 
0000068360 00000 n 
0000072982 00000 n 
0000072627 00000 n 
0000073045 00000 n 
0000072805 00000 n 
0000078567 00000 n 
0000077573 00000 n 
0000073264 00000 n 
0000077739 00000 n 
0000077915 00000 n 
0000078089 00000 n 
0000078442 00000 n 
0000078267 00000 n 
0000078505 00000 n 
0000100450 00000 n 
0000082969 00000 n 
0000096078 00000 n 
0000083031 00000 n 
0000082526 00000 n 
0000078661 00000 n 
0000082844 00000 n 
0000082906 00000 n 
0000082668 00000 n 
0000087383 00000 n 
0000086877 00000 n 
0000083125 00000 n 
0000087196 00000 n 
0000087019 00000 n 
0000087259 00000 n 
0000087322 00000 n 
0000113766 00000 n 
0000091571 00000 n 
0000091386 00000 n 
0000087465 00000 n 
0000091508 00000 n 
0000096141 00000 n 
0000094908 00000 n 
0000091665 00000 n 
0000095082 00000 n 
0000095258 00000 n 
0000095433 00000 n 
0000095641 00000 n 
0000095869 00000 n 
0000100512 00000 n 
0000100079 00000 n 
0000096211 00000 n 
0000100221 00000 n 
0000104901 00000 n 
0000104007 00000 n 
0000100594 00000 n 
0000104165 00000 n 
0000104397 00000 n 
0000104838 00000 n 
0000104628 00000 n 
0000106137 00000 n 
0000106015 00000 n 
0000104995 00000 n 
0000106219 00000 n 
0000108717 00000 n 
0000111172 00000 n 
0000113883 00000 n 
0000113974 00000 n 
0000114287 00000 n 
0000115136 00000 n 
0000115175 00000 n 
0000115213 00000 n 
0000115299 00000 n 
trailer
<<
/Size 193
/Root 191 0 R
/Info 192 0 R
/ID [<BD9689BC03993E91C0FCA62DF903BE0D> <BD9689BC03993E91C0FCA62DF903BE0D>]
>>
startxref
115562
%%EOF