summaryrefslogtreecommitdiff
path: root/31429-pdf.pdf
blob: 271002d65b563440ec9eed955f6006f80fa83b82 (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
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
%PDF-1.4
%ÐÔÅØ
5 0 obj <<
/Length 1137      
>>
stream
0 g 0 G
0 g 0 G
0 g 0 G
BT
/F16 10.9091 Tf 46.771 518.175 Td [(The)-337(Project)-337(Gutenberg)-337(EBook)-337(of)-337(Washo)-337(Religion)-337(by)-337(James)-336(F.)]TJ 0 -13.549 Td [(Downs)]TJ 0 -29.913 Td [(This)-546(eBook)-546(is)-546(for)-546(the)-546(use)-546(of)-546(anyone)-546(anywhere)-546(at)-546(no)-546(cost)]TJ 0 -13.549 Td [(and)-470(with)-470(almost)-470(no)-470(restrictions)-470(whatsoever.)-910(You)-470(may)-469(copy)]TJ 0 -13.549 Td [(it,)-565(give)-502(it)-503(away)-502(or)-502(re-use)-502(it)-502(under)-503(the)-502(terms)-502(of)-502(the)-502(Project)]TJ 0 -13.549 Td [(Gutenberg)-633(License)-632(included)-633(with)-632(this)-633(eBook)-632(or)-633(online)-632(at)]TJ 0 -13.55 Td [(http://www.gutenberg.org/license)]TJ 0 -29.913 Td [(Title:)-500(Washo)-500(Religion)]TJ 0 -27.098 Td [(Author:)-500(James)-500(F.)-500(Downs)]TJ 0 -27.098 Td [(Release)-500(Date:)-500(February)-500(27,)-500(2010)-500([Ebook)-500(31429])]TJ 0 -27.099 Td [(Language:)-500(English)]TJ 0 -40.647 Td [(***START)-500(OF)-500(THE)-500(PROJECT)-500(GUTENBERG)-500(EBOOK)]TJ 0 -13.549 Td [(WASHO)-500(RELIGION***)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
4 0 obj <<
/Type /Page
/Contents 5 0 R
/Resources 3 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 8 0 R
/Annots [ 1 0 R 2 0 R ]
>> endobj
1 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [140.547 431.687 262.463 441.407]
/Subtype /Link
/A << /S /GoTo /D (pglicense) >>
>> endobj
2 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [46.771 418.138 193.422 427.858]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/license) >> 
>> endobj
6 0 obj <<
/D [4 0 R /XYZ 46.771 529.134 null]
>> endobj
3 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
12 0 obj <<
/Length 1092      
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 172.283 516.375 Td [(Washo)-274(Religion)]TJ/F16 10.9091 Tf 61.187 -13.55 Td [(By)]TJ/F16 18.9589 Tf -56.446 -24.646 Td [(James)-272(F.)-271(Downs)]TJ/F16 15.7808 Tf -54.13 -20.515 Td [(University)-255(of)-255(California)-256(Publications)]TJ/F16 13.1507 Tf 50.515 -17.096 Td [(Anthropological)-270(Records)]TJ -7.636 -17.096 Td [(Vol.)-304(16,)-273(No.)-305(9,)-272(pp.)-305(365-386)]TJ -53.01 -17.096 Td [(Editors)-252(\050Berkeley\051:)-255(J.)-252(H.)-252(Rowe,)-253(R.)-252(F.)-252(Millon,)-253(D.)]TJ 85.46 -17.096 Td [(M.)-282(Schneider)]TJ -67.868 -17.095 Td [(Submitted)-257(by)-258(editors)-257(September)-258(16,)-259(1960)]TJ 53.821 -17.096 Td [(Issued)-274(June)-273(16,)-280(1961)]TJ 16.704 -17.096 Td [(Price,)-286(75)-279(cents)]TJ/F16 10.9091 Tf -26.679 -13.549 Td [(University)-271(of)-270(California)-271(Press)]TJ 7.545 -13.549 Td [(Berkeley)-273(and)-273(Los)-273(Angeles)]TJ 35.972 -13.55 Td [(California)]TJ -39.631 -13.549 Td [(Cambridge)-272(University)-272(Press)]TJ 23.675 -13.549 Td [(London,)-286(England)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
11 0 obj <<
/Type /Page
/Contents 12 0 R
/Resources 10 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 8 0 R
>> endobj
10 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
15 0 obj <<
/Length 6163      
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 46.771 479.321 Td [(Contents)]TJ/F16 10.9091 Tf 0 -32.622 Td [(Preface)-252(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-1474(2)]TJ
0 g 0 G
 0 -13.591 Td [(Introduction)-556(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-1474(4)]TJ
0 g 0 G
 0 -13.592 Td [(Mythology)-305(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-1474(8)]TJ
0 g 0 G
 16.364 -13.591 Td [(Water)-250(Babies)-835(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-1474(8)]TJ
0 g 0 G
 0 -13.591 Td [(The)-250(Giants)-334(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(13)]TJ
0 g 0 G
 0 -13.592 Td [(The)-250(Coyote)-250(And)-250(Other)-250(Figures)-557(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(16)]TJ
0 g 0 G
 -16.364 -13.591 Td [(Curing)-250(And)-250(Shamanism)-250(\0502469-2541\051)-334(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(18)]TJ
0 g 0 G
 16.364 -13.591 Td [(Noncurative)-250(Use)-250(Of)-250(Power)-250(\0502567-2593\051)-643(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(25)]TJ
0 g 0 G
 0 -13.592 Td [(Divining)-250(And)-250(Rainmaking)-250(\0502553-2556,)-250(2566\051)-584(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(25)]TJ
0 g 0 G
 0 -13.591 Td [(Objects)-250(Of)-250(Power)-585(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(26)]TJ
0 g 0 G
 0 -13.591 Td [(Sorcery)-250(And)-250(Witchcraft)-250(\0502562-2564\051)-393(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(28)]TJ
0 g 0 G
 0 -13.592 Td [(War)-250(Power)-974(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(30)]TJ
0 g 0 G
 0 -13.591 Td [(Summary)-250(Of)-250(Shamanism)-639(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(31)]TJ
0 g 0 G
 -16.364 -13.591 Td [(Dreams)-250(And)-250(Dreamers)-250(\0502566\051)-865(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(35)]TJ
0 g 0 G
 0 -13.592 Td [(Ritual)-250(Activities)-416(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(39)]TJ
0 g 0 G
 16.364 -13.591 Td [(Conception)-250(And)-250(Contraception)-501(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(39)]TJ
0 g 0 G
 0 -13.591 Td [(Birth)-250(\0502178-2293\051)-445(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(40)]TJ
0 g 0 G
 0 -13.592 Td [(Puberty:)-250(Girls)-250(\0502305-2352\051)-612(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(41)]TJ
0 g 0 G
 0 -13.591 Td [(Puberty:)-250(Boys)-250(\0502379-2386,)-250(369-374\051)-473(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(45)]TJ
0 g 0 G
 0 -13.591 Td [(Marriage)-250(\0502018-2051\051)-336(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(47)]TJ
0 g 0 G
 0 -13.592 Td [(Death)-250(\0502389-2453\051)-863(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(47)]TJ
0 g 0 G
 -16.364 -13.591 Td [(Ritual)-250(In)-250(Subsistence)-750(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(53)]TJ
0 g 0 G
 16.364 -13.591 Td [(Hunting)-722(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(53)]TJ
0 g 0 G
 0 -13.592 Td [(Fishing)-250(\050252a-296\051)-806(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(61)]TJ
0 g 0 G
 0 -13.591 Td [(Miscellaneous)-250(Concepts)-250(About)-250(Hunting)-250(And)-250(Fishing)-750(.)]TJ
0 g 0 G
 [-974(63)]TJ
0 g 0 G
 0 -13.591 Td [(Gathering)-751(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(64)]TJ
0 g 0 G
 -16.364 -13.591 Td [(Miscellaneous)-250(Ritual)-778(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(70)]TJ
0 g 0 G
 0 -13.592 Td [(Influence)-250(Of)-250(Christianity)-696(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(72)]TJ
0 g 0 G
 0 -13.591 Td [(Bibliography)-972(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(73)]TJ
0 g 0 G
0 g 0 G
0 g 0 G
ET
endstream
endobj
14 0 obj <<
/Type /Page
/Contents 15 0 R
/Resources 13 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 8 0 R
>> endobj
13 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
18 0 obj <<
/Length 350       
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(iv)-18474(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(Footnotes)-805(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)-500(.)]TJ
0 g 0 G
 [-974(77)]TJ
0 g 0 G
0 g 0 G
0 g 0 G
ET
endstream
endobj
17 0 obj <<
/Type /Page
/Contents 18 0 R
/Resources 16 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 8 0 R
>> endobj
16 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
21 0 obj <<
/Length 90        
>>
stream
0 g 0 G
0 g 0 G
0 g 0 G
BT
/F16 7.9701 Tf 337.795 512.811 Td [([i])]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
20 0 obj <<
/Type /Page
/Contents 21 0 R
/Resources 19 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 8 0 R
>> endobj
22 0 obj <<
/D [20 0 R /XYZ 46.771 518.175 null]
>> endobj
19 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
23 0 obj
<< /S /GoTo /D (index1) >>
endobj
26 0 obj
(Preface)
endobj
29 0 obj <<
/Length 3712      
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 93.543 479.321 Td [(Preface)]TJ/F16 10.9091 Tf 0 -33.407 Td [(This)-318(paper)-317(is)-318(the)-317(result)-317(of)-318(two)-317(and)-318(one-half)-317(months')-318(field)-317(work)]TJ 0 -13.55 Td [(among)-192(the)-192(Washo)-193(Indians)-192(of)-192(California)-192(and)-192(Nevada)-192(supported)-192(by)]TJ 0 -13.549 Td [(the)-272(Department)-271(of)-272(Anthropology)-271(of)-272(the)-271(University)-272(of)-271(California)]TJ 0 -13.549 Td [(and)-470(the)-471(Woodrow)-470(Wilson)-470(Foundation.)-911(In)-470(it)-471(I)-470(have)-470(tried)-470(to)]TJ 0 -13.549 Td [(describe)-217(the)-218(religious)-217(beliefs)-217(and)-218(ritual)-217(activities)-217(of)-218(the)-217(Washo)-217(as)]TJ 0 -13.549 Td [(they)-242(can)-242(be)-242(examined)-242(today.)-247(Where)-242(possible)-242(I)-242(have)-242(attempted)-241(to)]TJ 0 -13.549 Td [(reconstruct)-217(the)-217(aboriginal)-218(patt)1(erns)-218(and)-217(trace)-217(the)-217(course)-217(of)-217(change)]TJ 0 -13.55 Td [(between)-250(these)-250(two)-250(points)-250(in)-250(time.)]TJ 11.956 -13.746 Td [(A)-243(second)-243(purpose)-243(has)-244(been)-243(to)-243(supplement)-243(the)-243(culture)-243(element)]TJ -11.956 -13.549 Td [(distribution)-288(lists)-287(prepared)-288(by)-287(Omer)-287(C.)-288(Stewart)-287(in)-288(1936)-287(\050Stewart)]TJ 0 -13.549 Td [(1941\051.)-578(In)-360(a)-359(number)-360(of)-359(instances)-360(his)-359(findings)-360(were)-359(at)-359(variance)]TJ 0 -13.55 Td [(with)-336(those)-336(of)-336(Smith,)-358(whose)-336(notes)-336(Stewart)-336(incorporated;)-379(I)-335(have)]TJ 0 -13.549 Td [(been)-207(able)-206(to)-207(resolve)-206(some)-207(of)-206(the)-207(differences)-206(between)-207(Stewart)-206(and)]TJ 0 -13.549 Td [(Smith.)-354(Where)-285(my)-285(own)-284(research)-285(has)-285(led)-285(me)-284(to)-285(disagree)-285(with)-284(the)]TJ 0 -13.549 Td [(statements)-313(in)-313(the)-313(culture)-313(element)-313(distributions)-313(I)-313(have)-313(discussed)]TJ 0 -13.549 Td [(the)-488(problem.)-963(In)-488(general)-488(my)-488(own)-488(work)-488(simply)-488(expands)-487(the)]TJ 0 -13.549 Td [(rather)-260(sparse)-259(descriptions)-260(of)-260(the)-259(element)-260(lists)-260(\050Stewart)-259(1941,)-262(pp.)]TJ 0 -13.55 Td [(366-418\051.)-529(The)-343(culture)-343(element)-343(distribution)-343(list)-343(numbers)-343(which)]TJ 0 -13.549 Td [(refer)-319(to)-319(traits)-318(dealt)-319(with)-319(in)-319(the)-318(various)-319(sections)-319(are)-319(indicated)-318(in)]TJ 0 -13.549 Td [(parentheses)-365(following)-364(the)-365(headings.)-594(Where)-365(a)-364(trait)-365(or)-364(complex)]TJ 0 -13.549 Td [(is)-336(dealt)-336(with)-336(in)-336(detail)-336(it)-336(is)-336(indicated)-336(by)-336(parentheses)-336(in)-336(the)-335(text.)]TJ 0 -13.549 Td [(Statements)-201(not)-200(otherwise)-201(attributed)-200(are)-201(the)-200(result)-201(of)-200(my)-201(own)-200(field)]TJ 0 -13.55 Td [(work.)]TJ 11.956 -13.746 Td [(I)-314(am)-314(indebted)-315(to)-314(Mr.)-443(W.)-314(L.)-315(d'Azevedo,)-330(who)-314(encouraged)-314(me)]TJ -11.956 -13.549 Td [(to)-288(carry)-287(on)-288(field)-288(work)-287(among)-288(the)-287(Washo)-288(and)-288(who)-287(has)-288(made)-287(his)]TJ 0 -13.549 Td [(own)-248(field)-248(notes)-247(and)-248(knowledge)-248(available)-248(to)-248(me.)-249(I)-248(have)-247(indicated)]TJ 0 -13.549 Td [(information)-423(attributable)-422(to)-423(d'Azevedo)-422(by)-423(placing)-422(his)-423(name)-422(in)]TJ 0 -13.55 Td [(parentheses)-279(in)-279(the)-279(text;)-294(where)-279(his)-279(name)-279(appears)-279(with)-279(a)-279(date,)-286(the)]TJ 0 -13.549 Td [(reference)-250(is)-250(to)-250(a)-250(work)-250(published)-250(by)-250(him.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
28 0 obj <<
/Type /Page
/Contents 29 0 R
/Resources 27 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 8 0 R
>> endobj
24 0 obj <<
/D [28 0 R /XYZ 93.543 529.134 null]
>> endobj
27 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
32 0 obj <<
/Length 1709      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Preface)-22226(3)]TJ
0 g 0 G
 11.956 -30.759 Td [(I)-391(also)-391(wish)-390(to)-391(express)-391(my)-391(thanks)-391(for)-391(the)-391(suggestions)-390(made)]TJ -11.956 -13.549 Td [(by)-375(J.)-374(H.)-375(Rowe,)-405(R.)-375(F.)-374(Millon,)-406(and)-374(D.)-375(M.)-374(Schneider,)-406(who)-374(read)]TJ 0 -13.549 Td [(this)-280(article)-281(before)-280(it)-280(went)-280(to)-281(press,)-287(and)-281(to)-280(acknowledge)-280(the)-280(final)]TJ 0 -13.549 Td [(reading)-250(given)-250(the)-250(manuscript)-250(by)-250(the)-250(late)-250(A.)-250(L.)-250(Kroeber.)]TJ 11.956 -13.55 Td [(In)-336(addition,)-357(my)-336(thanks)-336(are)-336(owed)-336(to)-336(Mr.)-508(Frank)-335(Yapparagari,)]TJ -11.956 -13.549 Td [(Mrs.)-352(Juanita)-284(Schubert,)-293(and)-284(Mrs.)-351(Lois)-284(Buck)-284(of)-284(Gardnerville)-284(and)]TJ 0 -13.549 Td [(Minden,)-402(Nevada,)-401(to)-372(Mr.)-614(Richard)-371(Shulter)-371(of)-372(the)-371(Nevada)-371(State)]TJ 0 -13.549 Td [(Museum)-296(in)-295(Carson)-296(City,)-307(Nevada,)-307(and)-296(to)-295(Mrs.)-387(E.)-296(M.)-296(Keenan)-295(of)]TJ 0 -13.549 Td [(Paradise,)-207(California,)-206(who)-196(assisted)-196(in)-195(various)-196(ways)-196(in)-196(the)-195(progress)]TJ 0 -13.55 Td [(of)-278(the)-277(investigation.)-333(Last,)-285(to)-277(the)-278(various)-278(members)-277(of)-278(the)-277(Washo)]TJ 0 -13.549 Td [(tribe,)-322(who)-307(with)-308(patience)-307(and)-307(good)-308(humor)-307(bore)-308(the)-307(probing)-307(into)]TJ 0 -13.549 Td [(their)-250(lives,)-250(my)-250(deepest)-250(gratitude.)]TJ 11.956 -13.549 Td [(James)-250(F.)-250(Downs)]TJ/F16 7.9701 Tf 279.068 -27.415 Td [([365])]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
31 0 obj <<
/Type /Page
/Contents 32 0 R
/Resources 30 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 34 0 R
>> endobj
33 0 obj <<
/D [31 0 R /XYZ 46.771 328.17 null]
>> endobj
30 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
35 0 obj
<< /S /GoTo /D (index2) >>
endobj
38 0 obj
(Introduction)
endobj
41 0 obj <<
/Length 3899      
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 93.543 479.321 Td [(Introduction)]TJ/F16 10.9091 Tf 0 -33.776 Td [(This)-268(paper)-268(will)-268(devote)-269(itself)-268(to)-268(a)-268(description)-268(of)-268(the)-268(religious)-268(life)]TJ 0 -13.549 Td [(of)-355(the)-356(Washo)-355(Indians)-356(living)-355(in)-355(the)-356(communities)-355(of)-355(Sierraville,)]TJ 0 -13.549 Td [(Loyalton,)-594(and)-525(Woodfords,)-593(in)-525(California,)-594(and)-525(Reno,)-593(Carson)]TJ 0 -13.549 Td [(City,)-324(and)-309(Dresslerville,)-325(Nevada.)-428(Smaller)-309(numbers)-309(are)-309(scattered)]TJ 0 -13.549 Td [(throughout)-369(the)-368(area)-369(which)-369(was)-369(their)-368(aboriginal)-369(range,)-398(roughly)]TJ 0 -13.55 Td [(from)-362(the)-362(southern)-362(end)-361(of)-362(Honey)-362(Lake)-362(to)-362(Antelope)-362(Valley)-361(and)]TJ 0 -13.549 Td [(from)-481(the)-481(divide)-480(of)-481(the)-481(Pinenut)-481(Range)-480(in)-481(Nevada,)-539(almost)-480(to)]TJ 0 -13.549 Td [(Placerville,)-250(California.)]TJ 11.956 -13.82 Td [(A)-453(short)-453(ethnography)-453(by)-453(Barrett)-453(dealing)-453(in)-453(large)-453(part)-452(with)]TJ -11.956 -13.549 Td [(material)-520(culture,)-588(Lowie's)-521(Ethnographic)-520(Notes,)-588(and)-520(Stewart's)]TJ 0 -13.549 Td [(Element)-355(Lists)-355(constitute)-355(almost)-355(the)-355(only)-355(general)-355(references)-354(on)]TJ 0 -13.55 Td [(Washo)-232(culture.)-244(Various)-232(other)-233(writers)-232(have)-232(dealt)-232(with)-232(specialized)]TJ 0 -13.549 Td [(questions)-541(such)-542(as)-541(linguistics)-541(\050Kroeber,)-614(Jacobson\051,)-614(peyotism)]TJ 0 -13.549 Td [(\050Siskin,)-250(d'Azevedo\051,)-250(and)-250(music)-250(\050Merriam\051.)]TJ 11.956 -13.82 Td [(Most)-305(of)-304(the)-305(statements)-304(about)-305(the)-305(Washo)-304(give)-305(the)-304(impression)]TJ -11.956 -13.549 Td [(that)-476(they)-475(have)-476(long)-475(been)-476(on)-475(the)-476(edge)-475(of)-476(oblivion)-475(\050Mooney,)]TJ 0 -13.549 Td [(Kroeber,)-394(etc.\051,)-394(and)-366(population)-365(estimates)-365(have)-366(been)-365(well)-365(under)]TJ 0 -13.549 Td [(one)-373(thousand)-373(for)-373(the)-373(past)-373(fifty)-373(years.)-620(However,)-403(I)-373(find)-373(myself)]TJ 0 -13.55 Td [(in)-411(agreement)-410(with)-411(d'Azevedo)]TJ/F16 7.9701 Tf 132.944 3.959 Td [(1)]TJ/F16 10.9091 Tf 8.961 -3.959 Td [(that)-410(the)-411(Washo)-410(are)-411(a)-410(vigorous)]TJ -141.905 -13.549 Td [(and)-380(continuing)-380(cultural)-380(entity.)-640(My)-380(own)-380(rather)-380(impressionistic)]TJ 0 -13.549 Td [(estimate)-408(of)-408(population)-408(is)-408(that)-408(there)-408(are)-408(perhaps)-408(two)-408(thousand)]TJ 0 -13.549 Td [(Indians)-256(in)-257(the)-256(area)-256(who)-257(consider)-256(themselves)-256(as)-257(Washo)-256(and)-256(form)]TJ 0 -13.549 Td [(a)-250(part)-250(of)-250(a)-250(viable)-250(cultural)-250(unit.)]TJ 11.956 -13.82 Td [(My)-386(own)-386(field)-385(work)-386(was)-386(devoted)-386(to)-385(an)-386(attempt)-386(to)-386(trace)-385(the)]TJ -11.956 -13.549 Td [(patterns)-273(of)-273(change)-273(among)-274(these)-273(people)-273(since)-273(the)-273(entrance)-273(of)-273(the)]TJ
0 g 0 G
ET
q
1 0 0 1 93.543 109.64 cm
[]0 d 0 J 0.398 w 0 0 m 112.25 0 l S
Q
BT
/F16 5.9776 Tf 99.77 102.828 Td [(1)]TJ/F16 8.9664 Tf 5.729 -3.809 Td [(W.)-301(L.)-301(d'Azevedo,)-313(basing)-301(his)-301(opinions)-301(on)-300(extensive)-301(field)-301(work)-301(in)-301(the)-301(area,)]TJ -11.956 -10.959 Td [(contends)-419(that)-420(early)-419(estimates)-419(of)-420(Washo)-419(population)-419(were)-419(incorrect)-420(and)-419(that)]TJ 0 -10.959 Td [(modern)-460(figures)-459(based)-460(on)-460(these)-459(estimates)-460(are)-460(inaccurate.)-879(A)-459(contemporary)]TJ 0 -10.959 Td [(estimate,)-250(made)-250(by)-250(a)-250(resident)-250(journalist)-250(in)-250(1881,)-250(was)-250(somewhat)-250(over)-250(3,000.)]TJ
0 g 0 G
0 g 0 G
0 g 0 G
ET
endstream
endobj
40 0 obj <<
/Type /Page
/Contents 41 0 R
/Resources 39 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 34 0 R
>> endobj
36 0 obj <<
/D [40 0 R /XYZ 93.543 529.134 null]
>> endobj
39 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
44 0 obj <<
/Length 4712      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Introduction)-20280(5)]TJ
0 g 0 G
 0 -30.759 Td [(white)-373(man)-372(into)-373(their)-373(area.)-618(To)-373(this)-372(end)-373(I)-373(spent)-372(a)-373(great)-373(deal)-372(of)]TJ 0 -13.549 Td [(time)-389(with)-388(older)-389(informants,)-423(but)-388(my)-389(work)-388(was)-389(not)-388(exclusively)]TJ/F34 10.9091 Tf 0 -13.549 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(salvage)-442(ethnography.)]TJ/F34 10.9091 Tf 94.798 0 Td [(\035)]TJ/F16 10.9091 Tf 9.663 0 Td [(Many)-442(aspects)-442(of)-441(Washo)-442(culture)-442(have)]TJ -109.305 -13.549 Td [(changed)-460(dramatically)-460(in)-459(the)-460(past)-460(century;)-565(this)-460(is)-459(particularly)]TJ 0 -13.55 Td [(true)-418(in)-417(the)-418(area)-417(of)-418(materi)1(al)-418(culture)-417(and)-418(subsistence)-417(activities.)]TJ 0 -13.549 Td [(On)-344(the)-343(other)-344(hand,)-366(I)-344(was)-343(impressed)-344(by)-343(the)-344(tenacity)-343(of)-344(the)-343(less)]TJ 0 -13.549 Td [(material)-393(aspects)-394(of)-393(the)-394(culture.)-680(The)-393(always-difficult-to-define)]TJ 0 -13.549 Td [(world)-367(view)-368(or)-367(ethos)-367(of)-368(the)-367(Washo,)-397(which)-367(so)-367(clearly)-367(separates)]TJ 0 -13.549 Td [(them)-367(from)-367(other)-367(cultures,)-397(is)-367(very)-367(much)-367(an)-367(entity)-367(expressed)-367(in)]TJ 0 -13.55 Td [(the)-264(attitudes)-265(and)-264(actions)-264(of)-264(the)-265(Washo)-264(Indians,)-268(whether)-264(they)-264(are)]TJ 0 -13.549 Td [(oldsters)-345(who)-346(can)-345(remember)-345(many)-345(aspects)-345(of)-346(the)]TJ/F34 10.9091 Tf 220.385 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(old)-345(days)]TJ/F34 10.9091 Tf 37.704 0 Td [(\035)]TJ/F16 10.9091 Tf 8.61 0 Td [(or)]TJ -271.543 -13.549 Td [(children)-303(who)-304(have)-303(not)-303(yet)-303(entered)-304(the)-303(newly)-303(integrated)-303(schools)]TJ 0 -13.549 Td [(of)-291(Nevada.)-373(This)-291(continuity)-291(seems)-291(most)-291(clearly)-291(expressed)-291(in)-290(the)]TJ 0 -13.549 Td [(area)-374(which)-374(we)-374(subsume)-374(under)-374(the)-374(title)]TJ/F34 10.9091 Tf 179.437 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(Religion.)]TJ/F34 10.9091 Tf 40.309 0 Td [(\035)]TJ/F16 10.9091 Tf 8.924 0 Td [(Almost)-374(all)]TJ -233.513 -13.55 Td [(Washo,)-287(even)-279(the)-279(youngsters,)-287(are)-279(familiar)-279(with,)-287(or)-279(at)-279(least)-279(aware)]TJ 0 -13.549 Td [(of,)-329(Washo)-312(mythology,)-329(attitudes)-313(about)-312(ghosts,)-329(spirits,)-328(medicine,)]TJ 0 -13.549 Td [(and)-373(a)-373(number)-373(of)-373(ritual)-373(actions)-373(and)-373(beliefs)-373(which)-373(are)-372(common)]TJ 0 -13.549 Td [(elements)-250(in)-250(Washo)-250(life)-250(today.)]TJ 11.956 -16.004 Td [(This)-229(is)-229(not)-229(to)-228(imply)-229(that)-229(Washo)-229(religious)-229(activity)-229(has)-229(not)-229(been)]TJ -11.956 -13.549 Td [(affected)-334(by)-335(the)-334(tremendous)-335(changes)-334(which)-334(have)-335(taken)-334(place)-334(in)]TJ 0 -13.55 Td [(western)-231(Nevada)-231(and)-231(eastern)-231(California.)-244(I)-231(suggest)-231(that)-231(rather)-231(than)]TJ 0 -13.549 Td [(disappearing)-318(under)-318(the)-319(withering)-318(rationalism)-318(of)-318(civilization)-318(the)]TJ 0 -13.549 Td [(religion)-284(of)-284(the)-284(Washo)-284(has)-284(simply)-284(altered)-284(and)-284(expanded)-284(to)-284(serve)]TJ 0 -13.549 Td [(the)-250(Washo)-250(in)-250(new)-250(situations.)]TJ 11.956 -16.004 Td [(In)-233(this)-232(work)-233(I)-232(take)-233(the)-232(broadest)-233(possible)-232(definition)-233(of)-233(rel)1(igion,)]TJ -11.956 -13.549 Td [(conceiving)-348(it)-347(as)-348(any)-348(institutionalized)-347(activity)-348(or)-348(attitude)-347(which)]TJ 0 -13.549 Td [(reflects)-447(the)-447(Washo)-447(view)-448(of)-447(the)-447(cosmos.)-841(In)-447(so)-447(doing)-448(I)-446(have)]TJ 0 -13.55 Td [(included)-421(a)-420(number)-421(of)-420(categories)-421(which)-421(may)-420(not)-421(generally)-420(be)]TJ 0 -13.549 Td [(considered)-324(suitable)-323(for)-324(inclusion)-324(under)-323(the)-324(heading)-324(of)-323(religion.)]TJ 0 -13.549 Td [(Stewart,)-176(for)-157(instance,)-175(includes)-157(shamanism,)-176(curing,)-175(special)-157(powers)]TJ 0 -13.549 Td [(of)-448(shamans,)-497(miscellaneous)-448(shamanistic)-448(information,)-497(guardian)]TJ 0 -13.549 Td [(spirits,)-517(destiny)-464(of)-464(the)-464(soul,)-517(ghosts)-464(or)-464(soul,)-518(and)-463(jimsonweed.)]TJ 0 -13.55 Td [(My)-301(own)-302(work)-301(includes)-301(some)-302(of)-301(these)-301(specifically,)-314(incorporates)]TJ 0 -13.549 Td [(some)-302(under)-302(other)-302(headings,)-316(and)-302(treats)-302(a)-302(number)-302(of)-302(subjects)-302(not)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
43 0 obj <<
/Type /Page
/Contents 44 0 R
/Resources 42 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 34 0 R
>> endobj
42 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
48 0 obj <<
/Length 4135      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(6)-18752(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(included)-250(in)-250(the)-250(list)-250(given)-250(above.)]TJ 11.956 -14.531 Td [(The)-200(reason)-201(for)-200(this)-200(approach)-200(is)-201(practical)-200(rather)-200(than)-200(theoretical)]TJ -11.956 -13.549 Td [(or)-281(philosophical.)-345(As)-281(anthropological)-281(definitions)-282(of)-281(religions)-281(are)]TJ 0 -13.549 Td [(extremely)-313(varied)-314(and)-313(the)-314(activities)-313(described)-314(as)-313(religious)-313(under)]TJ 0 -13.55 Td [(various)-347(definitions)-347(cover)-347(a)-348(greater)-347(or)-347(narrower)-347(range,)-371(it)-347(seems)]TJ 0 -13.549 Td [(valuable)-406(to)-406(include)-406(as)-406(many)-406(activities)-406(as)-406(possible)-406(in)-406(a)-406(purely)]TJ 0 -13.549 Td [(descriptive)-250(work.)]TJ 11.956 -14.531 Td [(The)-421(goal)-421(of)-421(this)-421(paper)-421(is)-421(to)-421(make)-421(as)-421(much)-421(information)-421(as)]TJ -11.956 -13.549 Td [(possible)-389(about)-390(the)-389(religious)-390(and)-389(ritual)-389(activities)-390(of)-389(the)-389(Washo)]TJ 0 -13.549 Td [(available)-417(to)-417(scholars)-418(who)-417(may)-417(be)-417(interested)-418(in)-417(religion.)-751(The)]TJ 0 -13.55 Td [(inclusion)-300(of)-301(as)-300(many)-300(fields)-301(of)-300(activity)-300(as)-301(possible)-300(permits)-300(them)]TJ 0 -13.549 Td [(to)-250(select)-250(information)-250(which)-250(they)-250(feel)-250(pertinent)-250(to)-250(their)-250(interests.)]TJ 11.956 -14.531 Td [(Wherever)-399(possible)-398(I)-399(have)-398(tried)-399(to)-398(include)-399(direct)-398(quotations)]TJ -11.956 -13.549 Td [(from)-260(informants)-260(as)-260(well)-260(as)-260(information)-260(about)-260(their)-260(behavior)-259(and)]TJ 0 -13.549 Td [(attitudes,)-273(so)-269(that)-268(my)-269(own)-268(interpretations)-269(and)-268(conclusions)-269(can)-268(be)]TJ 0 -13.55 Td [(examined)-238(by)-238(others)-238(in)-237(light)-238(of)-238(the)-238(information)-238(on)-238(which)-238(they)-237(are)]TJ 0 -13.549 Td [(based.)]TJ 11.956 -14.531 Td [(Statements)-439(made)-440(by)-439(informants)-439(are)-440(indicated)-439(by)-439(quotation)]TJ -11.956 -13.549 Td [(marks.)-483(I)-327(did)-327(not)-328(have)-327(a)-328(recording)-327(device)-328(available)-327(and)-328(did)-327(not)]TJ 0 -13.549 Td [(attempt)-184(to)-183(record)-184(entire)-183(interviews)-184(verbatim.)-228(However,)-196(whenever)]TJ 0 -13.549 Td [(informants)-686(indicated)-686(that)-686(they)-686(considered)-686(their)-686(statements)]TJ 0 -13.55 Td [(important)-464(I)-464(took)-464(them)-464(down)-465(word)-464(for)-464(word.)-892(If)-464(I)-464(felt)-464(some)]TJ 0 -13.549 Td [(passing)-537(remark)-537(to)-537(have)-537(significance,)-609(I)-537(asked)-537(the)-537(informant)]TJ 0 -13.549 Td [(to)-539(repeat)-538(it)-539(and)-538(often)-538(read)-539(it)-538(back)-539(to)-538(him)-539(for)-538(verification.)]TJ 0 -13.549 Td [(Other)-453(stories,)-505(particularly)-453(those)-453(of)-454(a)-453(mythological)-453(nature,)-504(or)]TJ 0 -13.549 Td [(semilegends,)-270(or)-266(experiences)-267(which)-266(were)-266(important)-266(to)-266(individual)]TJ 0 -13.55 Td [(informants,)-299(were)-290(repeated)-289(voluntarily)-289(on)-290(almost)-289(every)-289(occasion)]TJ 0 -13.549 Td [(of)-265(our)-264(meeting.)-294(Whenever)-265(statements)-265(are)-264(presented)-265(in)-264(quotation)]TJ 0 -13.549 Td [(marks)-250(the)-250(material)-250(was)-250(gathered)-250(in)-250(this)-250(manner.)]TJ 11.956 -14.531 Td [(This)-562(paper)-562(contains)-561(material)-562(from)-562(a)-562(number)-562(of)-561(sources.)]TJ -11.956 -13.549 Td [(Statements)-628(of)-628(fact)-627(or)-628(interpretations)-628(taken)-628(from)-627(published)]TJ 0 -13.549 Td [(anthropological)-211(or)-210(historic)-211(works)-210(are)-210(indicated)-211(by)-210(citations)-211(in)-210(the)]TJ 0 -13.55 Td [(customary)-263(manner.)-290(Information)-263(based)-263(on)-263(conversations)-263(or)-263(other)]TJ 0 -13.549 Td [(private)-187(communications)-187(with)-187(other)-187(investigators)-187(is)-187(so)-187(designated.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
47 0 obj <<
/Type /Page
/Contents 48 0 R
/Resources 46 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 34 0 R
>> endobj
46 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
51 0 obj <<
/Length 457       
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Introduction)-20280(7)]TJ
0 g 0 G
 0 -30.759 Td [(All)-218(statements)-218(of)-218(fact)-217(which)-218(are)-218(not)-218(credited)-218(to)-218(these)-218(two)-217(sources)]TJ 0 -13.549 Td [(are)-329(taken)-328(from)-329(my)-328(own)-329(field)-328(notes)-329(and)-328(represent)-329(statements)-328(of)]TJ 0 -13.549 Td [(my)-250(informants.)]TJ/F16 7.9701 Tf 291.024 -29.651 Td [([366])]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
50 0 obj <<
/Type /Page
/Contents 51 0 R
/Resources 49 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 34 0 R
>> endobj
52 0 obj <<
/D [50 0 R /XYZ 46.771 461.426 null]
>> endobj
49 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
53 0 obj
<< /S /GoTo /D (index3) >>
endobj
56 0 obj
(Mythology)
endobj
57 0 obj
<< /S /GoTo /D (index4) >>
endobj
60 0 obj
(Water Babies)
endobj
63 0 obj <<
/Length 2986      
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 93.543 479.321 Td [(Mythology)]TJ/F16 10.9091 Tf 0 -34.653 Td [(Washo)-297(mythology)-297(has)-297(been)-297(presented)-297(in)-297(the)-297(form)-297(of)-297(interlinear)]TJ 0 -13.549 Td [(texts)-395(by)-395(Dangberg)-395(\0501927\051)-395(and)-395(in)-395(Lowie's)-395(Ethnographic)-394(Notes)]TJ 0 -13.549 Td [(\0501939,)-445(pp.)-717(333-351\051.)-717(There)-406(are)-406(two)-405(versions)-406(of)-406(the)-405(creation)]TJ 0 -13.549 Td [(myth,)-240(one)-238(describing)-237(the)-238(creation)-237(of)-238(Paiute,)-240(Washo,)-240(and)-237(Diggers)]TJ 0 -13.55 Td [(from)-414(the)-413(seeds)-414(of)-413(the)-414(cattail)-414(by)-413(the)-414(Creator)-413(Woman,)-455(and)-413(the)]TJ 0 -13.549 Td [(second)-337(attributing)-337(the)-337(creation)-337(of)-337(Indians)-337(to)-337(the)-337(Creation)-337(Man,)]TJ 0 -13.549 Td [(who)-489(formed)-490(the)-489(three)-490(groups)-489(from)-490(among)-489(his)-490(sons)-489(to)-489(keep)]TJ 0 -13.549 Td [(them)-271(from)-271(quarreling.)-312(Lowie)-271(also)-270(reports)-271(the)-271(common)-271(theme)-270(of)]TJ 0 -13.549 Td [(several)-309(previous)-309(inhabitations)-309(of)-308(the)-309(earth.)-427(The)-309(most)-308(important)]TJ 0 -13.55 Td [(myth,)-553(or)-492(at)-492(least)-492(the)-492(one)-493(which)-492(is)-492(still)-492(commonly)-492(told)-492(and)]TJ 0 -13.549 Td [(seems)-438(to)-437(be)-438(the)-437(favorite)-438(among)-437(the)-438(Washo,)-484(devotes)-438(itself)-437(to)]TJ 0 -13.549 Td [(the)-350(adventures)-351(of)-350(Damalali)-350(\050short-tailed)-351(weasel\051)-350(and)-350(Pewetseli)]TJ 0 -13.549 Td [(\050long-tailed)-326(weasel\051.)-478(These)-326(heroes)-326(are)-326(responsible)-326(for)-326(many)-325(of)]TJ 0 -13.549 Td [(the)-314(natural)-314(features)-314(of)-314(the)-314(region)-314(so)-314(references)-314(to)-314(this)-314(myth)-313(are)]TJ 0 -13.55 Td [(rather)-301(frequent.)-401(The)-301(Coyote,)-313(in)-301(the)-300(form)-301(of)-300(a)-301(rather)-300(malevolent)]TJ 0 -13.549 Td [(and)-377(stupid)-376(trickster,)-408(and)-377(the)-377(Wolf,)-408(a)-376(generally)-377(patriarchal)-376(and)]TJ 0 -13.549 Td [(protective)-395(figure,)-430(appear)-395(in)-395(several)-394(myths,)-431(as)-395(do)-394(cannibalistic)]TJ 0 -13.549 Td [(giants)-250(and)-250(a)-250(giant)-250(bird,)-250(the)-250(an.)]TJ 11.956 -13.995 Td [(Figures)-593(which)-592(appear)-593(only)-593(incidentally)-592(in)-593(the)-593(myths)-592(as)]TJ -11.956 -13.55 Td [(recounted)-424(are)-425(elaborated)-424(almost)-424(infinitely)-425(in)-424(what)-424(might)-424(best)]TJ 0 -13.549 Td [(be)-250(termed)-250(folk)-250(fantasy.)]TJ/F16 15.7808 Tf 0 -62.058 Td [(Water)-250(Babies)]TJ/F16 10.9091 Tf 0 -31.489 Td [(Most)-322(prominent)-322(of)-322(these)-321(figures)-322(are)-322(the)-322(Water)-322(Babies)-321(\050Stewart)]TJ 0 -13.549 Td [(1941,)-447(p.)-724(444,)-448(2574\051.)-723(In)-408(the)-408(mythology,)-448(Water)-408(Baby)-407(figures)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
62 0 obj <<
/Type /Page
/Contents 63 0 R
/Resources 61 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 34 0 R
>> endobj
54 0 obj <<
/D [62 0 R /XYZ 93.543 529.134 null]
>> endobj
58 0 obj <<
/D [62 0 R /XYZ 93.543 147.257 null]
>> endobj
61 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
66 0 obj <<
/Length 4386      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Water)-250(Babies)-19809(9)]TJ
0 g 0 G
 0 -30.759 Td [(as)-434(the)-435(creature)-434(responsible)-434(for)-434(the)-434(many)-435(lakes)-434(of)-434(the)-434(eastern)]TJ 0 -13.549 Td [(Sierra.)-274(Killed)-259(and)-258(scalped)-258(by)-258(the)-258(rascally)-258(Damalali,)-260(Water)-258(Baby)]TJ 0 -13.549 Td [(commands)-279(the)-278(waters)-279(of)-278(the)-279(area)-278(to)-278(rise)-279(until)-278(the)-279(weasel)-278(returns)]TJ 0 -13.549 Td [(the)-248(scalp)-247(to)-248(avoid)-247(drowning.)-250(The)-247(waters)-248(left)-247(in)-248(mountain)-247(valleys)]TJ 0 -13.55 Td [(as)-250(the)-250(flood)-250(receded)-250(formed)-250(the)-250(lakes.)]TJ 11.956 -14.776 Td [(The)-219(Water)-219(Baby)-219(is)-219(not)-219(confined)-219(to)-219(mythology.)-240(My)-219(informants)]TJ -11.956 -13.549 Td [(were)-291(able)-292(to)-291(describe)-292(the)-291(appearance)-291(of)-292(a)-291(Water)-292(Baby)-291(in)-291(detail,)]TJ 0 -13.55 Td [(to)-313(supply)-312(me)-313(with)-313(population)-312(figures,)-329(and)-312(to)-313(recount)-313(an)-312(almost)]TJ 0 -13.549 Td [(endless)-220(series)-220(of)-220(incidents)-220(in)-220(which)-220(Water)-220(Babies)-220(were)-219(involved.)]TJ 11.956 -14.776 Td [(All)-252(informants)-253(agreed)-252(that)-252(the)-253(Water)-252(Baby)-252(is)-253(a)-252(creature)-252(about)]TJ -11.956 -13.55 Td [(one)-399(and)-399(one-half)-398(feet)-399(tall,)-436(gray)-399(in)-399(color,)-436(with)-399(extremely)-398(long)]TJ 0 -13.549 Td [(black)-206(hair)-207(which)-206(never)-206(touches)-206(the)-206(ground)-207(but)-206(which)-206(floats)-206(along)]TJ 0 -13.549 Td [(behind)-446(the)-446(Water)-445(Babies)-446(when)-446(they)-446(walk.)-837(In)-446(general,)-494(these)]TJ 0 -13.549 Td [(creatures)-324(look)-324(like)-324(small)-324(humans.)-471(However,)-343(they)-324(are)-323(boneless,)]TJ 0 -13.549 Td [(cold)-250(to)-250(the)-250(touch,)-250(and)-250(damp.)]TJ 11.956 -14.777 Td [(Between)-434(two)-435(and)-434(three)-435(thousand)-434(Water)-435(Babies)-434(live)-435(in)-434(the)]TJ -11.956 -13.549 Td [(Sierra,)-284(according)-277(to)-277(one)-277(informant.)-331(They)-278(inhabit)-277(lakes,)-283(streams,)]TJ 0 -13.549 Td [(marshes,)-518(ponds,)-518(springs,)-517(and)-464(irrigation)-465(ditches.)-892(They)-464(speak)]TJ 0 -13.55 Td [(a)-387(language)-387(of)-387(their)-388(own)-387(but)-387(are)-387(always)-387(able)-387(to)-387(speak)-387(Washo.)]TJ 0 -13.549 Td [(With)-351(a)-351(single)-351(exception,)-376(every)-351(Washo)-351(of)-351(middle)-351(age)-351(and)-351(over)]TJ 0 -13.549 Td [(to)-354(whom)-355(I)-354(talked)-354(claimed)-354(to)-354(have)-355(at)-354(least)-354(heard)-354(Water)-354(Babies)]TJ 0 -13.549 Td [(calling)-387(from)-387(some)-387(body)-387(of)-387(water)-387(in)-387(the)-387(night.)-661(Several)-387(others)]TJ 0 -13.549 Td [(claimed)-260(to)-260(have)-261(seen)-260(Water)-260(Baby)-260(footprints)-260(\050one)-260(even)-260(reporting)]TJ 0 -13.549 Td [(that)-209(the)-209(footprints)-209(he)-210(had)-209(seen)-209(were)-209(those)-209(of)-209(a)-209(female)-209(because)-209(the)]TJ 0 -13.55 Td [(tracks)-281(were)-281(clearly)-281(those)-282(of)-281(high)-281(heeled)-281(shoes!\051.)-343(One)-281(informant)]TJ 0 -13.549 Td [(steadfastly)-194(claimed)-194(to)-194(have)-195(seen)-194(a)-194(Water)-194(Baby,)-205(at)-194(least)-194(fleetingly,)]TJ 0 -13.549 Td [(in)-250(1956.)]TJ 11.956 -14.777 Td [(Two)-315(distinct)-315(attitudes)-316(about)-315(these)-315(creatures)-315(are)-315(displayed)-315(by)]TJ -11.956 -13.549 Td [(the)-398(Washo.)-693(Most)-398(informants)-397(openly)-398(admitted)-398(being)-398(afraid)-397(of)]TJ 0 -13.549 Td [(Water)-332(Babies.)-495(If)-332(they)-331(heard)-332(one)-332(they)-331(remained)-332(in)-332(their)-331(houses)]TJ 0 -13.549 Td [(or)-255(attempted)-255(to)-254(avoid)-255(contact.)-265(They)-254(claimed)-255(that)-255(if)-255(a)-255(person)-254(saw)]TJ 0 -13.549 Td [(a)-312(Water)-312(Baby)-312(by)-312(accident,)-327(at)-312(the)-312(very)-312(least)-312(he)-312(would)-312(be)-311(struck)]TJ 0 -13.55 Td [(unconscious)-261(and)-261(greater)-262(harm,)-264(in)-261(the)-261(form)-261(of)-261(sickness,)-264(might)-261(be)]TJ 0 -13.549 Td [(inflicted)-302(on)-301(him)-302(or)-302(on)-302(one)-301(of)-302(his)-302(relatives.)-405(The)-302(general)-301(attitude)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
65 0 obj <<
/Type /Page
/Contents 66 0 R
/Resources 64 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 67 0 R
>> endobj
64 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
70 0 obj <<
/Length 5233      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(10)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(was)-362(that)-362(Water)-362(Babies)-363(were)-362(best)-362(left)-362(alone)-362(because)-362(they)-362(were)]TJ 0 -13.549 Td [(extremely)-250(powerful.)]TJ 11.956 -15.625 Td [(This)-552(attitude)-552(is)-552(perhaps)-551(summed)-552(up)-552(best)-552(by)-552(one)-552(of)-551(my)]TJ -11.956 -13.549 Td [(informants,)-273(a)-269(rather)-269(sophisticated)-268(Washo)-269(who)-269(has)-268(lived)-269(in)-268(cities)]TJ 0 -13.549 Td [(for)-324(long)-323(periods)-324(and)-323(who)-324(is)-323(an)-324(active)-323(leader)-324(in)-323(the)-324(tribe's)-323(legal)]TJ 0 -13.549 Td [(battle)-248(with)-247(the)-248(federal)-248(government.)-249(He)-248(is)-247(also)-248(a)-248(devoted)-247(peyotist)]TJ 0 -13.55 Td [(who)-229(often)-228(conducts)-229(curing)-229(ceremonies)-228(and)-229(is)-229(conceded)-228(to)-229(have)-228(a)]TJ 0 -13.549 Td [(curing)-221(power.)-240(He)-222(said,)]TJ/F34 10.9091 Tf 100.805 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(If)-221(they)-221(ever)-221(get)-221(up)-221(a)-222(bunch)-221(to)-221(trap)-221(one)-221(of)]TJ -105.649 -13.549 Td [(them)-240([Water)-240(Babies],)-242(I)-240(don't)-239(want)-240(to)-240(have)-240(nothing)-240(to)-240(do)-240(with)-239(it.)]TJ/F34 10.9091 Tf 275.786 0 Td [(\035)]TJ/F16 10.9091 Tf -275.786 -13.549 Td [(When)-212(I)-211(asked)-212(why)-211(not,)-220(he)-211(replied:)]TJ/F34 10.9091 Tf 150.056 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(Why)-212(hell,)-219(if)-212(you)-211(make)-212(one)-211(of)]TJ -154.899 -13.549 Td [(them)-221(things)-220(mad)-221(they'll)-221(flood)-221(the)-220(world.)-241(I)-220(just)-221(don't)-221(want)-220(nothing)]TJ 0 -13.55 Td [(to)-321(do)-321(with)-321(them.)-462(I)-321(ain't)-321(that)-321(desperate.)]TJ/F34 10.9091 Tf 171.634 0 Td [(\035)]TJ/F16 10.9091 Tf 8.345 0 Td [(I)-321(asked,)]TJ/F34 10.9091 Tf 38.394 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(desperate)-321(for)]TJ -223.217 -13.549 Td [(what?)]TJ/F34 10.9091 Tf 26.051 0 Td [(\035)]TJ/F16 10.9091 Tf 7.522 0 Td [(and)-245(he)-246(replied)]TJ/F34 10.9091 Tf 64.38 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(for)-246(power.)-248(I)-246(like)-245(to)-245(dream)-246(about)-245(womens)]TJ -102.796 -13.549 Td [([sic])-260(and)-261(things)-260(like)-260(that,)-263(not)-261(about)-260(Water)-260(Babies)-261(and)-260(that)-260(funny)]TJ 0 -13.549 Td [(stuff.)]TJ/F34 10.9091 Tf 22.724 0 Td [(\035)]TJ/F16 10.9091 Tf -10.768 -15.625 Td [(This)-357(last)-356(statement)-357(clearly)-357(indicates)-356(the)-357(other)-357(attitude)-356(about)]TJ -11.956 -13.549 Td [(Water)-211(Babies;)-223(they)-211(are)-211(often)-210(guardian)-211(spirits)-211(of)-210(Washo)-211(who)-210(have)]TJ 0 -13.549 Td [(special)-345(power,)-369(particularly)-345(shamanistic)-346(curing)-345(power.)-535(Another)]TJ 0 -13.55 Td [(informant)-254(expressed)-253(this)-254(other)-253(attitude)-254(about)-253(these)-254(creatures.)-260(He)]TJ 0 -13.549 Td [(is)-359(about)-359(seventy,)-386(attended)-358(Stewart)-359(Indian)-359(School)-359(for)-359(ten)-358(years)]TJ 0 -13.549 Td [(and)-316(lived)-316(among)-316(the)-316(Hopi)-316(for)-316(ten)-316(years.)-448(He)-316(boasts)-316(a)-316(st)1(one)-316(and)]TJ 0 -13.549 Td [(cement-block)-260(home,)-262(the)-259(only)-260(such)-260(dwelling)-259(owned)-260(by)-260(a)-259(Washo.)]TJ 0 -13.549 Td [(He)-445(has)-445(learned)-445(to)-446(bead)-445(baskets)-445(and)-445(during)-445(most)-445(of)-445(the)-445(year)]TJ 0 -13.55 Td [(earns)-370(a)-370(reasonable)-370(income)-370(from)-370(this.)-610(His)-370(seeming)-370(adjustment)]TJ 0 -13.549 Td [(to)-297(white)-296(culture)-297(is)-296(confounded)-297(when)-297(his)-296(philosophic)-297(position)-296(is)]TJ 0 -13.549 Td [(examined.)-550(He)-351(can)-350(only)-350(be)-350(termed)-350(a)-350(mystic)-350(who)-350(interprets)-350(the)]TJ 0 -13.549 Td [(world)-170(in)-170(Indian)-171(terms.)-223(Exposure)-170(to)-171(such)-170(influences)-170(as)-170(the)-170(writings)]TJ 0 -13.549 Td [(of)-229(Kroeber)-229(and)-230(Huxley)-229(has)-229(only)-229(confirmed)-229(his)-229(essentially)-229(Indian)]TJ 0 -13.55 Td [(viewpoint.)-743(Both)-415(his)-414(parents)-415(were)-414(famous)-415(Indian)-414(doctors)-414(and)]TJ 0 -13.549 Td [(his)-407(maternal)-407(uncle,)-447(who)-407(was)-407(also)-407(his)-408(mentor,)]TJ/F16 7.9701 Tf 208.468 3.959 Td [(2)]TJ/F16 10.9091 Tf 9.354 -3.959 Td [(was)-407(a)-407(famous)]TJ
0 g 0 G
ET
q
1 0 0 1 93.543 109.64 cm
[]0 d 0 J 0.398 w 0 0 m 112.25 0 l S
Q
BT
/F16 5.9776 Tf 99.77 102.828 Td [(2)]TJ/F16 8.9664 Tf 5.729 -3.809 Td [(This)-313(statement)-314(should)-313(not)-313(be)-314(considered)-313(as)-314(an)-313(indication)-313(of)-314(matrilineality)]TJ -11.956 -10.959 Td [(in)-366(Washo)-367(society.)-599(Freed)-366(and)-366(d'Azevedo,)-396(who)-366(have)-366(done)-366(extensive)-367(work)-366(in)]TJ 0 -10.959 Td [(kinship)-272(and)-273(social)-272(organization)-273(of)-272(this)-273(group,)-278(seemed)-272(to)-273(agree)-272(that)-273(the)-272(Washo)]TJ 0 -10.959 Td [(were)-308(loosely)-309(bilateral)-308(with)-308(certain)-309(formalized)-308(patrilineal)-308(elements.)-425(However,)]TJ
0 g 0 G
0 g 0 G
0 g 0 G
ET
endstream
endobj
69 0 obj <<
/Type /Page
/Contents 70 0 R
/Resources 68 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 67 0 R
>> endobj
68 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
73 0 obj <<
/Length 5270      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Water)-250(Babies)-19309(11)]TJ
0 g 0 G
 0 -30.759 Td [(shaman.)-242(My)-226(informant)-226(implied)-226(that)-226(his)-226(uncle's)-226(spirit)-226(\050wegeleyo\051,)]TJ 0 -13.549 Td [(from)-243(which)-243(his)-243(power)-243(was)-242(derived,)-245(was)-243(the)-242(Water)-243(Baby,)-245(and)-242(his)]TJ 0 -13.549 Td [(own)-355(carefully)-355(guarded)-356(statement)-355(implied)-355(that)-355(the)-355(creature)-355(was)]TJ 0 -13.549 Td [(potentially)-250(his)-251(own)-250(spirit.)-251(His)-250(view)-251(of)-250(the)-250(Water)-251(Baby)-250(was)-250(quite)]TJ 0 -13.55 Td [(the)-321(reverse)-322(of)-321(other)-322(informants.)]TJ/F34 10.9091 Tf 145.416 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(Some)-321(people)-322(think)-321(the)-322(Water)]TJ -150.26 -13.549 Td [(Baby)-320(will)-319(hurt)-320(them,)-337(but)-319(he)-320(won't.)-459(If)-319(they)-320(see)-319(him)-320(by)-319(accident)]TJ 0 -13.549 Td [(he)-402(won't)-402(do)-402(nothing.)-707(But)-402(if)-402(he)-402(has)-402(given)-402(you)-402(his)-402(power)-402(and)]TJ 0 -13.549 Td [(you)-398(see)-397(him)]TJ/F34 10.9091 Tf 55.947 0 Td [(\024)]TJ/F16 10.9091 Tf 10.909 0 Td [(then)-398(wham,)-434(he)-398(maybe)-398(knock)-398(you)-397(right)-398(down.)]TJ/F34 10.9091 Tf 208.931 0 Td [(\035)]TJ/F16 10.9091 Tf -275.787 -13.549 Td [(This)-385(appears)-384(to)-385(have)-384(been)-385(his)-385(way)-384(of)-385(describing)-384(a)-385(seizure)-384(by)]TJ 0 -13.55 Td [(the)-388(Water)-389(Baby,)-422(which)-389(although)-388(a)-388(fearful)-389(experience,)-422(usually)]TJ 0 -13.549 Td [(resulted)-351(in)-350(the)-351(gift)-350(of)-351(additional)-351(power.)-551(There)-351(was,)-376(however,)]TJ/F16 7.9701 Tf 291.024 0 Td [([367])]TJ/F16 10.9091 Tf -291.024 -13.549 Td [(general)-227(agreement)-226(among)-227(informants)-227(that)-226(the)-227(Water)-227(Baby)-226(could,)]TJ 0 -13.549 Td [(if)-369(he)-369(gave)-369(his)-370(power)-369(to)-369(a)-369(person,)-399(demand)-369(repayment)-369(with)-369(the)]TJ 0 -13.549 Td [(lives)-250(of)-250(his)-250(prot\351g\351's)-250(close)-250(relatives)-250(or)-250(entire)-250(family.)]TJ/F16 7.9701 Tf 227.684 3.958 Td [(3)]TJ/F16 10.9091 Tf -215.728 -18.638 Td [(The)-416(various)-416(powers)-416(and)-417(activities)-416(of)-416(the)-416(Water)-416(Babies)-416(are)]TJ -11.956 -13.549 Td [(perhaps)-466(best)-466(described)-466(in)-466(the)-466(following)-466(stories)-466(recounted)-466(by)]TJ 0 -13.55 Td [(informants:)]TJ/F16 9.8629 Tf 19.637 -28.293 Td [(1.)]TJ/F34 9.8629 Tf 9.689 0 Td [(\034)]TJ/F16 9.8629 Tf 4.38 0 Td [(One)-197(time)-198(my)-197(Dad)-197(was)-197(sick.)-233(He)-197(called)-197(in)-198(two,)-207(three)-198(doctors)]TJ -14.069 -12.822 Td [(and)-302(they)-301(said)-302(he)-301(had)-302(to)-301(give)-302(a)-301(basket)-302(to)-301(the)-302(Water)-302(Babies)-301(at)]TJ 0 -12.822 Td [(Lake)]TJ/F37 9.8629 Tf 22.136 0 Td [(I)]TJ/F38 9.8629 Tf 3.285 0 Td [(a)]TJ/F37 9.8629 Tf 3.836 0 Td [(medel)]TJ/F16 9.8629 Tf 23.553 0 Td [(.)-248(There)-246(is)-245(an)-246(island)-245(in)-246(this)-245(lake)-245(and)-246(my)-245(Dad)-246(was)]TJ -52.81 -12.822 Td [(supposed)-345(to)-346(go)-345(out)-345(to)-346(that)-345(island)-346(and)-345(leave)-345(a)-346(basket.)-536(I)-345(was)]TJ 0 -12.821 Td [(too)-312(young)-312(then)-312(but)-312(he)-312(took)-313(my)-312(brother.)-436(They)-312(went)-312(up)-312(there)]TJ 0 -12.822 Td [(and)-243(my)-244(Dad)-243(just)-243(started)-243(walking)-244(out)-243(to)-243(the)-243(lake)-244(and)-243(the)-243(water)]TJ 0 -12.822 Td [(never)-334(got)-333(any)-334(deeper)-334(than)-333(there)-334(\050pointing)-334(to)-333(his)-334(knees\051.)-501(He)]TJ 0 -12.822 Td [(walked)-248(right)-248(on)-247(that)-248(water.)-249(He)-248(left)-248(that)-248(basket)-248(and)-247(came)-248(back)]TJ 0 -12.822 Td [(and)-265(he)-265(got)-265(well.)-296(Them)-265(Water)-265(Babies)-265(helped)-266(him)-265(walk)-265(on)-265(the)]TJ 0 -12.822 Td [(water.)-250(My)-250(brother)-250(saw)-250(it)-250(happen.)]TJ/F34 9.8629 Tf 130.654 0 Td [(\035)]TJ/F16 9.8629 Tf -115.901 -13.952 Td [(2.)]TJ/F34 9.8629 Tf 10.86 0 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(There)-284(is)-283(this)-284(deep)-284(pool)-283(up)-284(in)-284(the)-284(mountains.)-351(There)-283(is)]TJ -29.992 -12.822 Td [(a)-321(kind)-321(of)-321(black)-321(sucker)-322(live)-321(there)-321(but)-321(no)-321(Indians)-321(ever)-321(caught)]TJ
0 g 0 G
ET
q
1 0 0 1 46.771 118.962 cm
[]0 d 0 J 0.398 w 0 0 m 112.25 0 l S
Q
BT
/F16 8.9664 Tf 46.771 110.138 Td [(because)-480(of)-480(fragile)-479(marriages,)-538(many)-479(Washo)-480(have)-480(had)-480(a)-479(longer)-480(and)-480(closer)]TJ 0 -10.959 Td [(association)-309(with)-309(their)-309(mothers')-309(families)-309(than)-309(with)-309(their)-309(fathers',)-323(or)-309(with)-309(those)]TJ 0 -10.958 Td [(of)-250(any)-250(of)-250(their)-250(mothers')-250(subsequent)-250(husbands.)]TJ/F16 5.9776 Tf 6.227 -7.311 Td [(3)]TJ/F16 8.9664 Tf 5.729 -3.809 Td [(Kluckhohn)-270(reports)-270(that)-270(the)-270(payment)-270(for)-270(joining)-270(a)-270(coven)-270(of)-270(Navajo)-270(witches)]TJ -11.956 -10.959 Td [(is)-250(often)-250(the)-250(life)-250(of)-250(a)-250(relative)-250(\0501947,)-250(p.)-250(131\051.)]TJ
0 g 0 G
0 g 0 G
0 g 0 G
ET
endstream
endobj
72 0 obj <<
/Type /Page
/Contents 73 0 R
/Resources 71 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 67 0 R
>> endobj
74 0 obj <<
/D [72 0 R /XYZ 327.401 382.683 null]
>> endobj
71 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R /F37 75 0 R /F38 76 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
79 0 obj <<
/Length 4930      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(12)-18252(Washo)-250(Religion)]TJ
0 g 0 G
/F16 9.8629 Tf 19.637 -30.759 Td [(them)-442(because)-442(that)-443(was)-442(a)-442(Water)-442(Baby)-442(place)-443(and)-442(they)-442(was)]TJ 0 -12.822 Td [(Water)-458(Baby)-459(food.)-876(Womens)-458(used)-459(to)-458(sit)-459(on)-458(a)-459(platform)-458(of)]TJ 0 -12.822 Td [(logs)-331(and)-331(weave)-331(baskets)-331(there)-331([special)-330(baskets)-331(for)-331(the)-331(Water)]TJ 0 -12.821 Td [(Babies,)-179(apparently,)-179(such)-161(as)-161(the)-162(one)-161(used)-161(as)-161(offering)-162(in)-161(the)-161(story)]TJ 0 -12.822 Td [(above].)-229(One)-187(time)-187(I)-187(took)-187(another)-187(fella)-187(like)-187(you)-187([anthropologist])]TJ 0 -12.822 Td [(up)-299(there)-300(but)-299(when)-300(we)-299(got)-300(there)-299(we)-300(couldn't)-299(find)-300(nothing)-299(but)]TJ 0 -12.822 Td [(sand)-192(with)-192(a)-193(little)-192(water)-192(bubbling)-192(up)-193(in)-192(the)-192(middle.)-231(He)-192(wouldn't)]TJ 0 -12.822 Td [(believe)-287(me.)-359(I)-287(showed)-286(him)-287(where)-286(them)-287(womens)-286(had)-287(sat)-287(but)-286(I)]TJ 0 -12.822 Td [(think)-286(he)-287(thought)-286(I)-287(was)-286(lying.)-359(I)-287(guess)-286(them)-286(Water)-287(Babies)-286(did)]TJ 0 -12.821 Td [(something.)]TJ/F34 9.8629 Tf 43.564 0 Td [(\035)]TJ/F16 9.8629 Tf -28.221 -13.413 Td [(3.)]TJ/F34 9.8629 Tf 12.628 0 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(There)-343(is)-344(this)-343(women)-344(called)-343(Frances.)-531(She)-343(was)-344(up)-343(at)]TJ -32.35 -12.822 Td [(Blue)-258(Lake)-259(with)-259(her)-258(husband)-259(following)-258(him)-259(along)-258(the)-259(edge)-258(of)]TJ 0 -12.822 Td [(the)-317(lake.)-450(It)-317(was)-316(kind)-317(of)-317(dark.)-450(She)-317(saw)-317(them)-316(little)-317(footprints)]TJ 0 -12.822 Td [(right)-250(on)-250(top)-250(of)-250(her)-250(husband's)-250(in)-250(the)-250(sand.)]TJ/F34 9.8629 Tf 160.391 0 Td [(\035)]TJ/F16 9.8629 Tf -145.268 -13.413 Td [(4.)]TJ/F34 9.8629 Tf 11.97 0 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(I'll)-321(tell)-321(you)-322(what)-321(happened)-321(to)-321(me)-322(right)-321(in)-321(this)-321(house)]TJ -31.472 -12.822 Td [(about)-345(two)-344(years)-345(ago.)-534(I)-345(was)-344(in)-345(bed)-345(in)-344(that)-345(room)-345(there)-344(and)-345(I)]TJ 0 -12.822 Td [(felt)-219(these)-220(little)-219(hands)-219(creeping)-219(under)-220(the)-219(covers.)-240(I)-219(brushed)-219('em)]TJ 0 -12.821 Td [(away)-346(but)-347(they)-346(just)-347(come)-346(back.)-539(They)-347(tried)-346(to)-346(feel)-347(me)-346(down)]TJ 0 -12.822 Td [(here)-238([indicating)-239(his)-238(genitalia].)-246(I)-239(yelled)-238(for)-239(my)-238(mother)-239(and)-238(she)]TJ 0 -12.822 Td [(come)-250(in)-250(and)-250(said)-250(something)-251(and)-250(something)-250(went)-250(zip)-250(\050waving)]TJ 0 -12.822 Td [(arm)-284(violently)-284(to)-284(indicate)-284(direction\051)-284(right)-284(out)-284(of)-284(that)-284(window.)]TJ 0 -12.822 Td [(We)-303(looked)-303(out)-304(that)-303(way)-303([to)-303(the)-303(south],)-317(that's)-303(toward)-303(Walker)]TJ 0 -12.822 Td [(Lake.)-250(Everything)-250(was)-250(kind)-250(of)-250(hazy)-250(blue.)]TJ/F34 9.8629 Tf 159.967 0 Td [(\035)]TJ/F16 10.9091 Tf -167.648 -26.323 Td [(In)-326(light)-325(of)-326(Washo)-325(views)-326(about)-325(receiving)-326(shamanistic)-325(power,)]TJ -11.956 -13.549 Td [(it)-500(would)-501(appear)-500(that)-501(my)-500(informant)-500(was)-501(suggesting)-500(that)-500(this)]TJ 0 -13.549 Td [(visitation)-250(was)-250(a)-250(Water)-250(Baby)-250(making)-250(its)-250(patronage)-250(known.)]TJ/F16 9.8629 Tf 19.637 -25.596 Td [(5.)]TJ/F34 9.8629 Tf 11.952 0 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(My)-321(old)-320(uncle)-321(had)-320(been)-321(doctoring)-321(up)-320(by)-321(Genoa.)-462(He)-320(had)]TJ -16.331 -12.822 Td [(a)-391(tough)-392(one)-391(and)-392(fallen)-391(in)-392(the)-391(fire)-391(and)-392(burned)-391(all)-392(his)-391(pants)]TJ 0 -12.822 Td [(off)-294(and)-294(was)-294(walking)-293(wearing)-294(his)-294(coat)-294(like)-294(a)-294(skirt.)-381(He)-294(got)-294(by)]TJ 0 -12.822 Td [(Wally's)-214(Hot)-214(Springs)-214(when)-214(he)-214(felt)-214(like)-214(he)-214(wanted)-214(a)-214(bath.)-238(Them)]TJ 0 -12.822 Td [(Water)-255(Babies)-255(must)-255(have)-255(been)-255(working)-255(on)-255(him.)-264(He)-255(went)-255(over)]TJ 0 -12.821 Td [(by)-308(the)-309(creek)-308(and)-308(started)-308(to)-309(lean)-308(over)-308(and)-308(then)-309(he)-308(passed)-308(out)]TJ 0 -12.822 Td [(and)-394(fell)-393(into)-394(the)-393(water)-394(and)-393(there)-394(was)-393(a)-394(Water)-393(Baby)-1(.)-680(That)]TJ 0 -12.822 Td [(Water)-255(Baby)-255(said)-1(,)]TJ/F34 9.8629 Tf 70.836 0 Td [(\030)]TJ/F16 9.8629 Tf 3.284 0 Td [(come)-255(on,)]TJ/F34 9.8629 Tf 36.21 0 Td [(\031)]TJ/F16 9.8629 Tf 5.802 0 Td [(and)-255(he)-255(took)-256(him)-255(down)-255(to)-256(Water)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
78 0 obj <<
/Type /Page
/Contents 79 0 R
/Resources 77 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 67 0 R
>> endobj
77 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
80 0 obj
<< /S /GoTo /D (index5) >>
endobj
83 0 obj
(The Giants)
endobj
86 0 obj <<
/Length 4411      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(The)-250(Giants)-20308(13)]TJ
0 g 0 G
/F16 9.8629 Tf 19.637 -30.759 Td [(Baby)-329(country.)-488(The)-330(chief)-329(of)-329(the)-330(Water)-329(Babies)-329(lived)-330(in)-329(a)-329(big)]TJ 0 -12.822 Td [(house)-384(made)-384(out)-384(of)-384(that)-384(black)-384(shining)-383(rock)-384([obsidian].)-652(But)]TJ 0 -12.822 Td [(they)-260(didn't)-260(go)-260(there.)-279(The)-260(Water)-260(Baby)-260(said)]TJ/F34 9.8629 Tf 167.922 0 Td [(\030)]TJ/F16 9.8629 Tf 3.284 0 Td [(we)-260(got)-260(some)-260(girls)]TJ -171.206 -12.821 Td [(that)-287(want)-287(to)-287(give)-287(you)-287(something,)]TJ/F34 9.8629 Tf 131.142 0 Td [(\031)]TJ/F16 9.8629 Tf 6.116 0 Td [(and)-287(he)-287(took)-287(my)-287(uncle)-287(to)-288(a)]TJ -137.258 -12.822 Td [(place)-312(and)-313(there)-312(was)-312(five)-313(girls)-312(there.)-437(They)-312(all)-313(sat)-312(around)-312(my)]TJ 0 -12.822 Td [(uncle)-301(and)-301(sang)-302(him)-301(a)-301(song)-301(and)-302(told)-301(him)-301(that)-301(it)-302(was)-301(his)-301(song)]TJ 0 -12.822 Td [(from)-282(now)-283(on.)-347(Then)-282(the)-282(Water)-283(Baby)-282(took)-282(my)-283(uncle)-282(back)-282(and)]TJ 0 -12.822 Td [(then)-259(he)-259(said)-259(it)-258(was)-259(like)-259(waking)-259(up)-259(from)-259(a)-259(dream)-258(and)-259(there)-259(he)]TJ 0 -12.822 Td [(was)-250(laying)-250(in)-250(the)-250(creek)-250(down)-250(under)-250(a)-250(bunch)-250(of)-250(cattails.)]TJ/F34 9.8629 Tf 217.211 0 Td [(\035)]TJ/F16 6.904 Tf 4.379 3.616 Td [(4)]TJ/F16 9.8629 Tf -207.387 -16.925 Td [(6.)]TJ/F34 9.8629 Tf 9.79 0 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(There)-228(was)-228(this)-228(white)-228(man)-227(up)-228(here)-228(fishing.)-243(He)-228(caught)-228(a)]TJ -28.372 -12.822 Td [(Water)-215(Baby)-214(but)-215(he)-215(didn't)-214(know)-215(what)-214(it)-215(was.)-238(He)-215(thought)-215(it)-214(was)]TJ 0 -12.822 Td [(some)-322(kind)-322(of)-321(fish)-322(and)-322(took)-322(it)-321(to)-322(San)-322(Francisco)-322(and)-321(they)-322(put)]TJ 0 -12.821 Td [(it)-269(that)-269(place)-269(where)-268(they)-269(have)-269(a)-269(lotta)-269(fish)-269([aquarium].)-306(Captain)]TJ 0 -12.822 Td [(Jim)-327(went)-326(all)-327(the)-326(way)-327(down)-326(there)-327(to)-326(tell)-327(the)-326(mayor)-327(that)-326(they)]TJ 0 -12.822 Td [(had)-310(better)-310(let)-309(that)-310(Water)-310(Baby)-310(loose,)-325(but)-310(nobody)-309(would)-310(pay)]TJ 0 -12.822 Td [(no)-221(attention)-220(to)-221(him.)-240(Well)-221(you)-220(know)-221(they)-220(had)-221(a)-221(big)-220(earthquake)]TJ 0 -12.822 Td [(down)-278(there)-279(and)-278(the)-278(water)-278(came)-279(up)-278(around)-278(everything.)-335(When)]TJ 0 -12.822 Td [(it)-285(was)-285(all)-285(over)-285(that)-285(tank)-286(where)-285(they)-285(had)-285(the)-285(Water)-285(Baby)-285(was)]TJ 0 -12.821 Td [(empty.)]TJ/F34 9.8629 Tf 27.123 0 Td [(\035)]TJ/F16 15.7808 Tf -46.759 -62.431 Td [(The)-250(Giants)]TJ/F16 10.9091 Tf 0 -31.696 Td [(Washo)-430(mythology)-430(features)-430(several)-430(creatures)-430(which)-429(may)-430(each)]TJ 0 -13.549 Td [(have)-296(contributed)-296(to)-296(the)-295(wild)-296(men)-296(I)-296(will)-296(describe)-296(in)-296(this)-295(section.)]TJ 0 -13.549 Td [(Both)-565(Lowie)-566(and)-565(Dangberg)-565(report)-566(myths)-565(in)-566(which)-565(a)-565(giant,)]TJ 0 -13.55 Td [(Hangawuiwui,)-600(is)-529(the)-530(principal)-530(figure.)-1089(Although)-530(the)-529(myths)]TJ 0 -13.549 Td [(do)-334(not)-335(describe)-335(him,)-355(my)-335(informants)-334(generally)-335(picture)-334(him)-335(as)-334(a)]TJ 0 -13.549 Td [(colossus)-264(who)-264(hops)-265(on)-264(a)-264(single)-264(leg)-264(from)-265(the)-264(top)-264(of)-264(one)-264(mountain)]TJ 0 -13.549 Td [(to)-387(another.)-662(He)-387(has)-387(a)-388(single)-387(eye)-387(to)-387(match)-388(his)-387(single)-387(limb)-387(and)]TJ 0 -13.549 Td [(a)-381(proclivity)-381(for)-381(gobbling)-381(up)-381(Indians.)-643(Several)-380(miles)-381(southwest)]TJ
0 g 0 G
ET
q
1 0 0 1 46.771 87.722 cm
[]0 d 0 J 0.398 w 0 0 m 112.25 0 l S
Q
BT
/F16 5.9776 Tf 52.998 80.91 Td [(4)]TJ/F16 8.9664 Tf 5.729 -3.809 Td [(This)-315(story)-316(very)-316(closely)-315(parallels)-316(one)-315(recorded)-316(by)-315(James)-316(Hatch)-315(among)-316(the)]TJ -11.956 -10.959 Td [(Yokuts.)-250(Kroeber)-250(Anthropological)-250(Society)-250(Papers,)-250(No.)-250(19,)-250(Fall,)-250(1958.)]TJ
0 g 0 G
0 g 0 G
0 g 0 G
ET
endstream
endobj
85 0 obj <<
/Type /Page
/Contents 86 0 R
/Resources 84 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 67 0 R
>> endobj
81 0 obj <<
/D [85 0 R /XYZ 46.771 260.976 null]
>> endobj
84 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
89 0 obj <<
/Length 4678      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(14)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(of)-306(Gardnerville,)-320(in)-306(the)-306(hills)-306(overlooking)-306(Double)-306(Spring)-306(Flats,)-319(a)]TJ 0 -13.549 Td [(cave)-368(is)-369(known)-368(by)-369(the)-368(Washo)-369(as)-368(Hangawuiwui)-369(a)]TJ/F40 10.9091 Tf 218.777 0 Td [(r)]TJ/F16 10.9091 Tf 5.956 0 Td [(\277l)-368(\050the)-369(place)]TJ -224.733 -13.549 Td [(where)-362(Hangawuiwui)-362(lives\051.)-586(Present-day)-362(Indians)-362(tell)-362(a)-361(number)]TJ 0 -13.549 Td [(of)-267(stories)-268(about)-267(this)-267(giant)-267(and)-267(display)-268(a)-267(certain)-267(uneasiness)-267(when)]TJ 0 -13.55 Td [(they)-250(are)-250(near)-250(places)-250(he)-250(is)-250(supposed)-250(to)-250(haunt.)]TJ 11.956 -13.935 Td [(Another)-327(kind)-327(of)-327(giant)-328(appears)-327(in)-327(a)-327(myth)-327(reported)-327(by)-327(Lowie.)]TJ -11.956 -13.55 Td [(These)-591(beings)-591(appear)-592(to)-591(be)-591(considerably)-591(more)-591(human)-591(than)]TJ 0 -13.549 Td [(Hangawuiwui.)-971(Traditionally)-490(they)-490(camped)-490(south)-490(of)-490(Pyramid)]TJ 0 -13.549 Td [(Lake)-392(and)-391(terrorized)-392(the)-391(Paiutes.)-675(However,)-427(when)-391(one)-392(of)-391(their)]TJ 0 -13.549 Td [(number)-233(attempted)-233(to)-233(take)-233(fish)-233(from)-233(a)-233(Washo)-233(the)-233(tribe)-233(rallied)-232(and)]TJ 0 -13.549 Td [(routed)-224(the)-223(giants)-224(in)-224(a)-223(battle)-224(near)-224(Walker)-223(Lake.)-241(The)-224(giants)-224(did)-223(not)]TJ 0 -13.55 Td [(have)-354(bows)-353(and)-354(arrows.)-560(They)-354(fortified)-353(themselves)-354(behind)-353(rock)]TJ 0 -13.549 Td [(walls)-250(and)-250(threw)-250(stones.)]TJ 11.956 -13.936 Td [(According)-458(to)-457(my)-458(informant)-458(on)-457(the)-458(subject,)-510(the)-457(mountains)]TJ -11.956 -13.549 Td [(are)-336(still)-337(the)-336(home)-336(of)-336(a)-337(tribe)-336(of)]TJ/F34 10.9091 Tf 139.629 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(wild)-336(men.)]TJ/F34 10.9091 Tf 44.578 0 Td [(\035)]TJ/F16 10.9091 Tf 8.512 0 Td [(These)-336(people)-337(have)]TJ -197.562 -13.549 Td [(managed)-209(to)-209(hide)-208(the)-209(location)-209(of)-209(their)-209(camps)-208(so)-209(that)-209(no)-209(one)-208(knows)]TJ 0 -13.549 Td [(where)-315(they)-314(live.)-444(My)-315(informant)-315(felt)-314(that)-315(they)-315(were)-314(in)-315(fact)-314(some)]TJ 0 -13.549 Td [(kind)-257(of)-258(Indian.)-271(Despite)-258(the)-257(mythological)-257(ability)-258(of)-257(the)-257(Washo)-257(to)]TJ 0 -13.55 Td [(defeat)-323(the)-322(giants,)-341(modern)-323(stories)-323(about)-322(them)-323(suggest)-323(they)-322(have)]TJ 0 -13.549 Td [(a)-334(great)-334(deal)-334(of)-334(supernatural)-334(power)-334(in)-334(addition)-334(to)-334(their)-334(physical)]TJ 0 -13.549 Td [(prowess.)]TJ 11.956 -13.936 Td [(The)-428(following)-429(stories)-428(were)-428(told)-428(to)-429(me)-428(as)-428(contemporary)-428(or)]TJ -11.956 -13.549 Td [(relatively)-250(recent)-250(occurrences:)]TJ/F16 9.8629 Tf 19.637 -24.573 Td [(1.)]TJ/F34 9.8629 Tf 9.803 0 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(There)-232(is)-232(these)-232(wild)-232(fellas)-232(up)-232(in)-231(the)-232(mountains.)-244(I)-232(guess)-232(you)]TJ -14.182 -12.822 Td [(call)-262(them)-262(giants.)-286(One)-262(time)-263(there)-262(was)-262(an)-262(old)-262(man)-262(who)-262(had)-262(set)]TJ 0 -12.821 Td [(up)-294(a)-294(blind)-294(to)-294(hunt)-294(chipmunks,)-611(like)-294(I)-294(told)-294(you)-294(yesterday.)-382(He)]TJ/F16 7.9701 Tf -92.393 0 Td [([368])]TJ/F16 9.8629 Tf 92.393 -12.822 Td [(was)-222(up)-223(in)-222(the)-222(pine-nut)-222(hills)-223(and)-222(he)-222(had)-223(killed)-222(four)-222(chipmunks.)]TJ 0 -12.822 Td [(One)-185(of)-184(these)-185(fellas)-185(come)-185(along)-184(and)-185(he)-185(snatched)-185(up)-184(a)-185(chipmunk)]TJ 0 -12.822 Td [(and)-260(he)-260(ate)-260(it.)-280(Then)-260(he)-261(snatched)-260(another)-260(and)-260(ate)-260(it.)-280(He)-260(tried)-260(to)]TJ 0 -12.822 Td [(grab)-292(another)-292(but)-291(the)-292(old)-292(man)-292(wrestled)-292(with)-292(him)-291(and)-292(stopped)]TJ 0 -12.821 Td [(him)-380(from)-379(g)-1(etting)-379(the)-380(chipmunk)-380(and)-380(then)-379(he)-380(got)-380(away.)-639(He)]TJ 0 -12.822 Td [(tussled)-376(with)-376(that)-376(wild)-376(man)-376(and)-376(got)-376(away.)-628(But)-376(a)-376(long)-376(time)]TJ 0 -12.822 Td [(after)-262(when)-262(he)-262(was)-262(real)-262(old)-262(and)-261(went)-262(around)-262(with)-262(a)-262(long)-262(stick)]TJ 0 -12.822 Td [([staff],)-343(he)-324(went)-324(out)-324(walking)-324(and)-324(he)-324(didn't)-324(come)-324(back.)-472(They)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
88 0 obj <<
/Type /Page
/Contents 89 0 R
/Resources 87 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 67 0 R
>> endobj
91 0 obj <<
/D [88 0 R /XYZ 236.175 168.717 null]
>> endobj
87 0 obj <<
/Font << /F16 7 0 R /F40 90 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
94 0 obj <<
/Length 4677      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(The)-250(Giants)-20308(15)]TJ
0 g 0 G
/F16 9.8629 Tf 19.637 -30.759 Td [(went)-420(out)-419(looking)-420(for)-419(him)-420(and)-419(found)-420(his)-419(tracks)-420(leading)-419(up)]TJ 0 -12.822 Td [(the)-367(foot)-366(of)-367(Job's)-367(Peak)-367(and)-366(they)-367(ended)-367(there.)-600(His)-366(stick)-367(was)]TJ 0 -12.822 Td [(stuck)-271(in)-272(the)-271(ground)-272(and)-271(at)-272(the)-271(end)-272(of)-271(his)-272(tracks)-271(it)-272(looked)-271(like)]TJ 0 -12.821 Td [(something)-250(had)-250(snatched)-250(him)-250(up.)]TJ/F34 9.8629 Tf 127.39 0 Td [(\035)]TJ/F16 10.9091 Tf -135.071 -23.339 Td [(When)-325(I)-325(asked)-325(if)-325(the)-325(wild)-325(men)-325(had)-325(gotten)-325(him)-325(my)-325(informant)]TJ -11.956 -13.55 Td [(said)-242(he)-242(thought)-242(so.)-247(The)-242(theme)-241(of)-242(a)-242(wild)-242(man's)-242(attempting)-242(to)-241(take)]TJ 0 -13.549 Td [(part)-380(of)-381(a)-380(catch)-381(from)-380(a)-380(Washo)-381(recalls)-380(the)-380(myth)-381(as)-380(reported)-380(by)]TJ 0 -13.549 Td [(Lowie,)-236(although)-232(in)-232(the)-232(version)-232(he)-232(recorded)-232(the)-231(incident)-232(occurred)]TJ 0 -13.549 Td [(between)-334(Wadsworth)-334(and)-335(Sparks)-334(and)-334(the)-334(final)-334(battle)-334(took)-334(place)]TJ 0 -13.549 Td [(at)-237(Walker)-237(Lake,)-239(whereas)-237(my)-237(informant)-236(changed)-237(the)-237(locale)-237(to)-236(the)]TJ 0 -13.55 Td [(Carson)-250(Valley)-250(area.)]TJ/F16 9.8629 Tf 19.637 -22.611 Td [(2.)]TJ/F34 9.8629 Tf 14.976 0 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(My)-423(old)-423(grandfather)-422(had)-423(this)-423(happen)-423(to)-423(him.)-768(He)-423(was)]TJ -19.355 -12.822 Td [(hunting)-369(up)-370(by)-369(the)-370(Lake)-369([Tahoe],)-399(In)-370(them)-369(days)-370(hunters)-369(just)]TJ 0 -12.822 Td [(carried)-288(little)-288(thin)-288(rabbit)-288(skin)-289(blankets.)-364(They)-288(covered)-288(up)-288(their)]TJ 0 -12.822 Td [(front)-317(and)-316(put)-317(their)-316(back)-317(to)-316(the)-317(fire.)-449(My)-317(old)-317(grandfather)-316(was)]TJ 0 -12.821 Td [(just)-236(laying)-237(there)-236(when)-237(he)-236(noticed)-236(the)-237(fire)-236(going)-237(down)-236(\050maybe)]TJ 0 -12.822 Td [(that)-291(wild)-290(man)-291(did)-291(something)-290(to)-291(the)-290(fire\051.)-372(Pretty)-291(soon)-291(he)-290(saw)]TJ 0 -12.822 Td [(a)-254(big)-254(shadow.)-262(He)-254(was)-254(pretty)-254(scared)-254(and)-253(just)-254(laid)-254(there.)-262(Pretty)]TJ 0 -12.822 Td [(soon)-345(he)-345(felt)-346(a)-345(hand)-345(feeling)-345(his)-345(feet)-345(and)-346(in)-345(between)-345(his)-345(toes)]TJ 0 -12.822 Td [(and)-318(up)-317(his)-318(leg)-317(and)-318(all)-317(around)-318(his)-317(hole)-318([anus].)-452(Pretty)-318(soon)-317(it)]TJ 0 -12.822 Td [(reached)-219(his)-219(face)-219(and)-219(tried)-219(to)-219(put)-218(his)-219(finger)-219(in)-219(my)-219(grandfather's)]TJ 0 -12.821 Td [(mouth.)-376(My)-292(grandfather)-292(bit)-292(that)-292(finger)-291(real)-292(hard)-292(and)-292(the)-292(wild)]TJ 0 -12.822 Td [(man)-250(yelled)-250(and)-250(ran)-250(away.)]TJ/F34 9.8629 Tf 101.065 0 Td [(\035)]TJ/F16 10.9091 Tf -108.746 -23.339 Td [(I)-239(asked)-239(if)-239(the)-240(wild)-239(men)-239(still)-239(existed)-239(and)-239(my)-239(informant)-240(replied:)]TJ/F34 10.9091 Tf -11.955 -13.549 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(Sure.)-247(They)-243(are)-242(up)-242(there)-242(in)-242(the)-242(mountains.)-248(They)-242(are)-242(pretty)-242(smart)]TJ -4.844 -13.55 Td [(and)-358(you)-359(can't)-358(see)-359(them.)-575(But)-358(us)-359(Washo)-358(can)-359(hear)-358(them)-358(talking.)]TJ 0 -13.549 Td [(We)-293(can)-294(understand)-293(their)-293(language.)-380(I)-293(have)-293(thought)-294(a)-293(lot)-293(about)-293(it)]TJ 0 -13.549 Td [(and)-267(they)-268(should)-267(have)-267(called)-268(some)-267(Washo)-267(over)-268(to)-267(Oroville)-267(when)]TJ 0 -13.549 Td [(they)-243(caught)-244(that)-243(fella)-244(over)-243(there.)-248(I)-243(read)-244(about)-243(it)-244(in)-243(the)-243(newspaper)]TJ 0 -13.549 Td [(when)-324(I)-324(was)-324(younger.)-471(I)-324(know)-324(they)-324(had)-324(a)-324(lot)-324(of)-324(them)-323(California)]TJ 0 -13.55 Td [(Indians)-226(come)-227(up)-226(there)-227(but)-226(they)-227(couldn't)-226(understand)-226(him.)-243(I'll)-226(bet)-226(a)]TJ 0 -13.549 Td [(Washo)-266(could)-265(have)-266(understood)-266(him.)]TJ/F34 10.9091 Tf 154.906 0 Td [(\035)]TJ/F16 10.9091 Tf 7.742 0 Td [(I)-266(asked)-265(if)-266(he)-266(thought)-265(it)-266(had)]TJ -162.648 -13.549 Td [(been)-250(a)-250(wild)-250(man)-250(and)-250(he)-250(nodded)-250(in)-250(affirmation.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
93 0 obj <<
/Type /Page
/Contents 94 0 R
/Resources 92 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 95 0 R
>> endobj
92 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
96 0 obj
<< /S /GoTo /D (index6) >>
endobj
99 0 obj
(The Coyote And Other Figures)
endobj
102 0 obj <<
/Length 3825      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(16)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 11.956 -30.759 Td [(The)]TJ/F34 10.9091 Tf 22.338 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(wild)-493(man)]TJ/F34 10.9091 Tf 43.556 0 Td [(\035)]TJ/F16 10.9091 Tf 10.218 0 Td [(of)-493(course)-492(was)-493(the)-493(now-famous)-492(Ishi,)-554(the)]TJ -92.911 -13.549 Td [(last)-451(of)-451(the)-450(Southern)-451(Yana)-451(who)-450(wandered)-451(half)-451(starved)-451(into)-450(a)]TJ 0 -13.549 Td [(slaughterhouse)-250(in)-250(Oroville)-250(in)-250(1911.)]TJ/F16 15.7808 Tf 0 -61.906 Td [(The)-250(Coyote)-250(And)-250(Other)-250(Figures)]TJ/F16 10.9091 Tf 0 -31.404 Td [(Washo)-334(myths)-335(contain)-334(a)-335(number)-334(of)-335(tales)-334(about)-334(a)-335(bumbling,)-355(not)]TJ 0 -13.549 Td [(very)-316(bright,)-333(generally)-316(malevolent)-316(Coyote,)-332(who)-316(as)-316(a)-316(companion)]TJ 0 -13.549 Td [(of)-339(Wolf)-338(seems)-339(to)-338(devote)-339(a)-338(great)-339(deal)-338(of)-339(time)-338(to)-339(eating)-338(Indians)]TJ 0 -13.55 Td [(and)-250(to)-250(sexual)-250(misadventures.)]TJ 11.956 -13.978 Td [(Modern)-530(Washo)-531(seem)-530(less)-531(willing)-530(than)-531(their)-530(forebears)-530(to)]TJ -11.956 -13.549 Td [(weave)-595(Coyote)-595(into)-595(tales)-595(but)-595(are)-595(no)-595(less)-595(conscious)-595(of)-594(his)]TJ 0 -13.549 Td [(malevolent)-409(presence.)-727(Peyotists)-409(often)-409(see)-409(visions)-409(or)-409(dream)-408(of)]TJ 0 -13.55 Td [(Coyote)-300(\050d'Azevedo)-300(and)-299(Merriam)-300(1957\051,)-312(and)-300(quick)-300(asides)-299(about)]TJ 0 -13.549 Td [(Coyote's)-444(influence)-443(are)-444(apt)-444(to)-444(come)-443(up)-444(in)-444(conversation)-443(either)]TJ 0 -13.549 Td [(as)-498(tentative)-498(jokes)-499(or)-498(in)-498(seriousness.)-995(One)-498(tale)-498(of)-498(a)-498(modern)]TJ 0 -13.549 Td [(occurrence)-487(involving)-487(Coyote)-486(did)-487(come)-487(my)-487(way)-487(through)-486(the)]TJ 0 -13.549 Td [(kindness)-308(of)-308(Warren)-308(d'Azevedo.)-423(His)-308(informant)-308(was)-308(the)-307(brother-)]TJ 0 -13.55 Td [(in-law)-213(of)-213(my)-212(own)-213(informant)-213(and,)-220(like)-213(his)-213(kinsman,)-220(a)-212(semimystic,)]TJ 0 -13.549 Td [(very)-359(conscious)-359(of)-359(his)-358(Indianness)-359(and)-359(credited)-359(by)-359(other)-358(Washo)]TJ 0 -13.549 Td [(with)-250(powers)-250(beyond)-250(those)-250(of)-250(an)-250(ordinary)-250(man)-250(in)-250(hunting.)]TJ/F34 9.8629 Tf 19.637 -24.786 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(I)-459(was)-460(staying)-460(in)-459(this)-460(shack)-460(with)-459(the)-460(guy)-460(who)-459(owned)-460(it.)]TJ -4.379 -12.822 Td [(One)-268(night)-268(he)-269(didn't)-268(come)-268(home)-268(but)-268(I)-269(kept)-268(hearing)-268(something)]TJ 0 -12.822 Td [(walking)-283(around)-283(that)-283(shack.)-349(The)-283(next)-283(morning)-283(when)-283(that)-283(guy)]TJ 0 -12.821 Td [(came)-296(home)-296(he)-295(was)-296(all)-296(tired)-296(out)-296(and)-296(there)-295(was)-296(Coyote)-296(tracks)]TJ 0 -12.822 Td [(all)-293(around)-292(that)-293(shack.)-378(I)-292(got)-293(my)-292(gun)-293(and)-293(told)-292(that)-293(guy)-293(to)-292(stay)]TJ 0 -12.822 Td [(away)-250(from)-250(me)]TJ/F34 9.8629 Tf 56.968 0 Td [(\035)]TJ/F16 9.8629 Tf 6.845 0 Td [(\050d'Azevedo\051.)]TJ/F16 10.9091 Tf -71.494 -25.514 Td [(The)-360(A)]TJ/F40 10.9091 Tf 28.767 0 Td [(r)]TJ/F16 10.9091 Tf 5.956 0 Td [(,)-388(a)-360(huge)-360(man-eating)-360(bird)-360(described)-360(in)-360(Lowie's)-360(myth)]TJ -46.679 -13.549 Td [(number)-181(13,)-195(is)-181(no)-182(longer)-181(alive,)-195(but)-181(according)-181(to)-181(several)-181(informants)]TJ 0 -13.549 Td [(the)-287(creature's)-286(bones)-287(or)-286(at)-287(least)-286(the)-287(island)-286(on)-287(which)-286(it)-287(nested)-286(can)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
101 0 obj <<
/Type /Page
/Contents 102 0 R
/Resources 100 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 95 0 R
>> endobj
97 0 obj <<
/D [101 0 R /XYZ 93.543 465.163 null]
>> endobj
100 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R /F40 90 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
105 0 obj <<
/Length 4223      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(The)-250(Coyote)-250(And)-250(Other)-250(Figures)-12281(17)]TJ
0 g 0 G
 0 -30.759 Td [(be)-329(seen)-330(by)-329(people)-330(flying)-329(over)-330(the)-329(lake)-330(because)-329(they)-330(are)-329(only)-329(a)]TJ 0 -13.549 Td [(bit)-392(below)-392(the)-392(surface.)-675(Washo)-392(insist)-392(that)-392(white)-392(airplane)-391(pilots)]TJ 0 -13.549 Td [(see)-390(the)-389(shape)-390(of)-389(the)-390(island)-389(daily)-389(but)-390(keep)-389(silent)-390(because)-389(they)]TJ 0 -13.549 Td [(don't)-279(want)-280(to)-279(confirm)-279(an)-279(Indian)-280(story.)-337(One)-279(day)-280(on)-279(a)-279(trip)-279(around)]TJ 0 -13.55 Td [(Lake)-219(Tahoe)-220(my)-219(Indian)-219(companion,)-225(a)-220(sometime)-219(leader)-219(among)-219(the)]TJ 0 -13.549 Td [(Washo)-217(asked:)]TJ/F34 10.9091 Tf 63.078 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(If)-217(we)-217(get)-216(that)-217(money)-217(from)-216(our)-217(claim)-217(do)-217(you)-216(think)]TJ -67.921 -13.549 Td [(one)-323(of)-323(them)-323(archeologist)-323(fellas)-323(could)-323(go)-323(down)-323(under)-323(the)-322(water)]TJ 0 -13.549 Td [(and)-250(find)-250(that)-250(there)-250(a)]TJ/F40 10.9091 Tf 87.251 0 Td [(r)]TJ/F16 10.9091 Tf 8.684 0 Td [(bird's)-250(skeleton?)]TJ/F34 10.9091 Tf 67.712 0 Td [(\035)]TJ/F16 10.9091 Tf -151.691 -13.549 Td [(The)-384(foregoing)-384(paragraphs)-384(illustrate)-384(the)-384(tenacity)-384(with)-384(which)]TJ -11.956 -13.55 Td [(Washo)-194(mythology)-194(has)-194(maintained)-194(itself)-193(among)-194(these)-194(people.)-231(The)]TJ 0 -13.549 Td [(entirety)-197(of)-197(many)-197(of)-197(the)-198(myths)-197(is)-197(no)-197(longer)-197(part)-197(of)-197(the)-197(repertoire)-197(of)]TJ 0 -13.549 Td [(every)-341(adult)-340(Washo,)-364(but)-340(variations,)-364(on-the-spot)-340(reconstructions,)]TJ 0 -13.549 Td [(and)-302(the)-302(introduction)-303(of)-302(mythological)-302(themes)-302(into)-302(contemporary)]TJ 0 -13.549 Td [(stories)-243(of)-244(a)-243(secular)-243(nature)-244(are)-243(definitely)-243(part)-244(of)-243(the)-243(oral)-243(literature)]TJ 0 -13.55 Td [(of)-250(the)-250(Washo.)]TJ 11.956 -13.549 Td [(It)-219(is)-218(interesting)-219(to)-218(note)-219(that)-218(some)-219(aspects)-218(of)-219(Washo)-219(mythol)1(ogy)]TJ -11.956 -13.549 Td [(appear)-493(to)-493(have)-493(more)-493(viability)-493(than)-493(others.)-979(Thus)-493(the)-493(Water)]TJ 0 -13.549 Td [(Baby)-359(remains)-358(an)-359(important)-359(and)-359(vital)-358(aspect)-359(of)-359(modern)-358(Washo)]TJ 0 -13.549 Td [(life,)-395(as)-365(does)-366(the)-366(Coyote.)-597(The)-366(twin)-366(weasels)-365(have)-366(lost)-366(much)-365(of)]TJ 0 -13.55 Td [(their)-355(appeal,)-381(as)-355(has)-355(the)-355(giant)-354(Hangawuiwui.)-565(The)-355(giants)-355(of)-354(the)]TJ 0 -13.549 Td [(mountains)-365(are)-365(acknowledged)-365(to)-365(be)-365(alive)-365(today)-365(but)-365(are)-364(seldom)]TJ 0 -13.549 Td [(referred)-299(to,)-312(whereas)-299(Coyote)-299(and)-299(Water)-299(Baby)-299(are)-299(almost)-299(always)]TJ 0 -13.549 Td [(mentioned)-428(and)-428(spoken)-428(of)-429(as)-428(living)-428(entities)-428(even)-428(by)-428(the)-428(most)]TJ 0 -13.549 Td [(progressive)-250(Washo.)]TJ 11.956 -13.55 Td [(Except)-475(for)-474(the)-475(making)-474(of)-475(offerings)-475(to)-474(nature,)-531(which)-474(may)]TJ -11.956 -13.549 Td [(be)-281(defined)-280(as)-281(purely)-281(religious,)-288(other)-281(religious)-280(or)-281(ritual)-280(activities)]TJ 0 -13.549 Td [(dealing)-167(with)-168(what)-167(we)-168(would)-167(call)-168(the)-167(supernatural)-168(are)-167(so)-167(integrated)]TJ 0 -13.549 Td [(with)-181(other)-181(aspects)-180(of)-181(Washo)-181(life)-181(as)-180(to)-181(be)-181(almost)-181(inseparable.)-226(Thus)]TJ 0 -13.549 Td [(in)-256(describing)-256(the)-256(religious)-257(activities)-256(of)-256(the)-256(Washo)-256(I)-256(will)-256(proceed)]TJ 0 -13.549 Td [(through)-197(various)-196(phases)-197(of)-196(their)-197(life,)-207(pointing)-197(out)-196(the)-197(ritual)-196(actions)]TJ 0 -13.55 Td [(which)-250(are)-250(part)-250(of)-250(Washo)-250(behavior)-250(in)-250(specific)-250(situations.)]TJ/F16 7.9701 Tf 291.024 -29.64 Td [([369])]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
104 0 obj <<
/Type /Page
/Contents 105 0 R
/Resources 103 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 95 0 R
>> endobj
106 0 obj <<
/D [104 0 R /XYZ 46.771 82.059 null]
>> endobj
103 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R /F40 90 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
107 0 obj
<< /S /GoTo /D (index7) >>
endobj
110 0 obj
(Curing And Shamanism (2469-2541))
endobj
113 0 obj <<
/Length 3887      
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 93.543 479.321 Td [(Curing)-279(And)-279(Shamanism)]TJ 0 -24.647 Td [(\0502469-2541\051)]TJ/F16 10.9091 Tf 0 -32.977 Td [(The)-173(Washo)-173(word)-173(da\277man\277li\277)-174(has)-173(a)-173(wide)-173(range)-173(of)-173(meanings)-173(which)]TJ 0 -13.549 Td [(include)-396(almost)-397(all)-396(people)-396(with)-396(supernatural)-397(powers,)-432(including)]TJ 0 -13.549 Td [(curers)-539(of)-538(several)-539(orders.)-1116(The)-539(terms)-538(which)-539(they)-539(use)-538(when)]TJ 0 -13.55 Td [(discussing)-229(the)-229(subject)-229(in)-229(English)-229(are)-229(somewhat)-229(more)-229(precise)-229(and)]TJ 0 -13.549 Td [(will)-250(be)-250(used)-250(in)-250(this)-250(paper.)]TJ 11.956 -13.66 Td [(The)-281(Washo)-280(make)-281(a)-281(distinction)-280(between)-281(curers)-281(\0502594-96\051)-280(and)]TJ -11.956 -13.549 Td [(Indian)-346(doctors.)-538(The)-347(latter,)-370(as)-346(will)-346(be)-346(shown,)-370(are)-346(true)-346(shamans)]TJ 0 -13.549 Td [(whereas)-191(the)-192(former)-191(are)-191(somewhat)-191(less)-192(powerful.)-230(Curers)-191(appear)-191(to)]TJ 0 -13.55 Td [(be)-254(women)-253(who)-254(have)-254(certain)-253(powers)-254(revealed)-254(to)-253(them)-254(in)-253(dreams.)]TJ 0 -13.549 Td [(Such)-310(persons)-309(are)-310(usually)-309(members)-309(of)-310(what)-309(the)-310(Washo)-309(describe)]TJ 0 -13.549 Td [(as)-387(a)]TJ/F34 10.9091 Tf 22.366 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(doctor)-387(family.)]TJ/F34 10.9091 Tf 63.301 0 Td [(\035)]TJ/F16 10.9091 Tf 9.061 0 Td [(An)-387(informant)-386(described)-387(the)-386(activities)-387(of)]TJ -99.572 -13.549 Td [(such)-250(a)-250(curer:)]TJ/F34 9.8629 Tf 19.637 -23.196 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(My)-227(mother)-228(was)-227(a)-227(curer.)-242(She)-228(just)-227(smoke)-227(and)-227(talk.)-243(You)-227(would)]TJ -4.379 -12.821 Td [(meet)-207(her)-206(on)-207(the)-206(way)-207(to)-206(town)-207(mebbe)-206(and)-207(say)]TJ/F34 9.8629 Tf 171.57 0 Td [(\030)]TJ/F16 9.8629 Tf 3.285 0 Td [(I)-206(don't)-207(feel)-207(good)]TJ/F34 9.8629 Tf 63.217 0 Td [(\031)]TJ/F16 9.8629 Tf -238.072 -12.822 Td [(and)-232(she'd)-232(just)-231(sit)-232(down)-232(and)-232(smoke)-232(and)-232(talk)-232([pray?])-243(a)-232(little)-232(and)]TJ 0 -12.822 Td [(then)-222(mebbe)-223(tell)-222(you)-222(what)-223(was)-222(wrong)-223(and)-222(what)-222(you)-223(should)-222(do.)]TJ/F34 9.8629 Tf 15.316 -12.933 Td [(\034)]TJ/F16 9.8629 Tf 4.38 0 Td [(Along)-341(about)-341(the)-340(first)-341(war)-341(I)-341(got)-341(sick)-341(and)-340(couldn't)-341(make)]TJ -19.696 -12.822 Td [(no)-269(water)-270(at)-269(all.)-309(My)-269(mother)-270(smoked)-269(and)-270(then)-269(spread)-270(ashes)-269(all)]TJ 0 -12.822 Td [(over)-255(my)-254(belly)-255(and)-254(talked)-255(some)-254(and)-255(after)-254(that)-255(I)-254(pa)-1(ssed)-254(a)-255(lot)-254(of)]TJ 0 -12.821 Td [(blood)-250(and)-250(got)-250(better.)]TJ/F34 9.8629 Tf 81.635 0 Td [(\035)]TJ/F16 6.904 Tf 4.379 3.615 Td [(5)]TJ/F16 10.9091 Tf -93.695 -27.538 Td [(Far)-255(more)-256(important)-255(than)-256(the)-255(curers,)-257(however,)-257(were)-255(the)-255(Indian)]TJ -11.956 -13.549 Td [(doctors.)-661(Such)-387(men)-387(were)-387(never)-387(exclusive)-387(specialists)-387(and)-386(were)]TJ 0 -13.55 Td [(apparently)-290(expected)-289(to)-290(share)-289(in)-290(the)-289(work)-290(of)-289(hunting)-290(and)-289(fishing)]TJ
0 g 0 G
ET
q
1 0 0 1 93.543 98.765 cm
[]0 d 0 J 0.398 w 0 0 m 112.25 0 l S
Q
BT
/F16 5.9776 Tf 99.77 91.869 Td [(5)]TJ/F16 8.9664 Tf 5.729 -3.809 Td [(Regular)-486(Indian)-486(doctors)-486(were)-486(forbidden)-486(to)-486(treat)-486(members)-486(of)-486(their)-486(own)]TJ -11.956 -10.959 Td [(families,)-202(a)-191(prohibition)-191(which)-190(appears)-191(not)-190(to)-191(have)-190(extended)-191(to)-190(a)-191(non-shamanistic)]TJ 0 -10.959 Td [(curer.)]TJ
0 g 0 G
0 g 0 G
0 g 0 G
ET
endstream
endobj
112 0 obj <<
/Type /Page
/Contents 113 0 R
/Resources 111 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 95 0 R
>> endobj
108 0 obj <<
/D [112 0 R /XYZ 93.543 529.134 null]
>> endobj
111 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
116 0 obj <<
/Length 4587      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Curing)-250(And)-250(Shamanism)-250(\0502469-2541\051)-9808(19)]TJ
0 g 0 G
 0 -30.759 Td [(with)-396(less)-396(gifted)-396(men.)-689(With)-396(the)-396(introduction)-396(of)-396(money)-396(by)-396(the)]TJ 0 -13.549 Td [(whites,)-606(shamans)-534(appear)-535(to)-534(have)-535(approached)-534(something)-534(like)]TJ 0 -13.549 Td [(specialization,)-235(charging)-231(fees)-230(of)-231(up)-231(to)-231(twenty)-231(dollars)-231(a)-231(session)-230(for)]TJ 0 -13.549 Td [(their)-250(services.)]TJ 11.956 -14.777 Td [(Until)-156(the)-157(middle)-156(1930's)-156(there)-157(were)-156(a)-156(number)-157(of)-156(shamans)-156(among)]TJ -11.956 -13.549 Td [(the)-359(Washo)-359(\050Stewart)-359(1944\051.)-577(However,)-386(with)-359(the)-359(introduction)-359(of)]TJ 0 -13.549 Td [(the)-479(peyote)-479(cult,)-536(which)-479(among)-479(the)-479(Washo)-479(is)-479(concerned)-478(with)]TJ 0 -13.55 Td [(curing,)-272(the)-268(shaman)-268(was)-268(superseded.)-304(Today)-268(only)-268(a)-268(single)-267(Washo)]TJ 0 -13.549 Td [(practices)-210(shamanistic)-210(curing.)-237(Interestingly)-210(enough)-210(this)-210(man,)-218(now)]TJ 0 -13.549 Td [(seventy-five,)-327(was)-312(an)-311(informant)-312(of)-311(Lowie's)-312(in)-311(the)-312(1920's,)-327(and)-311(at)]TJ 0 -13.549 Td [(that)-275(time)-276(Lowie)-275(described)-275(him)-275(as)-276(a)-275(sophisticated)-275(young)-275(Washo,)]TJ 0 -13.549 Td [(somewhat)-235(mystic)-234(and)-235(with)-235(shamanistic)-234(ambitions)-235(\050Lowie)-234(1939\051.)]TJ 11.956 -14.777 Td [(This)-278(man,)-286(Henry)-278(Rupert,)-286(spent)-278(ten)-279(years)-278(in)-279(the)-278(Indian)-278(school)]TJ -11.956 -13.549 Td [(at)-240(the)-240(Stewart)-240(Agency)-239(and)-240(after)-240(graduation)-240(worked)-240(for)-240(a)-239(number)]TJ 0 -13.549 Td [(of)-401(years)-401(in)-401(a)-401(printing)-400(plant)-401(in)-401(Reno.)-703(When)-401(questioned)-400(about)]TJ 0 -13.55 Td [(the)-465(old)-465(days)-464(he)-465(was)-465(a)-465(fair)-464(informant,)-519(seldom)-465(offering)-464(more)]TJ 0 -13.549 Td [(information)-223(than)-223(was)-223(asked)-223(for)-223(and)-223(clearly)-223(enjoying)-223(the)-222(business)]TJ 0 -13.549 Td [(of)-268(making)-267(a)-268(white)-268(man)-268(work)-267(for)-268(every)-268(scrap)-268(of)-267(information.)-303(He)]TJ 0 -13.549 Td [(was)-317(also)-317(given)-317(to)-316(dropping)-317(subtle)-317(hints)-317(and)-317(waiting)-317(with)-316(stolid)]TJ 0 -13.549 Td [(indifference)-443(to)-443(see)-443(if)-443(I)-443(had)-443(been)-443(alert.)-829(He)-443(did)-443(not)-443(deny)-443(his)]TJ 0 -13.549 Td [(shamanistic)-321(practices)-322(but)-321(was)-322(less)-321(than)-321(willing)-322(to)-321(discuss)-321(them)]TJ 0 -13.55 Td [(in)-250(detail.)]TJ 11.956 -14.776 Td [(His)-623(equipment,)-716(he)-623(admitted)-622(\050but)-623(refused)-623(to)-623(show)-622(me\051,)]TJ -11.956 -13.549 Td [(consisted)-462(of)-462(a)-461(butterfly-cocoon)-462(rattle,)-515(an)-462(eagle-bone)-461(whistle,)]TJ 0 -13.55 Td [(and)-451(a)-451(feather)-451(headband.)]TJ/F34 10.9091 Tf 119.469 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(I)-451(don't)-451(really)-450(do)-451(nothing)-451(but)-451(help)]TJ -124.313 -13.549 Td [(nature,)]TJ/F34 10.9091 Tf 29.989 0 Td [(\035)]TJ/F16 10.9091 Tf 8.891 0 Td [(he)-371(said.)-613(When)-371(I)-371(replied)-371(that)-371(only)-371(some)-371(peopl)1(e)-371(know)]TJ -38.88 -13.549 Td [(how)-344(to)-344(help)-343(nature)-344(he)-344(was)-344(gratified)-343(and)-344(smiled.)]TJ/F34 10.9091 Tf 220.914 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(Oh)-344(well,)-367(it's)]TJ -225.758 -13.549 Td [(all)-462(psychological)-463(anyway,)]TJ/F34 10.9091 Tf 118.252 0 Td [(\035)]TJ/F16 10.9091 Tf 9.888 0 Td [(he)-462(answered,)-516(confirming)-462(Lowie's)]TJ -128.14 -13.549 Td [(description)-250(of)-250(him)-250(as)-250(a)-250(sophisticate.)]TJ 11.956 -14.777 Td [(He)-212(is)-212(noted)-211(for)-212(his)-212(rather)-212(atypical)-211(practice)-212(of)-212(tending)-212(a)-211(garden,)]TJ -11.956 -13.549 Td [(which)-315(consists)-314(mostly)-315(of)-314(fruit)-315(trees,)-331(and)-314(for)-315(his)-314(open)-315(liking)-314(for)]TJ 0 -13.549 Td [(old-fashioned)-309(foods,)-325(which)-309(he)-310(collects,)-324(including)-310(fly)-309(grubs)-309(and)]TJ 0 -13.55 Td [(locusts.)-701(I)-400(was)-400(not)-400(able)-400(to)-400(observe)-400(his)-401(curing)-400(procedures,)-437(but)]TJ 0 -13.549 Td [(they)-257(were)-257(described)-257(to)-257(me)-257(by)-257(another)-257(informant,)-258(a)-257(seventy-five-)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
115 0 obj <<
/Type /Page
/Contents 116 0 R
/Resources 114 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 95 0 R
>> endobj
114 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
119 0 obj <<
/Length 4351      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(20)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(year-old)-305(woman,)-318(considered)-305(one)-305(of)-305(the)-305(most)-305(progressive)-305(of)-304(the)]TJ 0 -13.549 Td [(residents)-250(of)-250(Dresslerville.)]TJ/F34 9.8629 Tf 19.637 -27.371 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(I)-349(took)-349(my)-349(granddaughter)-349(to)-350(Rupert)-349(after)-349(the)-349(white)-349(doctors)]TJ -4.379 -12.821 Td [(didn't)-204(do)-203(nothing)-204(for)-204(her.)-234(He)-204(don't)-204(doctor)-203(in)-204(the)-204(real)-203(old)-204(Indian)]TJ 0 -12.822 Td [(way)-392([a)-391(phrase)-392(I)-391(later)-392(learned)-391(meant)-392(that)-392(he)-391(did)-392(not)-392(hold)-391(a)]TJ 0 -12.822 Td [(series)-284(of)-284(four)-285(one-night)-284(sessions)-284(but)-284(only)-285(a)-284(short)-284(ceremony].)]TJ 0 -12.822 Td [(He)-236(don't)-236(give)-236(you)-236(nothing,)-239(just)-235(sings)-236(and)-236(prays)-236(and)-236(talks)-236(over)]TJ 0 -12.822 Td [(you)-299(for)-299(a)-299(while.)-396(He)-299(has)-299(a)-299(rattle)-299(and)-299(a)-299(whistle)-298(and)-299(a)-299(band)-299(on)]TJ 0 -12.822 Td [(his)-250(head.)-250(After)-250(we)-250(went)-250(to)-250(him)-250(my)-250(granddaughter)-250(got)-250(well.)]TJ/F34 9.8629 Tf 233.386 0 Td [(\035)]TJ/F16 10.9091 Tf -241.067 -28.097 Td [(Another)-801(informant,)-939(the)-802(man)-801(who)-801(was)-802(cured)-801(by)-801(his)]TJ -11.956 -13.55 Td [(mother)]TJ/F34 10.9091 Tf 30.906 0 Td [(\024)]TJ/F16 10.9091 Tf 10.909 0 Td [(curiously)-342(another)-342(graduate)-343(of)-342(the)-342(Stewart)-342(School)-342(and)]TJ -41.815 -13.549 Td [(outwardly)-485(a)-485(progressive)-486(Indian)]TJ/F34 10.9091 Tf 143.123 0 Td [(\024)]TJ/F16 10.9091 Tf 10.909 0 Td [(was)-485(a)-485(veritable)-486(fountain)-485(of)]TJ -154.032 -13.549 Td [(shamanistic)-455(knowledge.)-863(His)-455(father)-455(and)-454(maternal)-455(uncle)-454(were)]TJ 0 -13.549 Td [(both)-301(well-known)-301(shamans.)-402(Although)-301(he)-301(insisted)-301(that)-301(he)-301(had)-300(no)]TJ 0 -13.549 Td [(particular)-226(power)-226(himself,)-231(other)-226(Indians)-226(generally)-226(claimed)-226(that)-226(he)]TJ 0 -13.55 Td [(had)-183(certain)-182(hunting)-183(medicines)-182(which)-183(assisted)-183(him)-182(in)-183(taking)-182(game.)]TJ 0 -13.549 Td [(There)-263(is)-264(little)-263(doubt)-263(that)-264(he)-263(believed)-263(he)-264(had)-263(been)-263(approached)-263(by)]TJ 0 -13.549 Td [(spirits)-253(offering)-252(him)-253(shamanistic)-253(power.)-258(His)-253(life)-252(story)-253(was)-253(a)-252(long)]TJ 0 -13.549 Td [(recital)-181(of)-181(ailments)-181(and)-181(mystic)-181(occurrences.)-227(The)-181(ailments,)-194(coupled)]TJ 0 -13.549 Td [(with)-348(his)-348(attitude)-348(about)-348(spiritual)-348(power,)-372(suggested)-348(strongly)-348(that)]TJ 0 -13.55 Td [(his)-365(suffering)-364(had)-365(been)-364(due)-364(to)-365(a)-364(rejection)-365(of)-364(the)-365(power)-364(offered)]TJ 0 -13.549 Td [(\050Whiting)-381(1950\051.)-643(He)-381(supplied)-381(the)-381(following)-381(account)-381(about)-381(the)]TJ 0 -13.549 Td [(process)-250(of)-250(becoming)-250(a)-250(shaman.)]TJ/F34 9.8629 Tf 19.637 -27.37 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(Young)-183(fellows)-182(sometimes)-183(have)-182(dreams)-183(but)-182(usually)-183(they)-182(don't)]TJ -4.379 -12.822 Td [(pay)-329(no)-329(attention)-329(to)-330(them.)-487(But)-329(when)-329(you)-330(get)-329(older)-329(and)-329(keep)]TJ 0 -12.822 Td [(having)-306(dreams)-306(you)-305(begin)-306(to)-306(pay)-306(attention.)-417(Maybe)-306(you)-305(see)-306(a)]TJ 0 -12.822 Td [(bear)-329(or)-330(a)-329(rattlesnake)-330(or)-329(Water)-329(Baby)-330(or)-329(anything.)-488(It)-330(tell)-329(you)]TJ 0 -12.822 Td [(that)-310(you)-309(are)-310(going)-310(to)-309(be)-310(a)-310(doctor.)-429(The)-309(next)-310(morning)-309(you)-310(go)]TJ 0 -12.822 Td [(out)-380(and)-380(bathe)-379(and)-380(pray.)-639(This)-380(thing)-380(keeps)-380(coming)-379([in)-380(your)]TJ 0 -12.821 Td [(dreams].)-490(It)-330(may)-330(take)-330(any)-330(form,)-349(a)-330(skeleton)-330(or)-330(an)-330(animal)-330(but)]TJ 0 -12.822 Td [(you)-394(know)-395(it's)-394(always)-395(the)-394(same)-395(thing)-394(as)-395(the)-394(first)-395(time,)-430(just)]TJ 0 -12.822 Td [(taking)-250(different)-250(shapes.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
118 0 obj <<
/Type /Page
/Contents 119 0 R
/Resources 117 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 95 0 R
>> endobj
117 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
122 0 obj <<
/Length 5326      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Curing)-250(And)-250(Shamanism)-250(\0502469-2541\051)-9808(21)]TJ
0 g 0 G
/F34 9.8629 Tf 35.302 -30.759 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(These)-376(dreams)-376(keep)-377(coming)-376(for)-376(four,)-408(sometimes)-376(eight,)]TJ -20.044 -12.822 Td [(years)-274(to)-274(get)-274(you)-274(to)-274(be)-274(a)-275(good)-274(doctor.)-322(But)-274(during)-274(all)-274(this)-274(time)]TJ 0 -12.822 Td [(you)-334(don't)-335(get)-334(no)-334(song.)-503(But)-334(they)-334(do)-335(give)-334(you)-334(your)-334(water.)-503(It)]TJ 0 -12.821 Td [(tells)-275(you)-276(some)-275(certain)-275(place)-276(up)-275(in)-275(the)-276(mountains)-275(where)-275(there)]TJ 0 -12.822 Td [(is)-308(a)-307(spring.)-424(You)-307(mebbe)-308(think)-308(there)-308(isn't)-307(no)-308(spring)-308(there,)-322(but)]TJ 0 -12.822 Td [(there)-335(is.)-507(Then)-335(it)-335(tells)-336(you)-335(where)-336(to)-335(gather)-336(tobacco.)-506(Later)-335(it)]TJ 0 -12.822 Td [(will)-345(tell)-346(you)-345(to)-345(make)-346(a)-345(rattle)-346(out)-345(of)-345(cocoon.)-536(Mebbe)-346(at)-345(first)]TJ 0 -12.822 Td [(you)-393(only)-394(make)-393(a)-394(rattle)-393(with)-393(one)-394(cocoon.)-680(Later)-393(it)-394(says)-393(for)]TJ 0 -12.822 Td [(you)-279(to)-280(add)-280(more.)-338(Finally)-280(it)-279(will)-280(give)-279(you)-280(a)-279(song.)-339(You)-279(dream)]TJ 0 -12.821 Td [(this)-318(song.)-456(But)-318(you)-319(don't)-318(really)-319(remember)-318(it.)-455(You)-319(just)-318(begin)]TJ 0 -12.822 Td [(singing)-263(it)-263(like)-263(you)-262(ha)-1(d)-262(known)-263(it)-263(all)-263(the)-263(time.)-289(For)-262(a)-263(while)-263(you)]TJ 0 -12.822 Td [(may)-245(ge)-1(t)-245(a)-246(new)-245(song)-246(every)-245(year.)-249(Sometime)-245(you)-246(have)-491(a)-245(dream)]TJ/F16 7.9701 Tf 271.387 0 Td [([370])]TJ/F16 9.8629 Tf -271.387 -12.822 Td [(that)-283(tells)-283(you)-283(how)-283(to)-283(handle)-283(your)-283(paraphernalia.)-349(Sometime)-283(a)]TJ 0 -12.822 Td [(dream)-267(tells)-267(you)-266(that)-267(you)-267(have)-267(to)-267(be)-266(all)-267(alone)-267(in)-267(your)-267(house.)-300(I)]TJ 0 -12.821 Td [(don't)-288(know)-287(what)-288(happens)-288(in)-288(there)-287(but)-288(some)-288(of)-287(them)-288(doctors,)]TJ 0 -12.822 Td [(I)-250(think,)-250(go)-250(over)-250(to)-250(visit)-250(the)-250(dead)-250(for)-250(a)-250(little)-250(while.)]TJ/F34 9.8629 Tf 14.732 -16.091 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(After)-282(you)-281(been)-282(dreaming)-281(for)-282(a)-281(long)-282(time)-281(maybe)-282(you)-281(try)]TJ -19.111 -12.822 Td [(to)-323(cure)-323(somebody)-323(but)-323(you)-323(don't)-324(ask)-323(for)-323(nothing.)-469(You)-323(never)]TJ 0 -12.822 Td [(tell)-248(them)-247(dreams)-248(or)-247(what)-248(your)-247(spirit)-248(is)-247(but)-248(other)-247(doctors,)-248(they)]TJ 0 -12.822 Td [(know.)-322(If)-274(your)-274(dreams)-274(are)-274(right)-273(you)-274(can)-274(cure)-274(people)-274(and)-274(then)]TJ 0 -12.822 Td [(you)-344(can)-344(ask)-343(for)-344(something)-344([payment].)-532(The)-343(real)-344(Indian)-344(way)]TJ 0 -12.822 Td [(was)-313(to)-312(doctor)-313(for)-313(four)-312(nights.)-438(Then)-313(he'd)-313(lay)-312(out)-313(all)-312(his)-313(stuff)]TJ 0 -12.821 Td [(and)-261(give)-261(it)-261(a)-261(drink)-261(by)-261(sprinkling)-262(water)-261(on)-261(it.)-283(Then)-261(he'd)-261(shake)]TJ 0 -12.822 Td [(his)-281(rattle)-281(and)-281(sing)-281(and)-281(touch)-282(the)-281(patient)-281(with)-281(his)-281(hands.)-343(He'd)]TJ 0 -12.822 Td [(talk)-377(to)-377(the)-376(sickness,)-409(like)-377(he)-377(knew)-376(it)-377(...)-631(like)-377(maybe)-376(he)-377(was)]TJ 0 -12.822 Td [(friends)-238(to)-238(it)-238(...)-246(he'd)-238(say)]TJ/F34 9.8629 Tf 91.272 0 Td [(\030)]TJ/F16 9.8629 Tf 3.284 0 Td [(now)-238(you)-238(behave)-238(and)-238(don't)-238(bother)-238(this)]TJ -94.556 -12.822 Td [(person)-297(no)-298(more.)-392(If)-297(you)-297(don't)-298(behave)-297(I'm)-297(gonna)-298(take)-297(you)-297(out)]TJ 0 -12.821 Td [(and)-267(show)-268(you)-267(to)-268(everybody)-267(and)-268(then)-267(you'll)-268(be)-267(embarrassed!)]TJ/F34 9.8629 Tf 238.072 0 Td [(\031)]TJ/F16 9.8629 Tf -238.072 -12.822 Td [(Then)-352(he'd)-351(suck)-352(at)-352(the)-352(patient)-351(\050some)-352(of)-352(these)-351(young)-352(doctors)]TJ 0 -12.822 Td [(suck)-353(on)-352(a)-353(stick)-353(with)-353(a)-352(feather)-353(on)-353(it)-352(that)-353(they)-353(pointed)-352(at)-353(the)]TJ 0 -12.822 Td [(sick)-318(person,)-335(but)-318(the)-317(old)-318(ones)-318(didn't)-318(do)-318(that\051,)-335(and)-317(get)-318(out)-318(the)]TJ 0 -12.822 Td [(sickness,)-451(it)-412(would)-411(be)-411(a)-411(feather)-411(or)-411(a)-412(stone.)-733(Sometime)-411(that)]TJ 0 -12.822 Td [(sickness)-205(come)-205(out)-205(and)-205(go)-205(into)-206(the)-205(doctor)-205(so)-205(hard)-205(they)-205(can't)-205(get)]TJ 0 -12.821 Td [(it)-269(out)-269(and)-270(have)-269(to)-269(get)-269(another)-270(doctor)-269(to)-269(help)-269(him.)-308(Sometimes)]TJ 0 -12.822 Td [(it)-240(hit)-241(them)-240(so)-241(hard)-240(that)-240(they)-241(defecate.)-247(I)-240(seen)-240(them)-241(doctors)-240(just)]TJ 0 -12.822 Td [(fill)-245(their)-244(pants.)-248(If)-245(it's)-245(real)-244(tough)-245(they)-244(get)-245(all)-244(stiff)-245(and)-245(fall)-244(over.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
121 0 obj <<
/Type /Page
/Contents 122 0 R
/Resources 120 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 124 0 R
>> endobj
123 0 obj <<
/D [121 0 R /XYZ 273.895 377.135 null]
>> endobj
120 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
127 0 obj <<
/Length 4793      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(22)-18252(Washo)-250(Religion)]TJ
0 g 0 G
/F16 9.8629 Tf 19.637 -30.759 Td [(Sometimes)-301(fall)-300(right)-301(in)-301(the)-300(fire)-301(and)-301(their)-300(clothes)-301(all)-300(burn)-301(off)]TJ 0 -12.822 Td [(but)-304(it)-303(don't)-304(burn)-304(them)-303(none.)-411(You)-304(can't)-304(touch)-303(them)-304(then)-303(or)-304(it)]TJ 0 -12.822 Td [(will)-286(kill)-285(them.)-357(But)-286(when)-286(they)-285(begin)-286(to)-286(shake)-285(a)-286(little)-285(an)-1(d)-285(that)]TJ 0 -12.821 Td [(rattle)-298(begins)-297(to)-298(go)-297(then)-298(you)-297(can)-298(pick)-297(them)-298(up.)-393(If)-297(he)-298(can,)-309(the)]TJ 0 -12.822 Td [(doctor)-265(will)-265(vomit)-264(out)-265(the)-265(sickness.)-294(When)-265(it's)-265(out)-265(he)-265(puts)-264(it)-265(in)]TJ 0 -12.822 Td [(his)-303(hand)-304(and)-303(rubs)-303(it)-304(with)-303(dirt)-303(and)-304(throws)-303(it)-303(away)-304(toward)-303(the)]TJ 0 -12.822 Td [(north;)-250(that)-250(kills)-250(it.)]TJ/F34 9.8629 Tf 70.697 0 Td [(\035)]TJ/F16 10.9091 Tf -78.378 -32.656 Td [(This)-558(recital)-558(of)-558(the)-558(process)-558(of)-558(becoming)-558(a)-558(doctor)-557(shows)]TJ -11.956 -13.55 Td [(clearly)-404(the)-405(ideal)-404(situation,)-443(the)-404(receiving)-404(of)-405(powers,)-442(unsought,)]TJ 0 -13.549 Td [(from)-301(supernatural)-302(sources,)-314(the)-301(guardian)-301(spirit)-302(watching)-301(over)-301(its)]TJ 0 -13.549 Td [(prot\351g\351's)-237(career,)-239(providing)-237(him)-236(with)-237(the)-237(wherewithal)-236(in)-237(the)-236(form)]TJ 0 -13.549 Td [(of)-343(songs,)-367(spells,)-366(and)-343(paraphernalia.)-530(In)-343(fact,)-367(however,)-366(it)-343(would)]TJ 0 -13.549 Td [(appear)-354(that)-355(the)-354(process)-355(of)-354(becoming)-354(a)-355(shaman)-354(was)-355(far)-354(more)-354(a)]TJ 0 -13.55 Td [(conscious)-401(and)-400(voluntary)-401(act)-400(on)-401(the)-400(part)-401(of)-400(an)-401(individual)-400(than)]TJ 0 -13.549 Td [(would)-250(be)-250(supposed)-250(from)-250(the)-250(foregoing)-250(story.)]TJ 11.956 -15.407 Td [(Doctoring)-156(power)-155(clearly)-156(seems)-156(to)-155(have)-156(remained)-156(within)-155(certain)]TJ -11.956 -13.549 Td [(families.)-661(The)-386(informant)-387(who)-387(gave)-387(the)-387(foregoing)-387(account)-386(was)]TJ 0 -13.549 Td [(himself)-455(the)-455(son)-456(of)-455(a)-455(woman)-455(curer)-456(and)-455(a)-455(famous)-455(doctor)-455(and)]TJ 0 -13.549 Td [(the)-493(nephew)-493(of)-493(another)-493(doctor.)-979(From)-493(his)-493(childhood)-493(he)-492(was)]TJ 0 -13.55 Td [(familiar)-197(with)-197(the)-197(procedures)-197(of)-197(curing,)-208(with)-197(stories)-197(about)-197(dreams,)]TJ 0 -13.549 Td [(spirit)-335(visitations,)-357(trips)-336(to)-335(the)-336(afterworld,)-357(mysterious)-335(and)-335(sacred)]TJ 0 -13.549 Td [(locations.)-258(He)-253(somewhat)-253(proudly)-253(admitted)-253(that)-252(as)-253(a)-253(boy)-253(he)]TJ/F34 10.9091 Tf 255.79 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(used)]TJ -260.634 -13.549 Td [(to)-460(shake)-460(that)-461(rattle)]TJ/F34 10.9091 Tf 87.169 0 Td [(\035)]TJ/F16 10.9091 Tf 9.864 0 Td [(himself.)-881(In)-460(short,)-512(until)-461(his)-460(shamanistic)]TJ -97.033 -13.549 Td [(education)-363(was)-364(interrupted)-363(by)-363(white)-364(man's)-363(schooling,)-392(he)-363(was)-363(a)]TJ 0 -13.55 Td [(shaman's)-250(apprentice.)]TJ 11.956 -15.407 Td [(This)-261(view)-262(is)-261(supported)-262(by)-261(the)-261(statements)-262(of)-261(other)-261(informants:)]TJ/F34 10.9091 Tf -11.956 -13.549 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(Of)-305(course)-305(them)-305(people)-305(that)-305(is)-305(from)-305(a)-305(doctor)-305(family,)-318(they)-305(have)]TJ -4.844 -13.549 Td [(dreams)-177(and)-177(get)-177(curing)-176(power,)]TJ/F34 10.9091 Tf 126.167 0 Td [(\035)]TJ/F16 10.9091 Tf 6.773 0 Td [(said)-177(one)-177(rather)-176(assimilated)-177(woman)]TJ -132.94 -13.549 Td [(of)-323(about)-323(seventy-five.)-469(Another)-323(informant,)-341(a)-323(man)-323(of)-323(sixty,)-341(who)]TJ 0 -13.549 Td [(repeatedly)-213(indicated)-213(his)-213(fear)-213(of)]TJ/F34 10.9091 Tf 135.815 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(power)]TJ/F34 10.9091 Tf 27.262 0 Td [(\035)]TJ/F16 10.9091 Tf 7.167 0 Td [(but)-213(at)-213(the)-213(same)-213(time)-213(was)]TJ -175.088 -13.55 Td [(reputed)-332(to)-331(be)-332(an)-332(important)-332(curer)-331(in)-332(the)-332(peyote)-331(church)-332(said:)]TJ/F34 10.9091 Tf 268.521 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(If)]TJ -273.365 -13.549 Td [(you)-267(come)-267(from)-267(a)-268(family)-267(of)-267(dreamers)-267(there)-267(ain't)-267(nothing)-267(you)-267(can)]TJ 0 -13.549 Td [(do.)-250(You're)-250(trapped)-250(by)-250(it.)]TJ/F34 10.9091 Tf 106.189 0 Td [(\035)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
126 0 obj <<
/Type /Page
/Contents 127 0 R
/Resources 125 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 124 0 R
>> endobj
125 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
130 0 obj <<
/Length 4671      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Curing)-250(And)-250(Shamanism)-250(\0502469-2541\051)-9808(23)]TJ
0 g 0 G
 11.956 -30.759 Td [(Young)-182(shamans)-181(appear)-182(to)-181(have)-182(undergone)-182(a)-181(period)-182(of)-181(informal)]TJ -11.956 -13.549 Td [(apprenticeship)-270(under)-271(an)-270(older)-270(doctor.)-311(Although)-270(there)-270(appears)-270(to)]TJ 0 -13.549 Td [(have)-187(been)-187(no)-187(special)-187(requirement)-187(that)-187(a)-187(shaman)-187(have)-187(an)-186(assistant,)]TJ 0 -13.549 Td [(it)-179(was)-180(not)-179(uncommon)-179(for)-180(a)-179(younger)-180(man)-179(to)-179(help)-180(out.)-226(According)-179(to)]TJ 0 -13.55 Td [(one)-235(informant,)-237(when)-235(Blind)-234(Mike,)-238(one)-234(of)-235(the)-234(well-known)-234(doctors)]TJ 0 -13.549 Td [(in)-181(historic)-181(times,)-195(was)-182(becoming)-181(a)-181(doctor,)-195(his)-181(teacher)-181(required)-181(him)]TJ 0 -13.549 Td [(to)-322(smoke)-321(four)-322(hand-rolled)-321(cigarettes)-322(in)-322(a)-321(row)-322(without)-321(allowing)]TJ 0 -13.549 Td [(the)-272(smoke)-272(to)-271(escape)-272(from)-272(his)-272(lungs.)-315(This)-272(was)-272(not)-272(considered)-271(an)]TJ 0 -13.549 Td [(exercise)-261(in)-260(legerdemain)-261(but)-260(a)-261(way)-260(to)-261(develop)-260(the)-261(younger)-260(man's)]TJ 0 -13.55 Td [(control)-250(over)-250(his)-250(power.)]TJ 11.956 -13.549 Td [(Each)-274(doctor)-274(received)-274(instruction)-274(from)-274(his)-274(spirit)-274(familiar)-274(as)-274(to)]TJ -11.956 -13.549 Td [(what)-329(paraphernalia)-329(he)-328(should)-329(gather)-329(but)-328(there)-329(was)-329(a)-329(great)-328(deal)]TJ 0 -13.549 Td [(of)-392(uniformity)-392(in)-391(the)-392(outfits)-392(of)-392(Washo)-391(doctors.)-676(The)-391(following)]TJ 0 -13.549 Td [(description)-306(is)-306(of)-306(the)-307(kit)-306(of)-306(my)-306(informant's)-306(uncle,)-320(who)-306(practiced)]TJ 0 -13.55 Td [(until)-285(the)-285(first)-285(decade)-285(of)-285(this)-285(century,)-294(and)-285(it)-285(includes)-284(some)-285(items)]TJ 0 -13.549 Td [(clearly)-250(postwhite)-250(in)-250(origin.)]TJ/F34 9.8629 Tf 19.637 -21.459 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(I)-320(don't)-319(know)-320(what)-319(all)-320(doctors)-320(had)-319(but)-320(I'll)-319(tell)-320(you)-320(what)-319(my)]TJ -4.379 -12.822 Td [(old)-392(uncle)-392(had)-392('cause)-392(I)-392(seen)-392(it)-392(lots)-391(of)-392(times.)-676([At)-392(this)-392(point)]TJ 0 -12.822 Td [(another)-286(Indian)-286(entere)-1(d)-286(the)-286(house,)-295(obviously)-287(curious,)-295(and)-286(my)]TJ 0 -12.822 Td [(informant)-263(stopped)-262(talking)-263(until)-263(the)-263(visitor)-262(left.])-289(He)-262(had)-263(eagle)]TJ 0 -12.821 Td [(feathers)-237(and)-237(magpie)-237(feathers.)-246(He)-237(had)-237(a)-237(rattle)-237(with)-237(six)-237(or)-237(eight)]TJ 0 -12.822 Td [(cocoons)-236(on)-237(a)-236(stick)-236(wrapped)-237(in)-236(weasel)-236(skin)-237(and)-236(humming)-236(bird)]TJ 0 -12.822 Td [(feathers.)-559(He)-353(had)-353(a)-354(tobacco)-353(pouch)-353(of)-353(tree-squirrel)-353(hide.)-559(He)]TJ 0 -12.822 Td [(also)-266(had)-265(a)-266(stone.)-297(It)-265(looked)-266(like)-266(a)-265(big)-266(tooth)-266(with)-265(a)-266(cavity)-266(in)-265(it.)]TJ 0 -12.822 Td [(He)-322(told)-321(me)-322(how)-321(he)-322(got)-321(that)-322(stone.)-464(He)-322(was)-321(walking)-322(to)-321(town)]TJ 0 -12.822 Td [([Genoa,)-218(Nevada])-209(one)-210(day)-210(and)-210(he)-209(heard)-210(something)-210(whistle.)-236(He)]TJ 0 -12.821 Td [(kept)-247(on)-248(walking)-247(but)-247(it)-248(whistled)-247(again.)-249(So)-247(he)-248(went)-247(looking)-247(for)]TJ 0 -12.822 Td [(what)-336(was)-336(making)-337(that)-336(noise)-336(and)-336(he)-337(found)-336(that)-336(stone)-336(setting)]TJ 0 -12.822 Td [(by)-226(a)-226(fence)-226(post.)-242(I)-226(heard)-227(that)-226(stone)-226(whistle)-226(sometimes)-226(when)-226(he)]TJ 0 -12.822 Td [(was)-261(doctoring.)-284(He)-262(also)-261(had)-261(a)-262(tie)-261(made)-261(out)-262(of)-261(beadwork.)-284(Lots)]TJ 0 -12.822 Td [(of)-252(times)-253(a)-253(doctor)-252(would)-253(pay)-252(some)-253(woman)-252(to)-253(make)-252(him)-253(a)-252(real)]TJ 0 -12.821 Td [(fine)-263(basket)-263(or)-263(some)-263(bead)-263(work)-263(because)-263(that's)-263(what)-263(his)-263(power)]TJ 0 -12.822 Td [(told)-250(him)-250(to)-250(do.)]TJ/F34 9.8629 Tf 58.093 0 Td [(\035)]TJ/F16 10.9091 Tf -65.774 -22.187 Td [(Washo)-288(doctors)-289(often)-288(worked)-289(together)-288(on)]TJ/F34 10.9091 Tf 183.084 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(tough)]TJ/F34 10.9091 Tf 24.851 0 Td [(\035)]TJ/F16 10.9091 Tf 7.99 0 Td [(cases.)-365(One)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
129 0 obj <<
/Type /Page
/Contents 130 0 R
/Resources 128 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 124 0 R
>> endobj
128 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
133 0 obj <<
/Length 4729      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(24)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(such)-309(was)-309(the)-309(treatment)-308(of)-309(what)-309(seems)-309(to)-309(have)-309(been)-309(an)-308(infected)]TJ 0 -13.549 Td [(elbow)-249(by)-249(my)-249(informant's)-249(uncle)-249(and)-249(Blind)-250(Mike.)-249(The)-249(first)-249(step)-249(in)]TJ 0 -13.549 Td [(the)-218(process)-219(was)-218(to)-218(blow)-218(smoke)-219(in)-218(a)-218(circle)-219(around)-218(the)-218(painful)-218(area)]TJ 0 -13.549 Td [(so)-201(that)-202(the)-201(sickness)-201(couldn't)-202(move.)-233(This)-202(was)-201(followed)-201(by)-201(singing,)]TJ 0 -13.55 Td [(rattling,)-221(and)-214(sucking)-214(until)-213(something)-214(bright)-214(began)-214(to)-214(come)-214(out.)-237(It)]TJ 0 -13.549 Td [(was,)-286(according)-279(to)-279(witnesses,)-286(as)-279(bright)-278(as)-279(a)-279(star,)-286(so)-279(bright)-279(in)-278(fact)]TJ 0 -13.549 Td [(that)-327(even)-328(Blind)-327(Mike)-327(could)-327(see)-328(it.)-481(The)-328(bright)-327(object)-327(proved)-327(to)]TJ 0 -13.549 Td [(be)-274(\050if)-274(we)-273(can)-274(trust)-274(descriptions\051)-274(the)-274(stone)-273(and)-274(setting)-274(of)-274(a)-273(cheap)]TJ 0 -13.549 Td [(ring)-323(which)-323(was)-323(removed)-323(from)-324(the)-323(sore)-323(arm.)-469(It)-323(is)-323(interesting)-323(to)]TJ 0 -13.55 Td [(note)-217(that)-216(while)-217(this)-217(process)-217(was)-216(successful)-217(my)-217(informant)-216(seemed)]TJ 0 -13.549 Td [(to)-462(consider)-462(the)-461(cure)-462(less)-462(than)-462(one-hundred-per-cent)-461(effective)]TJ 0 -13.549 Td [(because)-250(the)-250(woman)-250(who)-250(was)-250(being)-250(treated)-250(died)-250(two)-250(years)-250(later.)]TJ 11.956 -18.459 Td [(Doctors)-391(were)-391(privy)-392(to)-391(a)-391(number)-391(of)-392(secrets)-391(which)-391(were)-391(not)]TJ -11.956 -13.549 Td [(common)-431(knowledge)-431(among)-431(most)-432(Washo.)-793(Such)-431(a)-431(secret)-431(was)]TJ 0 -13.549 Td [(the)-357(cave)-358(reputed)-357(to)-358(be)-357(inside)-358(Cave)-357(Rock)-357(at)-358(Lake)-357(Tahoe.)-572(This)]TJ 0 -13.549 Td [(cave)-434(was)-435(a)-434(retreat)-434(for)-434(shamans)-434(who)-435(went)-434(there)-434(to)-434(commune)]TJ 0 -13.55 Td [(with)-470(their)-470(spirits)-470(or)-469(to)-470(secrete)-470(a)-470(particularly)-470(important)-469(piece)]TJ 0 -13.549 Td [(of)-347(paraphernalia.)-541(The)-347(cave)-347(could)-347(be)-347(entered)-347(through)-347(a)-346(narrow)]TJ 0 -13.549 Td [(opening)-186(on)-185(the)-186(landward)-185(side,)-199(but)-185(most)-186(shamans)-185(preferred)-186(a)-185(more)]TJ 0 -13.549 Td [(dramatic)-313(entrance.)-440(By)-313(standing)-313(on)-313(a)-313(certain)-313(rock)-313(and)-313(singing)-313(a)]TJ 0 -13.549 Td [(special)-234(song)-234(they)-234(were)-235(lowered)-234(through)-234(the)-234(water)-234(and)-234(then)-234(lifted)]TJ 0 -13.55 Td [(into)-235(the)-235(cave.)-244(The)-235(last)-235(doctor)-235(to)-235(attempt)-234(this)-235(was)-235(Blind)-235(Mike.)-244(He)]TJ 0 -13.549 Td [(was)-221(directed)-221(to)-221(go)-220(to)-221(the)-221(cave)-221(in)-221(a)-221(dream.)-240(However,)-227(he)-220(permitted)]TJ 4.399 -13.549 Td [(his)-403(wife)-403(to)-404(accompany)-403(him)-403(and)-403(when)-403(she)-404(saw)-403(him)-403(begin)-403(to)]TJ/F16 7.9701 Tf -77.154 0 Td [([371])]TJ/F16 10.9091 Tf 72.755 -13.549 Td [(sink)-369(into)-368(the)-369(water)-369(she)-369(screamed)-368(with)-369(fear.)-606(The)-369(rock)-368(stopped)]TJ 0 -13.549 Td [(sinking)-297(with)-298(Mike)-297(only)-297(knee)-298(deep)-297(in)-297(the)-298(water.)-392(Since)-297(that)-297(time)]TJ 0 -13.549 Td [(no)-289(one)-289(has)-288(attempted)-289(to)-289(enter)-289(the)-289(room.)-366(This)-289(promontory)-289(is)-288(the)]TJ 0 -13.55 Td [(center)-294(of)-293(Water)-294(Baby)-294(habitation)-293(and)-294(is)-294(reported)-293(to)-294(be)-294(the)-293(upper)]TJ 0 -13.549 Td [(end)-278(of)-279(a)-278(tunnel)-278(which)-279(extends)-278(under)-278(the)-279(mountains)-278(to)-278(Genoa)-278(so)]TJ 0 -13.549 Td [(that)-327(Water)-326(Babies)-327(can)-326(move)-326(freely)-327(from)-326(the)-327(lake)-326(to)-327(the)-326(valley.)]TJ 0 -13.549 Td [(The)-408(rock)-408(also)-408(marks)-409(the)-408(eastern)-408(end)-408(of)-408(a)-408(road)-408(of)-408(white)-408(sand)]TJ 0 -13.549 Td [(reported)-323(to)-323(cross)-323(the)-323(lake)-324(bottom.)-469(On)-323(the)-323(northwest)-323(end)-323(of)-323(the)]TJ 0 -13.55 Td [(road)-277(was)-277(located)-277(a)-277(bed)-277(of)-278(plants,)-283(probably)-278(wild)-277(parsnips,)-283(which)]TJ 0 -13.549 Td [(doctors)-287(gathered)-287(for)-286(medicine.)-360(The)-287(wild)-287(parsnip)-287(was)-286(poisonous)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
132 0 obj <<
/Type /Page
/Contents 133 0 R
/Resources 131 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 124 0 R
>> endobj
134 0 obj <<
/D [132 0 R /XYZ 93.543 201.634 null]
>> endobj
131 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
135 0 obj
<< /S /GoTo /D (index8) >>
endobj
138 0 obj
(Noncurative Use Of Power (2567-2593))
endobj
139 0 obj
<< /S /GoTo /D (index9) >>
endobj
142 0 obj
(Divining And Rainmaking (2553-2556, 2566))
endobj
145 0 obj <<
/Length 4064      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Noncurative)-250(Use)-250(Of)-250(Power)-250(\0502567-2593\051)-8617(25)]TJ
0 g 0 G
 0 -30.759 Td [(but)-276(doctors)-276(ate)-276(it)-276(to)-276(demonstrate)-276(their)-276(power.)-328(They)-276(also)-276(chewed)]TJ 0 -13.549 Td [(it)-250(into)-250(a)-250(paste)-250(and)-250(spread)-250(it)-250(on)-250(rattlesnake)-250(bites.)]TJ 11.956 -13.635 Td [(Another)-434(spot)-435(familiar)-434(to)-434(doctors)-434(was)-435(a)-434(mysterious)-434(hole)-434(in)]TJ -11.956 -13.549 Td [(the)-387(mountains)-387(near)-387(Blue)-388(Lake.)-661(The)-387(hole)-387(could)-387(be)-387(located)-387(by)]TJ 0 -13.55 Td [(following)-436(a)-436(spiraling)-436(path)-436(of)-436(white)-436(quartz)-436(toward)-436(the)-435(center.)]TJ 0 -13.549 Td [(According)-267(to)-266(the)-267(Washo)-266(tale,)-271(if)-266(a)-267(man)-266(dropped)-267(even)-266(as)-267(much)-266(as)]TJ 0 -13.549 Td [(a)-314(hair)-314(into)-314(this)-314(hole)-313(it)-314(made)-314(a)-314(great)-314(roaring)-314(sound.)-442(Suzie)-313(Dick,)]TJ 0 -13.549 Td [(a)-317(Washo)-317(woman,)-334(whose)-317(claim)-318(of)-317(being)-317(one)-317(hundred)-317(years')-317(old)]TJ 0 -13.549 Td [(is)-291(borne)-291(out)-292(by)-291(white)-291(residents,)-302(insists)-291(that)-291(as)-291(a)-291(fifteen-year-old)]TJ 0 -13.55 Td [(girl)-278(she)-279(went)-278(to)-278(see)-279(this)-278(hole)-278(and)-279(was)-278(terrorized)-278(by)-279(a)-278(huge)-278(hand)]TJ 0 -13.549 Td [(which)-250(reached)-250(up)-250(out)-250(of)-250(the)-250(darkness)-250(and)-250(tried)-250(to)-250(seize)-250(her.)]TJ 11.956 -13.635 Td [(Vaguely)-366(known)-367(to)-366(most)-367(Washo)-366(but)-366(familiar)-367(to)-366(doctors)-366(was)]TJ -11.956 -13.549 Td [(a)-446(cave)-445(situated)-446(south)-445(and)-445(west)-446(of)-445(Gardnerville)-446(where)-445(ready-)]TJ 0 -13.549 Td [(made)-372(grinding)-371(stones)-372(were)-371(to)-372(be)-371(found.)-615(These,)-402(depending)-371(on)]TJ 0 -13.55 Td [(the)-354(informant,)-381(were)-354(made)-355(by)-354(old)-354(Indians)-355(or)-354(were)-355(put)-354(there)-354(by)]TJ/F34 10.9091 Tf 0 -13.549 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(nature)]TJ/F34 10.9091 Tf 27.262 0 Td [(\035)]TJ/F16 10.9091 Tf 7.571 0 Td [(for)-250(the)-250(use)-250(of)-250(the)-250(Washo.)]TJ/F16 15.7808 Tf -39.677 -58.816 Td [(Noncurative)-250(Use)-250(Of)-250(Power)-250(\0502567-2593\051)]TJ/F16 10.9091 Tf 0 -29.689 Td [(Indian)-400(doctors)-400(often)-401(used)-400(their)-400(power)-400(in)-400(spectacular)-400(displays,)]TJ 0 -13.549 Td [(apparently)-578(to)-578(impress)-578(patients.)-1233(Often)-578(these)-578(displays)-577(were)]TJ 0 -13.549 Td [(competitive.)]TJ 11.956 -13.635 Td [(In)-388(the)-388(words)-389(of)-388(one)-388(informant:)]TJ/F34 10.9091 Tf 146.897 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(Them)-388(old)-388(doctors)-389(used)-388(to)]TJ -163.697 -13.549 Td [(see)-378(who)-377(had)-378(the)-378(most)-377(power.)-633(They'd)-378(stick)-378(four)-377(or)-378(five)-377(sticks)]TJ 0 -13.55 Td [(in)-317(the)-318(ground,)-334(each)-317(one)-318(farther)-317(away)-318(than)-317(the)-317(last)-318(one,)-334(and)-317(see)]TJ 0 -13.549 Td [(how)-346(many)-345(they)-345(could)-346(knock)-345(down.)]TJ/F34 10.9091 Tf 158.524 0 Td [(\035)]TJ/F16 10.9091 Tf 8.612 0 Td [(Then,)-369(disconcertingly,)-370(he)]TJ -167.136 -13.549 Td [(added:)]TJ/F34 10.9091 Tf 31.723 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(You)-234(can)-234(read)-234(about)-233(that)-234(in)-234(Kroeber.)-245(He)-234(tells)-234(about)-233(some)]TJ -36.567 -13.549 Td [(other)-249(Indians)-250(who)-249(did)-249(that)-249(but)-250(I)-249(guess)-249(he)-250(didn't)-249(know)-249(the)-249(Washo)]TJ 0 -13.549 Td [(did)-337(it)-337(too.)]TJ/F34 10.9091 Tf 44.033 0 Td [(\035)]TJ/F16 10.9091 Tf 8.522 0 Td [(This)-337(informant)-337(considered)-337(Professor)-338(Kroeber)-337(as)-337(an)]TJ -52.555 -13.549 Td [(authority)-226(second)-225(only)-226(to)-226(himself)-226(in)-225(matters)-226(pertaining)-226(to)-225(Indians.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
144 0 obj <<
/Type /Page
/Contents 145 0 R
/Resources 143 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 124 0 R
>> endobj
136 0 obj <<
/D [144 0 R /XYZ 46.771 292.505 null]
>> endobj
140 0 obj <<
/D [144 0 R /XYZ 46.771 66.142 null]
>> endobj
143 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
146 0 obj
<< /S /GoTo /D (index10) >>
endobj
149 0 obj
(Objects Of Power)
endobj
152 0 obj <<
/Length 3754      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(26)-18252(Washo)-250(Religion)]TJ
0 g 0 G
/F16 15.7808 Tf 0 -30.759 Td [(Divining)-259(And)-259(Rainmaking)-259(\0502553-2556,)]TJ 0 -20.515 Td [(2566\051)]TJ/F16 10.9091 Tf 0 -30.015 Td [(There)-189(were)-189(no)-190(doctors)-189(with)-189(rainmaking)-189(power)-189(among)-189(the)-189(Washo.)]TJ 0 -13.549 Td [(However,)-471(anyone,)-470(particularly)-427(a)-426(man)-427(deemed)-426(to)-427(be)-426(a)-426(leader,)]TJ 0 -13.549 Td [(might)-421(encourage)-421(rain)-421(during)-421(the)-420(summer.)-763(The)-421(rite,)-464(which)-420(is)]TJ 0 -13.549 Td [(still)-396(observed)-396(occasionally)-396(by)-396(individuals,)-432(consists)-396(of)-396(soaking)]TJ 0 -13.549 Td [(a)-422(pine-nut)-422(cone)-421(in)-422(water)-422(and)-422(placing)-422(it)-421(on)-422(the)-422(ground)-422(in)-421(the)]TJ 0 -13.55 Td [(pine-nut)-301(hills.)-405(Modern)-301(Washo)-301(look)-302(upon)-301(this)-301(more)-302(as)-301(a)-301(prayer,)]TJ 0 -13.549 Td [(but)-250(in)-250(the)-250(past)-250(it)-250(may)-250(have)-250(been)-250(considered)-250(as)-250(a)-250(spell.)]TJ 11.956 -13.7 Td [(The)-301(ancient)-301(matriarch)-302(Suzie)-301(Dick)-301(steadfastly)-301(insists)-301(that)-301(less)]TJ -11.956 -13.549 Td [(rain)-531(falls)-532(in)-531(the)-532(Carson)-531(Valley)-531(than)-532(in)-531(neighboring)-531(valleys)]TJ 0 -13.55 Td [(because)]TJ/F34 10.9091 Tf 36.995 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(nobody)-226(is)-226(talking)-227(to)-226(God)-226(anymore)-226(around)-226(here.)]TJ/F34 10.9091 Tf 204.82 0 Td [(\035)]TJ/F16 10.9091 Tf 7.31 0 Td [(While)]TJ -253.968 -13.549 Td [(she)-378(talked)-379(she)-378(pointed)-378(to)-379(the)-378(clouds)-378(hanging)-379(over)-378(Washo)-378(and)]TJ 0 -13.549 Td [(Antelope)-250(valleys)-250(and)-250(to)-250(the)-250(cloudless)-250(sky)-250(overhead.)]TJ 11.956 -13.7 Td [(Older)-384(white)-384(residents)-384(speak)-384(of)-384(Indian)-384(rainmakers,)-417(which)-384(is)]TJ -11.956 -13.55 Td [(a)-383(source)-382(of)-383(much)-382(amusement)-383(among)-382(the)-383(Washo.)-647(Until)-383(a)-382(few)]TJ 0 -13.549 Td [(years)-263(ago)-262(an)-263(Indian,)-265(who)-263(still)-263(lives)-262(in)-263(Dresslerville,)-265(used)-263(to)-262(take)]TJ 0 -13.549 Td [(advantage)-359(of)-358(the)-359(gullibility)-359(or)-359(generosity)-358(of)-359(white)-359(ranchers)-358(by)]TJ 0 -13.549 Td [(performing)]TJ/F34 10.9091 Tf 51.38 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(rain)-211(dances)]TJ/F34 10.9091 Tf 48.947 0 Td [(\035)]TJ/F16 10.9091 Tf 7.144 0 Td [(on)-211(their)-211(property)-210(in)-211(return)-211(for)-211(handouts)]TJ -112.315 -13.549 Td [(of)-202(food.)-234(The)-203(Washo)-202(generally)-202(frowned)-202(on)-202(this,)-212(but)-202(because)-202(white)]TJ 0 -13.55 Td [(men)-250(were)-250(the)-250(victims)-250(of)-250(the)-250(fraud)-250(it)-250(was)-250(considered)-250(harmless.)]TJ 11.956 -13.7 Td [(The)-469(father)-469(of)-469(the)-469(false)-469(rainmaker)-469(was)-469(a)-469(diviner)-469(of)-469(stolen)]TJ -11.956 -13.549 Td [(articles.)-482(His)-327(method)-327(was)-327(to)-327(sit)-328(and)-327(smoke)-327(until)-327(the)-327(location)-327(of)]TJ 0 -13.549 Td [(the)-250(desired)-250(article)-250(was)-250(revealed)-250(to)-250(him.)]TJ/F16 15.7808 Tf 0 -59.404 Td [(Objects)-250(Of)-250(Power)]TJ/F16 10.9091 Tf 0 -30.015 Td [(Eagle)-526(and)-525(magpie)-526(feathers)-525(were)-526(considered)-526(to)-525(be)-526(the)-525(most)]TJ 0 -13.549 Td [(powerful)-200(items)-201(of)-200(a)-200(shaman's)-200(paraphernalia.)-234(Doctors)-200(are)-200(reported)]TJ 0 -13.549 Td [(to)-320(have)-320(captured)-320(eagles)-321(and)-320(even)-320(to)-320(have)-320(tried)-320(to)-320(raise)-320(them)-320(to)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
151 0 obj <<
/Type /Page
/Contents 152 0 R
/Resources 150 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 124 0 R
>> endobj
147 0 obj <<
/D [151 0 R /XYZ 93.543 160.094 null]
>> endobj
150 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
155 0 obj <<
/Length 4490      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Objects)-250(Of)-250(Power)-17559(27)]TJ
0 g 0 G
 0 -30.759 Td [(obtain)-245(feathers)-245(\050223-231\051)-245(The)-244(tail)-245(feathers)-245(were)-245(the)-245(most)-244(prized.)]TJ 0 -13.549 Td [(Eagle)-298(feathers)-297(were)-298(extremely)-297(valuable)-297(and)-298(could)-297(be)-298(traded)-297(for)]TJ 0 -13.549 Td [(anything)-462(including)]TJ/F34 10.9091 Tf 89.471 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(a)-462(woman)-461(or)-462(a)-462(sack)-462(of)-461(pine-nut)-462(flour)-462(or)]TJ -94.315 -13.549 Td [(anything)-407(worth)-407(a)-407(lot.)]TJ/F34 10.9091 Tf 96.045 0 Td [(\035)]TJ/F16 10.9091 Tf 9.284 0 Td [(Ideally)-407(the)-407(eagle)-407(was)-407(tied)-407(up)-407(until)-407(the)]TJ -105.329 -13.55 Td [(shaman)-242(removed)-242(three)-242(tail)-242(feathers.)-247(The)-242(doctor)-242(then)-242(tied)-242(a)-241(string)]TJ 0 -13.549 Td [(of)-341(beads)-342(to)-341(the)-342(bird's)-341(leg)-342(and)-341(released)-341(it)-342(as)-341(a)-342(messenger)-341(to)-341(the)]TJ 0 -13.549 Td [(spirits.)-548(Description)-349(of)-349(eagle-down)-350(costumes)-349(suggest)-349(that)-349(birds)]TJ 0 -13.549 Td [(were)-401(stripped)-401(of)-402(many)-401(more)-401(feathers)-401(than)-401(the)-402(ideal)-401(three.)-703(In)]TJ 0 -13.549 Td [(historic)-264(times)-265(individuals)-264(have)-264(attempted)-265(to)-264(contain)-264(eagles.)-293(One)]TJ 0 -13.55 Td [(old)-339(man)-339(in)-338(Woodfords)-339(is)-339(well)-339(known)-338(for)-339(having)-339(kept)-339(them)-338(on)]TJ 0 -13.549 Td [(cradle-boards)-374(for)-373(easy)-374(transport,)-405(but)-373(such)-374(experiments)-373(usually)]TJ 0 -13.549 Td [(ended)-259(in)-260(failure.)-278(Magpie)-259(feathers)-259(were)-260(considered)-259(less)-259(powerful)]TJ 0 -13.549 Td [(than)-309(eagle)-308(feathers)-309(but)-308(still)-309(were)-308(highly)-309(prized.)-425(Today)-309(they)-308(are)]TJ 0 -13.549 Td [(gathered)-334(by)-335(chance)]TJ/F34 10.9091 Tf 86.046 0 Td [(\024)]TJ/F16 10.9091 Tf 10.909 0 Td [(taken)-334(from)-335(dead)-334(birds)-334(on)-334(the)-335(highway)-334(or)]TJ -96.955 -13.55 Td [(picked)-250(up)-250(where)-250(they)-250(were)-250(shed.)]TJ 11.956 -15.185 Td [(In)-244(the)-244(past,)-245(eagle)-244(and)-244(magpie)-244(feathers)-244(were)-244(important)-244(parts)-243(of)]TJ -11.956 -13.549 Td [(the)-165(dress)-165(of)-165(warriors.)-222(Magpie)-165(feathers)-165(were)-165(used)-165(to)-165(make)-165(a)-165(feather)]TJ 0 -13.55 Td [(cap)-382(with)-382(a)-382(single)-382(feather)-382(suspended)-382(from)-382(the)-382(top.)-645(Informants)]TJ 0 -13.549 Td [(recall)-442(their)-442(elders')-442(describing)-442(eagle)-442(feathers')-442(being)-441(suspended)]TJ 0 -13.549 Td [(individually)-521(from)-522(the)-521(upper)-522(arms)-521(and)-522(thighs)-521(of)-521(particularly)]TJ 0 -13.549 Td [(powerful)-250(warriors.)]TJ 11.956 -15.186 Td [(Modern)-461(peyotists)-461(have)-460(lost)-461(none)-461(of)-461(the)-461(traditional)-460(Washo)]TJ -11.956 -13.549 Td [(feeling)-259(about)-258(these)-259(feathers.)-275(The)-258(ceremonial)-259(fans)-258(of)-259(road)-258(chiefs,)]TJ 0 -13.549 Td [(believed)-508(the)-507(only)-508(persons)-508(capable)-507(of)-508(handling)-508(the)-507(immense)]TJ 0 -13.55 Td [(power,)-257(are)-255(made)-255(of)-256(eagle)-255(feathers.)-266(Other)-255(peyotists)-256(favor)-255(the)-255(less)]TJ 0 -13.549 Td [(powerful)-277(but)-277(nonetheless)-277(potent)-277(magpie)-277(feather)-277(\050d'Azevedo)-277(and)]TJ 0 -13.549 Td [(Merriam)-250(1957\051.)]TJ 11.956 -15.186 Td [(Tobacco,)-647(as)-568(the)-568(foregoing)-568(accounts)-567(illustrate,)-648(played)-567(an)]TJ -11.956 -13.549 Td [(important)-387(part)-387(in)-387(Washo)-387(shamanism.)-661(It)-387(appears)-387(to)-387(have)-386(been)]TJ 0 -13.549 Td [(used)-236(as)-236(an)-235(offering)-236(to)-236(the)-236(spirits.)-245(In)-236(addition)-236(it)-235(is)-236(clear)-236(that)-236(it)-235(was)]TJ 0 -13.549 Td [(felt)-327(to)-328(have)-327(special)-328(power)-327(of)-328(its)-327(own.)-482(Today)-328(older)-327(men)-327(smoke)]TJ 0 -13.549 Td [(sparingly)-353(and)-353(are)-353(often)-353(somewhat)-353(embarrassed)-353(to)-353(be)-353(offered)-352(a)]TJ 0 -13.55 Td [(cigarette)-424(casually)-423(during)-424(conversation.)-771(In)-423(prewhite)-424(times)-423(the)]TJ 0 -13.549 Td [(tobacco)-293(was)-292(a)-293(native)-292(variety)-293(gathered)-292(and)-293(dried)-292(by)-293(the)-292(shaman.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
154 0 obj <<
/Type /Page
/Contents 155 0 R
/Resources 153 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 156 0 R
>> endobj
153 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
157 0 obj
<< /S /GoTo /D (index11) >>
endobj
160 0 obj
(Sorcery And Witchcraft (2562-2564))
endobj
163 0 obj <<
/Length 4632      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(28)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(Today)-365(Bull)-365(Durham)-365(appears)-365(to)-365(have)-365(replaced)-365(the)-365(wild)-365(variety)]TJ 0 -13.549 Td [(as)]TJ/F34 10.9091 Tf 13.145 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(Indian)]TJ/F34 10.9091 Tf 27.873 0 Td [(\035)]TJ/F16 10.9091 Tf 8.901 0 Td [(tobacco.)-616(The)-372(Indians)-372(seemed)-372(delighted)-372(to)-372(see)-372(me)]TJ -54.763 -13.549 Td [(rolling)-335(a)-336(cigarette;)-377(they)-336(acted)-335(as)-335(if)-335(I)-336(were)-335(mastering)-335(what)-335(they)]TJ 0 -13.549 Td [(felt)-271(was)-272(a)-271(particularly)-271(Indian)-271(art.)-314(Bull)-272(Durham)-271(is)-271(also)-271(important)]TJ 0 -13.55 Td [(in)-250(peyote)-250(ceremonialism)-250(because)-250(it)-250(is)]TJ/F34 10.9091 Tf 166.036 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(real)-250(Indian)-250(tobacco.)]TJ/F34 10.9091 Tf 86.334 0 Td [(\035)]TJ/F16 10.9091 Tf -245.258 -13.549 Td [(Incense)-551(cedar)-552(plays)-551(an)-552(important)-551(role)-552(in)-551(modern)-551(peyote)]TJ -11.956 -13.549 Td [(meetings.)-246(It)-239(is)-238(dried)-238(and)-239(thrown)-238(into)-238(the)-239(fire)-238(to)-239(create)-238(a)-238(fragment)]TJ 0 -13.549 Td [(smoke)-310(which)-311(is)-310(considered)-310(beneficial.)-862(Meeting)-311(officials)-310(fan)-310(it)]TJ/F16 7.9701 Tf -72.755 0 Td [([372])]TJ/F16 10.9091 Tf 72.755 -13.549 Td [(into)-234(the)-234(atmosphere)-234(and)]TJ/F34 10.9091 Tf 106.553 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(rub)]TJ/F34 10.9091 Tf 14.542 0 Td [(\035)]TJ/F16 10.9091 Tf 7.394 0 Td [(themselves)-234(in)-234(the)-234(smoke)-233(to)-234(obtain)]TJ -133.333 -13.55 Td [(power)-414(or)-415(purification.)-743(This)-415(has)-414(a)-415(connection)-414(with)-414(traditional)]TJ 0 -13.549 Td [(Washo)-335(ritual,)-356(but)-334(the)-335(relationship)-335(is)-334(unclear)-335(and)-335(the)-334(aboriginal)]TJ 0 -13.549 Td [(practices)-322(obscure.)-468(One)-322(group)-322(of)-323(Washo,)-340(which)-323(was)-322(assigned)-322(a)]TJ 0 -13.549 Td [(special)-368(place)-367(in)-368(the)-367(large)-368(camp)-367(circle)-368(formed)-367(during)-368(the)-367(pine-)]TJ 0 -13.549 Td [(nut)-373(dances)-372(held)-373(at)-373(Double)-372(Springs)-373(Flats)-373(in)-372(the)-373(late)-372(nineteenth)]TJ 0 -13.55 Td [(century,)-281(is)-275(said)-275(to)-275(have)-274(special)-275(rights)-275(in)-275(connection)-275(with)-274(cutting)]TJ 0 -13.549 Td [(cedar.)-241(Modern)-224(informants)-224(do)-224(not)-224(have)-224(a)-224(clear)-224(picture)-224(of)-224(what)-224(the)]TJ 0 -13.549 Td [(rights)-352(were)-352(or)-351(what)-352(the)-352(customs)-352(surrounding)-351(cedar)-352(were.)-555(One)]TJ 0 -13.549 Td [(informant)-356(did)-357(say)-356(that)-356(if)-357(the)-356(cedar)]TJ/F34 10.9091 Tf 158.699 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(bunch)]TJ/F34 10.9091 Tf 26.661 0 Td [(\035)]TJ/F16 10.9091 Tf 8.731 0 Td [(found)-356(anyone)-357(else)]TJ -198.935 -13.549 Td [(with)-377(cedar)-377(they)-377(would)-378(say)]TJ/F34 10.9091 Tf 124.186 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(you)-377(aren't)-377(supposed)-377(to)-378(have)-377(that)]TJ/F34 10.9091 Tf 146.756 0 Td [(\035)]TJ/F16 10.9091 Tf -275.786 -13.55 Td [(and)-285(would)-284(make)-285(fun)-285(of)-285(them.)-354(She)-285(could)-284(offer)-285(no)-285(further)-284(details)]TJ 0 -13.549 Td [(or)-250(explanations.)]TJ/F16 15.7808 Tf 0 -57.312 Td [(Sorcery)-250(And)-250(Witchcraft)-250(\0502562-2564\051)]TJ/F16 10.9091 Tf 0 -28.893 Td [(There)-258(is)-258(no)-258(real)-259(distinction)-258(in)-258(the)-258(Washo)-258(mind)-258(between)-258(a)-258(doctor)]TJ 0 -13.549 Td [(and)-271(a)-271(sorcerer)-271(or)-272(witch.)-313(Particularly)-271(powerful)-271(doctors)-271(were)-271(able)]TJ 0 -13.549 Td [(to)-213(kill)-213(their)-213(enemies.)-238(One)-213(of)-213(the)-213(most)-213(feared)-213(bits)-213(of)-213(paraphernalia)]TJ 0 -13.549 Td [(was)-406(an)-405(obsidian)-406(point)-405(found)-406(by)-405(a)-406(doctor.)-716(These)-406(large)-405(points)]TJ 0 -13.549 Td [(were)-306(not)-307(made)-306(by)-307(Washo)-306(and)-307(are)-306(apparently)-307(remnants)-306(of)-306(some)]TJ 0 -13.549 Td [(previous)-341(cultural)-341(occupation)-341(in)-341(the)-341(area.)-523(If)-341(a)-341(Washo)-340(finds)-341(one)]TJ 0 -13.55 Td [(point)-415(up)-414(he)-415(carefully)-415(knocks)-414(it)-415(over)-415(with)-414(a)-415(long)-415(stick)-414(before)]TJ 0 -13.549 Td [(touching)-264(it.)-292(These)-264(points)-264(are)-265(called)-264(mankillers,)-267(but)-264(I)-264(was)-264(unable)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
162 0 obj <<
/Type /Page
/Contents 163 0 R
/Resources 161 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 156 0 R
>> endobj
164 0 obj <<
/D [162 0 R /XYZ 267.209 423.331 null]
>> endobj
158 0 obj <<
/D [162 0 R /XYZ 93.543 223.371 null]
>> endobj
161 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
167 0 obj <<
/Length 4406      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Sorcery)-250(And)-250(Witchcraft)-250(\0502562-2564\051)-9867(29)]TJ
0 g 0 G
 0 -30.759 Td [(to)-281(learn)-280(exactly)-281(how)-280(they)-281(were)-280(used.)-341(They)-281(are)-280(still)-281(viewed)-280(with)]TJ 0 -13.549 Td [(a)-364(certain)-364(amount)-363(of)-364(awe,)-392(and)-364(the)-364(finding)-364(of)-363(a)-364(large)-364(point)-364(in)-363(a)]TJ 0 -13.549 Td [(sandpit)-364(in)-365(Smith)-364(Valley)-365(was)-364(known)-365(in)-364(Woodfords,)-393(fifty)-364(miles)]TJ 0 -13.549 Td [(away.)]TJ 11.956 -14.24 Td [(Sorcery)-348(was)-348(used)-348(to)-349(explain)-348(the)-348(abandonment)-348(of)-348(an)-348(ancient)]TJ -11.956 -13.549 Td [(campsite)-455(at)-456(Dangberg's)-455(Hot)-455(Springs.)-866(This)-455(site)-456(is)-455(a)-455(trove)-455(of)]TJ 0 -13.549 Td [(grinding)-426(stones,)-470(points,)-470(and)-426(other)-426(Washo)-426(artifacts.)-777(Formerly)]TJ 0 -13.549 Td [(there)-407(were)-407(numerous)-407(skeletons)-407(in)-407(the)-407(area,)-446(according)-407(to)-407(both)]TJ 0 -13.549 Td [(Indian)-396(and)-397(white)-396(informants.)-689(However,)-432(the)-397(site)-396(has)-396(not)-396(been)]TJ 0 -13.549 Td [(occupied)-250(in)-250(historic)-250(times)-250(because)-250(of)-250(the)-250(following)-250(incident.)]TJ/F34 9.8629 Tf 19.637 -26.09 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(One)-364(winter)-365(there)-364(was)-365(a)-364(lot)-364(of)-365(Washos)-364(camped)-365(around)-364(the)]TJ -4.379 -12.822 Td [(hot)-316(springs.)-447(My)-315(old)-316(aunt)-316(was)-315(camped)-316(there.)-447(There)-316(was)-315(this)]TJ 0 -12.821 Td [(northern)-417(Washo)-418([from)-417(Sierra)-417(Valley])-417(came)-418(into)-417(the)-417(camp.)]TJ 0 -12.822 Td [(Nobody)-372(know'd)-373(him)-372(and)-373(nobody)-372(would)-373(feed)-372(him.)-618(But)-372(my)]TJ 0 -12.822 Td [(old)-270(aunt)-271(fed)-270(him.)-312(But)-270(he)-271(was)-270(mad)-271(at)-270(them)-271(people)-270(so)-271(he)-270(went)]TJ 0 -12.822 Td [(to)-287(Markleville)-286(and)-287(made)-286(a)-287(lot)-286(of)-287(medicine.)-359([Wh)-1(y)-286(he)-287(went)-286(to)]TJ 0 -12.822 Td [(Markleville)-262(is)-261(unclear.)-285(This)-262(is)-262(the)-261(site)-262(of)-262(another)-261(hot)-262(springs,)]TJ 0 -12.822 Td [(a)-338(fact)-338(which)-338(may)-338(figure)-338(in)-338(the)-338(magic)-338(used.])-514(After)-338(he)-338(made)]TJ 0 -12.821 Td [(medicine)-215(for)-216(a)-215(while)-216(he)-215(kind)-216(of)-215(spit)-215(on)-216(his)-215(fingers)-216(and)-215(pointed)]TJ 0 -12.822 Td [(at)-209(Dangberg)-208(Hot)-209(Springs.)-236(Right)-208(where)-209(he)-208(po)-1(inted)-208(all)-209(the)-208(grass)]TJ 0 -12.822 Td [(got)-328(brown;)-367(you)-327(can)-328(still)-328(see)-328(that)-328(line)-328(of)-328(brown)-327(if)-328(you)-328(know)]TJ 0 -12.822 Td [(where)-317(to)-318(look,)-334(and)-317(a)-317(lot)-318(of)-317(Indians)-317(died.)-452(Nobody)-318(ever)-317(went)]TJ 0 -12.822 Td [(back)-250(there.)-250(My)-250(old)-250(aunt)-250(she)-250(didn't)-250(die.)]TJ/F34 9.8629 Tf 151.07 0 Td [(\035)]TJ/F16 10.9091 Tf -158.751 -26.816 Td [(Only)-294(one)-294(Washo)-293(disputed)-294(this)-294(story.)-381(She,)-305(a)-294(very)-294(progressive)]TJ -11.956 -13.55 Td [(old)-323(woman)-322(and)-322(sometime)-323(Christian,)-341(attributed)-322(the)-323(deaths)-322(to)-322(an)]TJ 0 -13.549 Td [(epidemic)-250(and)]TJ/F34 10.9091 Tf 61.2 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(didn't)-250(think)]TJ/F34 10.9091 Tf 49.549 0 Td [(\035)]TJ/F16 10.9091 Tf 7.571 0 Td [(the)-250(doctor)-250(was)-250(responsible.)]TJ -111.208 -14.239 Td [(Witchcraft)-434(and)-433(sorcery)-434(among)-433(the)-434(present-day)-433(Washo)-434(is)-433(a)]TJ -11.956 -13.549 Td [(difficult)-436(subject)-437(to)-436(investigate.)-810(Even)-436(among)-437(themselves)-436(it)-436(is)]TJ 0 -13.549 Td [(treated)-309(with)-309(extreme)-309(indirection)-308(and)-309(veiled)-309(hints.)-427(In)-308(discussing)]TJ 0 -13.549 Td [(the)-294(problem)-294(with)-294(d'Azevedo)-294(I)-294(found)-294(that)-294(we)-294(were)-294(in)-293(agreement)]TJ 0 -13.55 Td [(that)-433(a)-432(number)-433(of)-433(killings)-433(reported)-432(among)-433(these)-433(people)-432(could)]TJ 0 -13.549 Td [(probably)-222(be)-222(attributed)-221(to)-222(revenge)-222(for,)-227(or)-222(prevention)-222(of,)-227(antisocial)]TJ 0 -13.549 Td [(use)-250(of)-250(power.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
166 0 obj <<
/Type /Page
/Contents 167 0 R
/Resources 165 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 156 0 R
>> endobj
165 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
168 0 obj
<< /S /GoTo /D (index12) >>
endobj
171 0 obj
(War Power)
endobj
174 0 obj <<
/Length 3838      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(30)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 11.956 -30.759 Td [(One)-156(woman,)-175(now)-156(dead,)-175(was)-157(described)-156(as)-156(probably)-156(a)-157(witch.)-218(The)]TJ -11.956 -13.549 Td [(wife)-260(of)-261(the)-260(diviner)-260(mentioned)-260(earlier)-261(was)-260(considered)-260(a)-260(powerful)]TJ 0 -13.549 Td [(and)-191(dangerous)-191(woman.)-230(She)-191(was)-190(useful)-191(to)-191(the)-191(community)-190(because)]TJ 0 -13.549 Td [(she)-425(knew)-425(prayers)-425(and)-425(songs)-425(for)-425(the)-425(pine-nut)-425(celebration,)-468(but)]TJ 0 -13.55 Td [(dangerous,)-353(particularly)-332(if)-332(she)-332(met)-331(you)-332(at)-332(night.)-496(One)-332(informant)]TJ 0 -13.549 Td [(describes)-250(the)-250(attitude)-250(of)-250(the)-250(rest)-250(of)-250(the)-250(community)-250(toward)-250(her.)]TJ/F34 9.8629 Tf 19.637 -22.222 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(She)-331(used)-331(to)-331(come)-331(around)-331(at)-331(night)-331(and)-331(knock)-331(on)-331(your)-331(door)]TJ -4.379 -12.821 Td [(and)-299(say)-300(she)-299(was)-300(lost.)-398(She)-299(came)-300(here)-299(one)-299(night)-300(and)-299(pounded)]TJ 0 -12.822 Td [(on)-337(the)-336(door)-337(with)-336(her)-337(cane)-336(but)-337(we)-337(wouldn't)-336(let)-337(her)-336(in.)-510(After)]TJ 0 -12.822 Td [(she)-301(went)-301(away)-300(my)-301(husband)-301(rolled)-301(up)-301(a)-301(newspaper)-300(and)-301(set)-301(it)]TJ 0 -12.822 Td [(on)-297(fire)-298(and)-297(ran)-297(it)-298(along)-297(the)-297(inside)-298(of)-297(the)-297(door)-297(where)-298(she)-297(had)]TJ 0 -12.822 Td [(knocked.)-357(I)-285(don't)-286(know)-286(why)-285(he)-286(did)-286(that)-285(except)-286(we)-286(was)-285(afraid)]TJ 0 -12.821 Td [(of)-250(her.)]TJ/F34 9.8629 Tf 25.742 0 Td [(\035)]TJ/F16 10.9091 Tf -33.423 -22.95 Td [(Stewart)-468(also)-468(reports)-467(this)-468(attitude)-468(toward)-468(the)-468(same)-467(woman)]TJ -11.956 -13.549 Td [(\0501941,)-250(p.)-250(444;)-250(2562\051.)]TJ 11.956 -13.549 Td [(The)-204(woman)-204(who)-204(told)-203(me)-204(this)-204(story)-204(is)-204(herself)-204(under)-204(the)-203(shadow)]TJ -11.956 -13.549 Td [(of)-262(indictment)-262(for)-261(witchcraft.)-285(Curiously)-262(enough)-262(the)-262(same)-261(phrase,)]TJ/F34 10.9091 Tf 0 -13.549 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(I)-471(am)-471(afraid)-470(of)-471(her,)]TJ/F34 10.9091 Tf 88.695 0 Td [(\035)]TJ/F16 10.9091 Tf 9.98 0 Td [(serves)-471(as)-471(an)-471(accusation.)-912(She)-471(and)-471(her)]TJ -103.519 -13.549 Td [(sister-in-law)-333(quarreled)-332(over)-333(the)-332(disposal)-333(of)-332(her)-333(husband's)-332(body)]TJ 0 -13.55 Td [(two)-366(years)-365(ago.)-598(Since)-365(that)-366(time)-366(they)-366(have)-365(not)-366(spoken,)-395(and)-365(the)]TJ 0 -13.549 Td [(sister-in-law)-250(has)-250(been)-250(proclaiming)-250(her)-250(fear.)]TJ/F16 15.7808 Tf 0 -57.206 Td [(War)-250(Power)]TJ/F16 10.9091 Tf 0 -28.84 Td [(The)-284(Washo)-284(have)-284(not)-283(engaged)-284(in)-284(real)-284(hostilities)-284(with)-284(the)-283(Miwok)]TJ 0 -13.549 Td [(or)-367(Maidu)-368(for)-367(well)-367(over)-368(a)-367(century)-367(and)-368(Paiute)-367(hostilities)-367(appear)]TJ 0 -13.549 Td [(to)-289(have)-288(taken)-289(the)-289(form)-288(of)-289(occasional)-289(defensive)-288(skirmishes;)-308(thus)]TJ 0 -13.549 Td [(the)-332(details)-333(of)-332(war)-332(magic)-332(are)-333(vague.)-496(However,)-353(Washo)-332(tradition)]TJ 0 -13.55 Td [(repeatedly)-318(mentions)-318(a)-319(month-long)-318(period)-318(during)-318(which)-318(doctors)]TJ 0 -13.549 Td [(gathered)-223(and)-224(made)-223(medicine)-223(against)-224(the)-223(enemy)-223(before)-223(launching)]TJ 0 -13.549 Td [(a)-337(campaign.)-511(Usually)-337(this)-337(took)-337(place)-337(at)-337(Woodfords,)-358(which)-337(was)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
173 0 obj <<
/Type /Page
/Contents 174 0 R
/Resources 172 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 156 0 R
>> endobj
169 0 obj <<
/D [173 0 R /XYZ 93.543 209.705 null]
>> endobj
172 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
175 0 obj
<< /S /GoTo /D (index13) >>
endobj
178 0 obj
(Summary Of Shamanism)
endobj
181 0 obj <<
/Length 4478      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Summary)-250(Of)-250(Shamanism)-14613(31)]TJ
0 g 0 G
 0 -30.759 Td [(the)-324(site)-324(of)-324(a)-324(large)-324(earth)-324(lodge)-324(dance)-324(house)-324(copied)-324(after)-324(Miwok)]TJ 0 -13.549 Td [(structures)-229(and)-230(described)-229(as)]TJ/F34 10.9091 Tf 119.068 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(where)-229(the)-230(young)-229(mens)-230(learned)-229(them)]TJ -123.911 -13.549 Td [(Miwok)-204(dances.)]TJ/F34 10.9091 Tf 66.148 0 Td [(\035)]TJ/F16 10.9091 Tf 7.064 0 Td [(\050A)-204(second)-203(dance)-204(house)-203(is)-204(known)-203(to)-204(have)-203(existed)]TJ -73.212 -13.549 Td [(in)-284(Sierra)-283(Valley;)-300(attributed)-284(to)-283(the)-284(Maidu,)-292(it)-283(fell)-283(into)-284(disuse)-283(after)]TJ 0 -13.55 Td [(the)-250(death)-250(of)-250(its)-250(owner.\051)]TJ/F16 15.7808 Tf 0 -57.311 Td [(Summary)-250(Of)-250(Shamanism)]TJ/F16 10.9091 Tf 0 -28.893 Td [(Although)-390(there)-389(appears)-390(to)-389(be)-390(only)-390(a)-389(single)-390(practicing)-389(shaman)]TJ 0 -13.55 Td [(among)-470(the)-470(Washo)-470(today)-470(\050and)-470(he)-470(certainly)-470(not)-470(a)-469(practitioner)]TJ 0 -13.549 Td [(of)-427(the)-426(old)-427(school\051,)-471(it)-427(would)-426(be)-427(a)-426(mistake,)-471(in)-427(my)-427(opinion,)-470(to)]TJ 0 -13.549 Td [(claim)-424(that)-425(Washo)-424(shamanism)-424(is)-425(a)-424(thing)-424(of)-424(the)-425(past.)-773(Few,)-467(if)]TJ 0 -13.549 Td [(any,)-386(Washo)-359(over)-359(forty)-359(have)-359(not)-359(attended)-359(a)-359(shamanistic)-358(curing)]TJ 0 -13.549 Td [(ceremony)-437(and)-437(many)-437(have)-436(been)-437(patients.)-811(Even)-437(those)-436(Indians)]TJ 0 -13.55 Td [(who)-244(have)-244(rejected)-245(shamanism)-244(as)-244(old)-244(fashioned)]TJ/F34 10.9091 Tf 204.426 0 Td [(\024)]TJ/F16 10.9091 Tf 10.909 0 Td [(or)-244(in)-244(deference)]TJ -215.335 -13.549 Td [(to)-375(white)-376(attitudes)]TJ/F34 10.9091 Tf 77.89 0 Td [(\024)]TJ/F16 10.9091 Tf 10.909 0 Td [(give)-375(one)-376(the)-375(impression)-376(of)]TJ/F34 10.9091 Tf 125.314 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(protesting)-375(too)]TJ -218.957 -13.549 Td [(much)]TJ/F34 10.9091 Tf 24.24 0 Td [(\035)]TJ/F16 10.9091 Tf 8.369 0 Td [(in)-323(their)-323(denial)-323(of)-323(old)-324(beliefs.)-469(The)-323(woman)-323(who)-323(took)-323(her)]TJ -32.609 -13.549 Td [(granddaughter)-164(to)-163(Rupert,)-181(the)-163(curer,)-181(is)-164(among)-163(the)-164(most)-163(progressive)]TJ 0 -13.549 Td [(of)-290(the)-290(Washo.)-371(She)-290(is)-290(a)-291(nominal)-290(Christian,)-300(active)-290(in)-290(an)-290(informal)]TJ 0 -13.55 Td [(way)-418(as)-417(a)-418(representative)-418(of)-418(her)-417(people)-418(before)-418(white)-417(authority,)]TJ 0 -13.549 Td [(and)-433(is)-432(most)-433(apt)-432(to)-433(deny)-433(supernatural)-432(explanations)-433(of)-432(historic)]TJ 0 -13.549 Td [(incidents.)-286(Nonetheless)-262(she)-262(has)-262(faith)-262(in)-262(the)-262(power)-262(of)-262(this)-262(modern)]TJ 0 -13.549 Td [(shaman)-250(and)-250(in)-250(the)-250(cures)-250(reported)-250(for)-250(the)-250(old-time)-250(shamans.)]TJ 11.956 -13.549 Td [(One)-457(factor)-456(in)-457(the)-456(decline)-457(of)-457(the)-456(shaman)-457(as)-456(a)-457(principal)-456(in)]TJ -11.956 -13.55 Td [(curative)-415(activities)-414(was)-415(the)-415(rise)-414(of)-415(the)-415(peyote)-414(cult)-415(in)-415(the)-414(mid-)]TJ 0 -13.549 Td [(1930's)-441(\050Stewart)-441(1944\051.)-824(The)-441(cult)-442(was)-441(introduced)-441(by)-441(a)-441(Paiute)]TJ 0 -13.549 Td [(who)-304(gathered)-304(a)-304(number)-304(of)-304(Washo)-304(followers.)-412(His)-304(cult)-304(or)]TJ/F34 10.9091 Tf 252.768 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(way)]TJ/F34 10.9091 Tf 18.175 0 Td [(\035)]TJ/F16 10.9091 Tf -275.787 -13.549 Td [(has)-281(since)-281(been)-280(superseded)-281(by)-281(a)-281(strictly)-280(Washo)-281(group,)-288(following)]TJ 0 -13.549 Td [(the)-467(Teepee)-467(Way)-467(\050d'Azevedo)-467(1957\051.)-901(The)-467(Teepee)-467(Way)-467(is)-466(an)]TJ 0 -13.549 Td [(illustration)-238(of)-238(the)-238(effect)-239(an)-238(ethnographer)-238(can)-238(have)-238(on)-238(the)-238(lives)-238(of)]TJ 0 -13.55 Td [(his)-242(subjects.)-247(A)-242(casual)-242(remark)-242(by)-242(an)-242(ethnographer)-242(that)-242(the)-241(peyote)]TJ 0 -13.549 Td [(ceremonies)-312(carried)-312(out)-312(by)-312(the)-312(Paiute)-312(leader)-312(were)-312(not)-312(like)-311(those)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
180 0 obj <<
/Type /Page
/Contents 181 0 R
/Resources 179 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 156 0 R
>> endobj
176 0 obj <<
/D [180 0 R /XYZ 46.771 440.595 null]
>> endobj
179 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
184 0 obj <<
/Length 4838      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(32)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(he)-334(had)-334(seen)-334(elsewhere)-334(motivated)-334(a)-334(Washo)-334(to)-334(drive)-334(to)-334(Idaho)-334(to)]TJ 0 -13.549 Td [(find)-353(out)-353(for)-353(himself.)-558(This)-353(trip)-353(resulted)-353(in)-353(the)-353(formation)-353(of)-352(the)]TJ 0 -13.549 Td [(new)-395(cult)-394(and)-395(the)-394(near)-394(dissolution)-395(of)-394(the)-395(group)-394(headed)-395(by)-394(the)]TJ 0 -13.549 Td [(Paiute.)-643(Washo)-382(peyotism)-381(has)-381(incorporated)-381(much)-381(of)-381(the)-381(curing)]TJ 0 -13.55 Td [(emphasis)-328(of)-327(Washo)-328(shamanism)-327(and)-328(much)-328(of)-327(the)-328(symbolism)-327(as)]TJ 0 -13.549 Td [(well.)-721(The)-407(peyote)-407(button)-407(is)-407(reminiscent)-407(of)-407(the)-407(poison)-406(parsnip)]TJ 0 -13.549 Td [(taken)-223(by)-223(old-time)-222(doctors)-223(\050d'Azevedo)-223(1957\051.)-241(The)-223(powerful)-222(eagle)]TJ 0 -13.549 Td [(feather)-351(is)-351(reserved)-351(for)-351(the)-352(use)-351(of)-351(road)-351(chiefs)-351(just)-351(as)-351(it)-351(was)-351(the)]TJ 0 -13.549 Td [(special)-412(symbol)-413(of)-412(the)-412(shaman)-413(or)-412(powerful)-412(warrior.)-737(The)-412(fans)]TJ 0 -13.55 Td [(carried)-214(by)-214(most)-214(peyotists)-213(are)-214(often)-214(composed)-214(of)-214(magpie)-213(feathers.)]TJ 0 -13.549 Td [(Curative)-239(peyote)-238(meetings)-239(are)-238(often)-239(conducted)-239(by)-238(a)-239(special)-238(chief,)]TJ 0 -13.549 Td [(reputed)-208(to)-208(have)-209(very)-208(potent)-208(curing)-208(powers,)-217(who)-208(does)-208(not)-208(conduct)]TJ 0 -13.549 Td [(the)-271(regular)-272(peyote)-271(meeting.)-315(Even)-271(in)-272(regular)-271(meetings)-272(one)-271(of)-271(the)]TJ 0 -13.549 Td [(main)-240(emphases)-240(is)-241(on)-240(curing)-240(ailments)-240(of)-241(both)-240(the)-240(body)-240(and)-240(spirit.)]TJ 11.956 -13.887 Td [(Led)-444(by)-445(an)-444(assimilated)-445(Washo,)-493(known)-444(by)-445(other)-444(Indians)-444(as)]TJ -11.956 -13.55 Td [(a)]TJ/F34 10.9091 Tf 9.447 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(white)-422(man's)-422(Indian,)]TJ/F34 10.9091 Tf 89.038 0 Td [(\035)]TJ/F16 10.9091 Tf 9.447 0 Td [(the)-422(shamans)-422(brought)-422(suit)-422(against)-422(the)]TJ -112.776 -13.549 Td [(peyotists)-463(urging)-462(they)-463(be)-462(arrested)-463(and)-462(their)-463(meetings)-462(banned.)]TJ 0 -13.549 Td [(They)-375(charged,)-406(among)-375(other)-375(things,)-406(that)-375(peyote)-375(meetings)-375(were)]TJ 0 -13.549 Td [(occasions)-470(of)-470(sexual)-470(license.)-911(Such)-470(open)-470(accusations)-470(and)-470(the)]TJ 0 -13.549 Td [(bringing)-434(of)-434(white)-434(men)-434(into)-434(a)-434(strictly)-434(Indian)-434(matter)-434(created)-433(a)]TJ 0 -13.55 Td [(great)-245(deal)-244(of)-245(antagonism)-244(toward)-245(the)-245(shamans)-244(among)-245(the)-244(Washo,)]TJ 0 -13.549 Td [(whether)-250(or)-250(not)-250(they)-250(were)-250(committed)-250(to)-250(peyote.)]TJ 11.956 -13.887 Td [(Peyote)-343(curing)-343(differs)-342(only)-343(in)-343(detail)-343(from)-343(shamanistic)-342(curing)]TJ -11.956 -13.549 Td [(as)-250(these)-250(two)-250(stories)-250(may)-250(illustrate.)]TJ/F34 9.8629 Tf 19.637 -24.329 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(Had)-351(these)-351(gallstones)-351(and)-352(them)-351(white)-351(doctors)-351(operated)-351(and)]TJ -4.379 -12.822 Td [(they)-285(got)-285(a)-285(lotta)-286(little)-285(stones)-285(but)-285(pretty)-285(soon)-285(it)-285(was)-286(back.)-355(So)-285(I)]TJ 0 -12.822 Td [(decided)-233(to)-232(pray.)-245(You)-232(know)-233(whenever)-233(an)-232(Indian)-233(wants)-232(to)-233(pray)]TJ 0 -12.822 Td [(the)-235(first)-236(thing)-235(he)-236(turns)-235(to)-236(is)-235(water)-236(and)-235(tobacco.)-245(So)-236(every)-235(night)]TJ 0 -12.822 Td [(when)-335(I)-335(went)-334(to)-335(the)-335(john)-335([toilet])-335(I'd)-335(roll)-335(a)-334(cigarette)-335(and)-335(pray)]TJ 0 -12.822 Td [(to)-298(that)-298(Peyote.)-394(I'd)-298(say,)]TJ/F34 9.8629 Tf 93.142 0 Td [(\030)]TJ/F16 9.8629 Tf 3.284 0 Td [(I)-298(don't)-298(want)-298(to)-298(be)-298(sick)-298(so)-298(you)-298(got)-298(to)]TJ -96.426 -12.821 Td [(help)-261(them)-260(white)-261(doctors.)-282(You)-260(got)-261(to)-261(get)-260(all)-261(those)-261(little)-260(stones)]TJ 0 -12.822 Td [(together)-229(in)-229(one)-228(place.)]TJ/F34 9.8629 Tf 84.283 0 Td [(\031)]TJ/F16 9.8629 Tf 5.541 0 Td [(That)-229(Peyote)-229(is)-228(a)-229(good)-229(medicine.)-243(I)-229(used)]TJ -89.824 -12.822 Td [(to)-318(go)-317(to)-318(meetings)-317(and)-318(it)-317(helped)-318(me)-318(before.)-452(So)-318(every)-318(night)-317(I)]TJ 0 -12.822 Td [(prayed)-290(to)-290(the)-290(Peyote)-289(to)-290(get)-290(them)-290(stones)-290(in)-290(one)-290(place.)-369(Then)-290(I)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
183 0 obj <<
/Type /Page
/Contents 184 0 R
/Resources 182 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 156 0 R
>> endobj
182 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
187 0 obj <<
/Length 4221      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Summary)-250(Of)-250(Shamanism)-14613(33)]TJ
0 g 0 G
/F16 9.8629 Tf 19.637 -30.759 Td [(went)-240(to)-240(the)-240(hospital)-240(and)-240(they)-240(operated)-240(and)-240(got)-240(out)-240(the)-240(biggest)]TJ 0 -12.822 Td [(gallstone)-335(they)-336(ever)-335(saw.)-506(It)-335(would)-335(hardly)-335(go)-336(in)-335(a)-335(fruit)-335(jar.)-506(I)]TJ 0 -12.822 Td [(told)-260(that)-260(Peyote)-260(that)-259(the)-260(job)-260(was)-260(too)-260(big)-260(for)-260(it)-260(all)-259(alone)-260(that)-260(it)]TJ 0 -12.821 Td [(should)-230(just)-229(help)-230(them)-230(white)-230(doctors)-229(and)-230(get)-230(all)-230(them)-229(stones)-230(in)]TJ 0 -12.822 Td [(one)-250(place.)]TJ/F34 9.8629 Tf 39.984 0 Td [(\035)]TJ/F16 10.9091 Tf -47.665 -30.445 Td [(Another)-330(informant,)-350(mentioned)-331(earlier)-330(as)-330(a)-330(peyote)-330(chief)-330(with)]TJ -11.956 -13.55 Td [(special)-237(curing)-236(power,)-239(recounts)-237(the)-237(events)-236(leading)-237(up)-236(to)-237(the)-236(death)]TJ 0 -13.549 Td [(of)-250(his)-250(former)-250(wife)-250(of)-250(cancer)-250(of)-250(the)-250(kidneys.)]TJ/F16 7.9701 Tf 291.024 0 Td [([373])]TJ/F34 9.8629 Tf -271.387 -29.718 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(Yeah)-280(I)-280(had)-280(a)-281(couple)-280(of)-280(meetings)-280(for)-280(Onie.)-341(I)-280(helped)-280(her)-280(too.)]TJ -4.379 -12.821 Td [(Except)-315(she)-315(would)-315(not)-315(do)-314(the)-315(things)-315(I)-315(told)-315(her)-315(to)-315(do.)-444(I)-315(made)]TJ 0 -12.822 Td [(that)-290(cancer)-290(move)-290(around)-290(from)-290(her)-290(back)-291(where)-290(it)-290(hurt)-290(a)-290(lot.)-370(I)]TJ 0 -12.822 Td [(got)-336(it)-337(around)-336(in)-336(front)-337(where)-336(it)-337(didn't)-336(hurt)-336(her)-337(so)-336(much.)-509(But)]TJ 0 -12.822 Td [(she)-250(wouldn't)-250(keep)-250(doing)-250(the)-250(things)-250(I)-250(told)-250(her)-250(to)-250(do.)]TJ/F34 9.8629 Tf 200.395 0 Td [(\035)]TJ/F16 10.9091 Tf -208.076 -30.445 Td [(These)-476(two)-476(incidents)-476(reveal)-476(traditional)-476(attitudes)-475(transferred)]TJ -11.955 -13.549 Td [(into)-344(a)-344(new)-344(framework)-344(of)-344(curing.)-532(In)-345(the)-344(first)-344(place,)-367(illness)-344(is)-344(a)]TJ 0 -13.549 Td [(corporeal)-208(object)-207(which)-208(can)-208(be)-207(manipulated)]TJ/F34 10.9091 Tf 185.218 0 Td [(\024)]TJ/F16 10.9091 Tf 10.909 0 Td [(moved)-208(and)-207(\050if)-208(one's)]TJ -196.128 -13.55 Td [(power)-337(is)-337(sufficient\051)-337(removed.)-511(Secondly,)-359(peyote)-337(is)-337(viewed)-337(as)-337(a)]TJ 0 -13.549 Td [(manifestation)-209(of)-209(a)-209(spiritual)-209(power.)-236(The)-209(informant)-209(with)-209(gallstones)]TJ 0 -13.549 Td [(did)-219(not)-218(attend)-219(meetings)-219(to)-219(have)-218(his)-219(ailment)-219(cured;)-229(rather,)-225(he)-218(used)]TJ 0 -13.549 Td [(water)-416(and)-415(tobacco,)-457(traditional)-416(adjuncts)-415(to)-416(shamanistic)-415(curing.)]TJ 0 -13.549 Td [(Moreover)-217(he)-216(did)-217(not)-217(take)-216(peyote)-217(for)-217(his)-216(illness;)-228(he)-217(simply)-216(prayed)]TJ 0 -13.55 Td [(to)-237(Peyote)-236(in)-237(a)-236(manner)-237(very)-236(similar)-237(to)-236(praying)-237(to)-236(a)-237(spirit)-236(guardian)]TJ 0 -13.549 Td [(for)-250(assistance.)]TJ 11.956 -14.965 Td [(Other)-416(shadows)-416(of)-415(the)-416(shamanistic)-416(past)-416(seem)-416(to)-416(lie)-415(heavily)]TJ -11.956 -13.549 Td [(on)-341(the)-340(minds)-341(of)-340(modern)-341(Washo)-340(peyotists.)-522(In)-340(his)-341(discussion)-340(of)]TJ 0 -13.549 Td [(peyotism,)-476(d'Azevedo)-430(\0501957,)-476(pp.)-791(624-626\051)-431(describes)-430(in)-430(some)]TJ 0 -13.549 Td [(detail)-322(the)-322(attitudes)-322(about)-321(the)-322(assistance)-322(or)-322(interference)-322(that)-321(one)]TJ 0 -13.549 Td [(peyote)-526(singer)-526(or)-526(drummer)-525(may)-526(receive)-526(from)-526(another.)-1077(The)]TJ 0 -13.55 Td [(statements)-542(of)-542(his)-542(informants,)-615(although)-542(couched)-542(in)-541(different)]TJ 0 -13.549 Td [(terms,)-215(are)-207(reminiscent)-206(of)-207(many)-206(I)-207(heard)-206(dealing)-207(with)-206(competitions)]TJ 0 -13.549 Td [(between)-250(shamans.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
186 0 obj <<
/Type /Page
/Contents 187 0 R
/Resources 185 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 189 0 R
>> endobj
188 0 obj <<
/D [186 0 R /XYZ 46.771 406.966 null]
>> endobj
185 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
192 0 obj <<
/Length 3997      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(34)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 11.956 -30.759 Td [(For)-230(several)-230(years)-230(peyotists)-231(were)-230(a)-230(powerful)-230(factor)-230(in)-230(the)-230(tribal)]TJ -11.956 -13.549 Td [(council,)-437(and)-400(they)-399(were)-400(not)-399(loath)-400(to)-400(play)-399(upon)-400(the)-399(connection)]TJ 0 -13.549 Td [(between)-575(peyote)-574(and)-575(poison)-574(parsnips)-575(in)-575(the)-574(minds)-575(of)-574(their)]TJ 0 -13.549 Td [(cotribalists.)-600(The)-367(peyote)-366(button)-367(is)-367(considered)-366(to)-367(be)-367(a)-366(powerful)]TJ 0 -13.55 Td [(agent)-316(and)-317(as)-316(such)-317(potentially)-316(dangerous.)-449(Therefore)-317(a)-316(man)-316(who)]TJ 0 -13.549 Td [(could)-284(deal)-285(with)-284(this)-285(agent,)-293(just)-284(like)-284(a)-285(shaman)-284(who)-285(could)-284(eat)-284(the)]TJ 0 -13.549 Td [(poison)-334(parsnip)-334(with)-335(impunity,)-355(was)-334(a)-334(man)-335(to)-334(be)-334(listened)-334(to)-334(and)]TJ 0 -13.549 Td [(followed.)]TJ 11.956 -13.549 Td [(Despite)-236(a)-235(belief)-236(in)-236(and)-235(a)-236(dependence)-236(on)-235(shamanistic)-236(curing)-235(or)]TJ -11.956 -13.55 Td [(its)-229(latter-day)-229(counterpart,)-233(the)-229(peyote)-229(curing)-228(session,)-234(most)-228(Washo)]TJ 0 -13.549 Td [(are)-276(willing)-275(patients)-276(of)-276(white)-275(doctors.)-327(This)-276(suggests)-276(that)-275(perhaps)]TJ 0 -13.549 Td [(the)-340(old)-341(views)-340(are)-341(disappearing)-340(under)-340(the)-341(scientific)-340(certainty)-340(of)]TJ 0 -13.549 Td [(Western)-221(medicine.)-241(Quite)-221(the)-222(reverse)-221(seems)-222(true,)-227(however.)-240(Every)]TJ 0 -13.549 Td [(failure)-277(of)-277(white)-277(medicine)-277(strengthens)-277(the)-277(Indians')-277(belief)-277(that)-277(the)]TJ 0 -13.55 Td [(real)-281(source)-280(of)-281(curing)-281(power)-280(is)-281(a)-281(gift)-280(from)-281(nature.)-342(Every)-280(success)]TJ 0 -13.549 Td [(is)-451(attributed)-452(to)-451(assistance)-452(the)-451(white)-451(men)-452(have)-451(received)-451(from)]TJ 0 -13.549 Td [(Indians')-382(power.)-647(When)-382(asked)-382(the)-382(direct)-382(question:)]TJ/F34 10.9091 Tf 226.64 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(Why)-382(aren't)]TJ -231.483 -13.549 Td [(there)-341(so)-341(many)-342(Indian)-341(doctors)-341(today?)]TJ/F34 10.9091 Tf 163.428 0 Td [(\035)]TJ/F16 10.9091 Tf 8.566 0 Td [(my)-341(informant)-341(answered:)]TJ/F34 10.9091 Tf -171.994 -13.549 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(Well,)-363(Indians)-340(just)-340(don't)-340(need)-340(all)-340(that)-340(power)-340(today.)-520(The)-340(white)]TJ -4.844 -13.55 Td [(doctors)-204(know)-204(a)-204(lot)-204(of)-204(things)-204(and)-204(can)-204(cure)-204(sickness)-204(pretty)-204(good.)-234(In)]TJ 0 -13.549 Td [(the)-243(old)-243(days)-243(we)-243(didn't)-242(know)-243(them)-243(things)-243(so)-243(we)-243(had)-243(to)-243(have)-242(them)]TJ 0 -13.549 Td [(real)-352(powers.)]TJ/F34 10.9091 Tf 54.426 0 Td [(\035)]TJ/F16 10.9091 Tf 8.683 0 Td [(This)-352(attitude,)-377(that)-352(nature)-352(provided)-352(whatever)-352(was)]TJ -63.109 -13.549 Td [(necessary)-293(for)-293(Washo)-293(survival,)-303(crops)-293(up)-293(in)-293(other)-293(contexts)-292(which)]TJ 0 -13.549 Td [(I)-294(will)-295(discuss)-294(later)-295(in)-294(this)-294(paper.)-384(Far)-294(from)-295(disappearing,)-305(the)-294(old)]TJ 0 -13.55 Td [(notions)-232(seem)-231(to)-232(be)-232(maintaining)-232(a)-231(strong)-232(hold)-232(on)-231(the)-232(minds)-232(of)-231(the)]TJ 0 -13.549 Td [(Washo.)-473(As)-324(the)-325(number)-324(of)-324(active)-325(peyotists)-324(dwindle)-324(\050d'Azevedo)]TJ 0 -13.549 Td [(and)-232(Merriam)-231(1957\051,)-236(one)-231(gets)-232(the)-232(impression)-231(that)-232(the)-231(shamanistic)]TJ 0 -13.549 Td [(forms)-250(may)-250(again)-250(become)-250(a)-250(more)-250(important)-250(part)-250(of)-250(Washo)-250(life.)]TJ/F16 7.9701 Tf -72.756 -29.651 Td [([374])]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
191 0 obj <<
/Type /Page
/Contents 192 0 R
/Resources 190 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 189 0 R
>> endobj
193 0 obj <<
/D [191 0 R /XYZ 93.543 122.696 null]
>> endobj
190 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
194 0 obj
<< /S /GoTo /D (index14) >>
endobj
197 0 obj
(Dreams And Dreamers (2566))
endobj
200 0 obj <<
/Length 3890      
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 46.771 479.321 Td [(Dreams)-250(And)-250(Dreamers)-250(\0502566\051)]TJ/F16 10.9091 Tf 0 -43.085 Td [(Mentioned)-295(almost)-294(as)-295(frequently)-295(as)-294(doctors)-295(are)-295(dreamers,)-305(whom)]TJ 0 -13.55 Td [(the)-198(Washo)-197(view)-198(as)-197(distinct)-197(from)-198(shamans.)-232(The)-198(so-called)-197(antelope)]TJ 0 -13.549 Td [(shaman)-268(and)-268(rabbit)-269(boss)-268(fall)-268(into)-268(this)-269(category)-268(rather)-268(than)-268(that)-268(of)]TJ 0 -13.549 Td [(doctor.)]TJ 11.956 -15.682 Td [(Dreamers)-169(were)-169(gifted)-169(with)-170(a)-169(power)-169(to)-169(foretell)-169(special)-169(classes)-169(of)]TJ -11.956 -13.549 Td [(events)-224(in)-224(dreams.)-241(All)-224(Washo)-224(believe)-224(dreams)-224(are)-224(likely)-224(to)-224(foretell)]TJ 0 -13.549 Td [(the)-394(future,)-430(and)-394(they)-393(are)-394(alert)-394(to)-394(find)-394(meanings)-394(in)-394(any)-393(dreams)]TJ 0 -13.549 Td [(they)-295(have.)-386(Certain)-295(persons,)-307(t)1(hose)-296(thought)-295(of)-295(as)]TJ/F34 10.9091 Tf 211.694 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(dreamers,)]TJ/F34 10.9091 Tf 42.709 0 Td [(\035)]TJ/F16 10.9091 Tf 8.064 0 Td [(are)]TJ -267.31 -13.55 Td [(reported)-250(to)-250(have)-250(special)-250(gifts)-250(of)-250(this)-250(nature.)]TJ 11.956 -15.681 Td [(There)-246(are)-247(apparently)-246(no)-247(dreamers)-246(among)-247(the)-246(Washo)-246(today,)-247(in)]TJ -11.956 -13.55 Td [(the)-325(sense)-325(that)-325(the)-325(term)-325(was)-325(used)-325(in)-325(times)-325(past.)-475(That)-325(is,)-343(no)-325(one)]TJ 0 -13.549 Td [(is)-334(especially)-334(singled)-334(out)-334(as)-334(having)-334(infallible)-334(dreams)-333(foretelling)]TJ 0 -13.549 Td [(certain)-484(classes)-485(of)-484(events.)-954(It)-484(may)-485(be)-484(that)-485(the)-484(breakdown)-484(of)]TJ 0 -13.549 Td [(the)-335(band)-335(structure,)-356(which)-335(was)-335(related)-335(to)-335(economic)-335(exploitative)]TJ 0 -13.549 Td [(activity,)-320(in)-307(effect,)-320(forced)-306(everyone)-307(to)-306(dream)-306(for)-306(himself.)-419(In)-306(the)]TJ 0 -13.55 Td [(past,)-449(dreamers)-409(were)-409(particularly)-409(important)-409(in)-409(setting)-408(the)-409(time)]TJ 0 -13.549 Td [(and)-298(place)-298(for)-298(activities)-299(which)-298(were)-298(carried)-298(out)-298(by)-298(large)-298(groups,)]TJ 0 -13.549 Td [(such)-452(as)-452(hunting,)-503(fishing,)-502(pine-nut)-452(gathering,)-502(and)-452(war.)-856(With)]TJ 0 -13.549 Td [(the)-328(disappearance)-328(of)-328(the)-327(last)-328(seminomadic)-328(bands)-328(in)-328(the)-327(middle)]TJ 0 -13.549 Td [(1920's,)-374(as)-350(well)-350(as)-349(with)-350(the)-349(reduced)-350(importance)-349(of)-350(hunting)-349(and)]TJ 0 -13.55 Td [(fishing)-197(as)-198(group)-197(activities,)-208(persons)-197(having)-198(dreams)-197(which)-197(directed)]TJ 0 -13.549 Td [(group)-337(actions)-337(were)-337(no)-338(longer)-337(useful.)-511(Today,)-359(dreams)-337(appear)-337(to)]TJ 0 -13.549 Td [(occur)-325(to)-326(a)-325(number)-325(of)-326(individuals,)-344(and)-325(those)-325(felt)-326(to)-325(be)-325(of)-325(social)]TJ 0 -13.549 Td [(significance)-390(usually)-390(deal)-390(with)-390(catastrophe)-390(or)-390(other)-389(foreboding)]TJ 0 -13.549 Td [(subjects.)-564(The)-354(following)-355(stories)-354(were)-355(told)-354(to)-355(me)-354(by)-355(the)-354(widow)]TJ 0 -13.55 Td [(under)-251(the)-250(shadow)-251(of)-251(witchcraft.)-252(When)-250(I)-251(asked)-251(her)-250(if)-251(she)-250(thought)]TJ 0 -13.549 Td [(any)-301(of)-300(her)-300(friends)-301(would)-300(tell)-301(me)-300(their)-301(dreams,)-313(she)-300(replied:)]TJ/F34 10.9091 Tf 262.456 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(No)]TJ -267.299 -13.549 Td [(I)-274(don't)-274(think)-274(no)-274(Washo)-275(would)-274(tell)-274(you)-274(their)-274(dreams.)-322(But)-274(I'm)-274(not)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
199 0 obj <<
/Type /Page
/Contents 200 0 R
/Resources 198 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 189 0 R
>> endobj
195 0 obj <<
/D [199 0 R /XYZ 46.771 529.134 null]
>> endobj
198 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
203 0 obj <<
/Length 4606      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(36)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(superstitious)-227(about)-227(them)-226(things)-227(and)-227(I'll)-226(tell)-227(you)-227(these)-227(two)-226(dreams)]TJ 0 -13.549 Td [(I)-250(had.)]TJ/F34 10.9091 Tf 24.84 0 Td [(\035)]TJ/F34 9.8629 Tf -5.203 -24.877 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(One)-250(summer)-251(I)-250(was)-251(up)-250(at)-250(the)-251(Lake)-250([Tahoe])-250(with)-251(my)-250(husband)]TJ -4.379 -12.822 Td [(and)-260(I)-261(had)-260(a)-261(dream)-260(that)-261(the)-260(gambling)-261(house)-260(at)-261(Dresslerville)-260([a)]TJ 0 -12.822 Td [(structure)-330(known)-331(officially)-330(as)-330(the)-330(community)-331(center])-330(was)-330(on)]TJ 0 -12.822 Td [(fire.)-321(There)-273(was)-274(kids)-273(inside)-274(and)-273(they)-274(was)-273(screaming)-274(but)-273(there)]TJ 0 -12.821 Td [(wasn't)-328(no)-328(water.)-485(I)-328(saw)-329(the)-328(men)-328(all)-328(around)-329(with)-328(buckets)-328(but)]TJ 0 -12.822 Td [(they)-247(couldn't)-248(do)-247(nothing)-248(because)-247(there)-248(wasn't)-247(no)-248(water.)-249(I)-247(told)]TJ 0 -12.822 Td [(my)-296(husband)-295(about)-296(the)-296(dream)-295(the)-296(next)-296(morning)-295(and)-296(he)-295(sa)-1(id)-295(I)]TJ 0 -12.822 Td [(should)-262(take)-263(a)-262(bath)-262(and)-263(pray.)-287(That's)-262(what)-262(we)-263(do)-262(to)-262(keep)-263(a)-262(bad)]TJ 0 -12.822 Td [(dream)-250(from)-250(happening.)]TJ/F34 9.8629 Tf 92.307 0 Td [(\035)]TJ/F16 10.9091 Tf -99.988 -25.604 Td [(The)-336(following)-335(winter)-336(the)-335(community)-336(center)-336(did)-335(in)-336(fact)-335(burn)]TJ -11.956 -13.549 Td [(down.)-418(A)-306(young)-307(Indian)-306(in)-306(a)-306(rage)-306(after)-306(having)-306(an)-306(argument)-306(with)]TJ 0 -13.549 Td [(his)-281(father)-280(hurled)-281(a)-280(bottle)-281(of)-280(kerosene)-280(against)-281(a)-280(wood)-281(stove.)-341(The)]TJ 0 -13.55 Td [(resulting)-223(fire)-223(could)-223(not)-223(be)-223(extinguished)-223(because)-223(the)-223(Dresslerville)]TJ 0 -13.549 Td [(pump)-182(was)-183(not)-182(working.)-228(Whether)-182(the)-183(dream)-182(was)-183(really)-182(a)-182(prophecy)]TJ 0 -13.549 Td [(after)-277(t)1(he)-277(fact)-276(I)-277(do)-276(not)-277(know.)-329(It)-277(is)-276(significant)-277(in)-276(any)-277(case)-276(that)-276(the)]TJ 0 -13.549 Td [(prophecy)-169(appeared)-169(in)-169(the)-170(form)-169(of)-169(a)-169(dream.)-223(My)-169(informant's)-169(second)]TJ 0 -13.549 Td [(dream)-276(foretold)-276(the)-276(violent)-276(death)-276(of)-276(a)-276(young)-276(Indian)-276(woman.)-328(The)]TJ 0 -13.55 Td [(prophecy)-250(came)-250(true)-250(two)-250(years)-250(later.)]TJ 11.956 -13.996 Td [(Her)-262(statement)-261(that)-262(other)-261(Washo)-262(would)-262(be)-261(reluctant)-262(to)-261(discuss)]TJ -11.956 -13.549 Td [(their)-407(dreams)-407(was)-406(all)-407(too)-407(true,)-446(confirming)-407(the)-407(importance)-406(that)]TJ 0 -13.55 Td [(dreams)-257(play)-258(in)-257(their)-258(daily)-257(lives.)-273(A)-257(number)-258(of)-257(tangential)-257(remarks)]TJ 0 -13.549 Td [(suggest)-390(that)-390(the)-390(belief)-390(that)-390(dreams)-390(confer)-390(advance)-389(knowledge)]TJ 0 -13.549 Td [(of)-288(the)-289(future)-288(and)-289(that)-288(they)-288(confer)-289(power)-288(is)-289(still)-288(common)-288(among)]TJ 0 -13.549 Td [(the)-484(Washo.)-950(One)-484(informant)-483(said,)-542(in)-483(talking)-484(about)]TJ/F34 10.9091 Tf 238.816 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(old-time)]TJ -243.659 -13.549 Td [(dreamers)]TJ/F34 10.9091 Tf 39.982 0 Td [(\035)]TJ/F16 10.9091 Tf 4.844 0 Td [(:)]TJ/F34 10.9091 Tf 8.653 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(Today)-383(a)-382(lot)-383(of)-382(people)-383(will)-383(say)-382(they)-383(had)-383(a)-382(dream)]TJ -58.323 -13.55 Td [(about)-252(something,)-253(and)-253(act)-252(real)-253(big.)-257(I)-252(just)-253(tell)-252(them)-253(they)-252(are)-252(crazy.)]TJ 0 -13.549 Td [(They)-390(aren't)-390(real)-390(dreamers.)-669(They)-390(couldn't)-390(have)-390(a)-390(dream)-389(about)]TJ 0 -13.549 Td [(their)-250(girl)-250(friend.)]TJ/F34 10.9091 Tf 69.382 0 Td [(\035)]TJ/F16 10.9091 Tf -57.426 -13.997 Td [(Until)-342(very)-342(recent)-341(times)-342(a)-342(dream)-342(was)-342(justification)-342(for)-341(almost)]TJ -11.956 -13.549 Td [(any)-197(group)-197(activity.)-233(The)-197(most)-197(common)-197(motivation)-197(for)-197(such)-197(events)]TJ 0 -13.549 Td [(as)-218(a)-217(pine-nut)-218(dance,)-224(a)-218(war)-218(party,)-224(or)-218(a)-218(rabbit)-217(or)-218(antelope)-218(drive)-217(was)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
202 0 obj <<
/Type /Page
/Contents 203 0 R
/Resources 201 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 189 0 R
>> endobj
201 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
206 0 obj <<
/Length 5698      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Dreams)-250(And)-250(Dreamers)-250(\0502566\051)-12589(37)]TJ
0 g 0 G
 0 -30.759 Td [(usually)-254(that)]TJ/F34 10.9091 Tf 53.429 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(So-and-So)-254(had)-255(a)-254(dream.)]TJ/F34 10.9091 Tf 104.967 0 Td [(\035)]TJ/F16 10.9091 Tf 7.617 0 Td [(An)-254(announcement)-255(would)]TJ -170.856 -13.549 Td [(be)-250(made)-250(and)-250(others)-250(would)-250(gather)-250(for)-250(the)-250(event.)]TJ 11.956 -17.591 Td [(These)-482(dreams)-482(are)-482(clearly)-482(different)-482(from)-482(the)-482(visitations)-482(of)]TJ -11.956 -13.55 Td [(spirits)-374(to)-373(prospective)-374(shamans,)-405(which)-373(occurred)-374(repeatedly)-373(and)]TJ 0 -13.549 Td [(were)-251(kept)-251(secret.)-252(Dreamers,)-251(on)-251(the)-251(other)-251(hand,)-251(publicly)-250(reported)]TJ 0 -13.549 Td [(individual)-352(dreams.)-555(Being)-352(a)-352(dreamer)-351(appears)-352(to)-352(have)-352(been)-351(one)]TJ 0 -13.549 Td [(of)-497(the)-497(important)-497(factors)-497(in)-497(attaining)-497(positions)-497(of)-497(leadership,)]TJ 0 -13.549 Td [(informal)-306(as)-306(such)-306(positions)-306(were)-306(among)-306(the)-306(Washo.)-418(The)-306(almost)]TJ 0 -13.55 Td [(legendary)-309(Captain)-308(Jim,)]TJ/F16 7.9701 Tf 102.176 3.959 Td [(6)]TJ/F16 10.9091 Tf 8.008 -3.959 Td [(who)-309(was)-308(acknowledged)-309(as)-308(a)-309(leader)-308(by)]TJ -110.184 -13.549 Td [(all)-199(the)-199(Washo)-200(in)-199(the)-199(late)-199(nineteenth)-199(century,)-210(is)-199(considered)-199(to)-199(have)]TJ 0 -13.549 Td [(been)-318(a)-318(dreamer)-317(by)-318(many)-318(of)-318(the)-318(Washo.)-453(Those)-318(informants)-317(who)]TJ 0 -13.549 Td [(remember)-255(the)-256(big)-255(times)-256(at)-255(Double)-255(Springs)-256(Flat,)-256(in)-256(which)-255(a)-255(large)]TJ 0 -13.549 Td [(number)-213(of)-213(the)-212(Washo)-213(of)-213(the)-213(day)-212(participated)-213(prior)-213(to)-213(the)-212(pine-nut)]TJ 0 -13.55 Td [(harvest,)-524(usually)-470(begin)-469(their)-470(accounts)-469(with)-470(the)-469(statement)-469(that)]TJ 0 -13.549 Td [(Jim)-296(would)-296(have)-296(a)-297(dream)-296(and)-296(announce)-296(the)-296(date)-296(of)-296(the)-296(meeting.)]TJ 0 -13.549 Td [(Various)-262(parts)-263(of)-262(the)-262(ceremony)-262(were)-263(also)-262(validated)-262(by)-263(dreams.)-286(It)]TJ 0 -13.549 Td [(is)-238(equally)-238(clear)-238(that)-238(although)-238(Jim)-238(was)-238(an)-238(honored)-238(leader)-238(and)-238(had)]TJ 0 -13.549 Td [(dreaming)-250(power)-250(he)-250(was)-250(not)-250(considered)-250(a)-250(doctor.)]TJ 11.956 -17.592 Td [(Negative)-225(testimony)-225(also)-226(indicates)-225(the)-225(importance)-225(of)-225(dreaming)]TJ -11.956 -13.549 Td [(in)-209(Washo)-209(life.)-236(It)-209(is)-209(to)-208(the)-209(advantage)-209(of)-209(certain)-209(individuals)-209(to)-208(deny)]TJ 0 -13.549 Td [(the)]TJ/F34 10.9091 Tf 15.751 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(chieftainship)]TJ/F34 10.9091 Tf 56.357 0 Td [(\035)]TJ/F16 10.9091 Tf 7.263 0 Td [(of)-222(Captain)-222(Jim;)-231(they)-222(vehement)1(ly)-222(deny)-222(that)-222(he)]TJ -84.214 -13.549 Td [(was)-223(a)-222(dreamer)-223(but)-223(insist)-222(that)-223(he)-223(was)-222(simply)-223(a)-223(good)-222(man)-223(who)-222(was)]TJ 0 -13.549 Td [(trusted)-344(by)-343(the)-344(Washo.)]TJ/F34 10.9091 Tf 103.988 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(That)-344(Jim)-343(was)-344(just)-343(a)-344(good)-343(old)-344(guy)-343(that)]TJ -108.831 -13.55 Td [(everybody)-303(obeyed)-304(because)-303(they)-303(liked)-303(him)-304(and)-303(the)-303(whole)-303(group)]TJ 0 -13.549 Td [(selected)-270(him.)-310(He)-270(wasn't)-270(no)-270(more)-270(of)-270(a)-270(dreamer)-270(than)-270(I)-270(am,)]TJ/F34 10.9091 Tf 249.288 0 Td [(\035)]TJ/F16 10.9091 Tf 7.789 0 Td [(is)-270(the)]TJ -257.077 -13.549 Td [(way)-304(one)-303(claimant)-304(for)-304(the)-303(Washo)-304(chieftainship)-304(put)-303(it.)-411(However,)]TJ 0 -13.549 Td [(his)-248(own)-249(claim)-248(was)-248(based)-248(on)-249(his)-248(relationship)-248(to)-248(a)-249(man)-248(who)-248(was)-248(a)]TJ 0 -13.549 Td [(rabbit)-250(boss)-250(and)-250(who)-250(dreamed)-250(when)-250(it)-250(was)-250(time)-250(to)-250(hunt)-250(rabbits.)]TJ
0 g 0 G
ET
q
1 0 0 1 46.771 131.558 cm
[]0 d 0 J 0.398 w 0 0 m 112.25 0 l S
Q
BT
/F16 5.9776 Tf 52.998 124.746 Td [(6)]TJ/F16 8.9664 Tf 5.729 -3.809 Td [(Captain)-220(Jim)-219(is)-220(the)-220(only)-219(Washo)-220(whom)-219(the)-220(Washo)-220(generally)-219(accept)-220(as)-220(having)]TJ -11.956 -10.959 Td [(been)-356(a)-356(leader)-357(of)-356(the)-356(entire)-356(tribe.)-569(Other)-356(claimants)-356(to)-356(the)-356(title)-357(of)-356(chief)-356(of)-356(the)]TJ 0 -10.959 Td [(Washo)-355(are)-354(contemptuously)-355(discounted.)-564(There)-354(were)-355(in)-355(the)-354(past)-355(a)-354(number)-355(of)]TJ 0 -10.959 Td [(men,)-318(usually)-305(considered)-304(leaders)-305(of)-304(a)]TJ/F34 8.9664 Tf 135.774 0 Td [(\034)]TJ/F16 8.9664 Tf 3.981 0 Td [(bunch)]TJ/F34 8.9664 Tf 21.914 0 Td [(\035)]TJ/F16 8.9664 Tf 6.711 0 Td [(who)-305(were)-304(called)]TJ/F34 8.9664 Tf 62.464 0 Td [(\034)]TJ/F16 8.9664 Tf 3.982 0 Td [(captains)]TJ/F34 8.9664 Tf 29.382 0 Td [(\035)]TJ/F16 8.9664 Tf 6.712 0 Td [(or,)]TJ -270.92 -10.959 Td [(less)-330(often,)]TJ/F34 8.9664 Tf 40.206 0 Td [(\034)]TJ/F16 8.9664 Tf 3.981 0 Td [(chiefs)]TJ/F34 8.9664 Tf 21.411 0 Td [(\035)]TJ/F16 8.9664 Tf 6.936 0 Td [(because)-330(they)-329(dealt)-330(with)-329(the)-330(white)-329(population.)-489(The)-329(entire)]TJ -72.534 -10.959 Td [(institution)-250(of)-250(captain)-250(may)-250(well)-250(be)-250(a)-250(post-white)-250(development.)]TJ
0 g 0 G
0 g 0 G
0 g 0 G
ET
endstream
endobj
205 0 obj <<
/Type /Page
/Contents 206 0 R
/Resources 204 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 189 0 R
>> endobj
204 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
209 0 obj <<
/Length 1634      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(38)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 11.956 -30.759 Td [(Clearly)-212(the)-213(Washo)-212(believed)-212(and)-212(still)-213(believe)-212(that)-212(dreams)-212(make)]TJ -11.956 -13.549 Td [(one)-284(privy)-284(to)-283(the)-284(future)-284(and)-283(provide)-284(important)-284(insights)-284(on)-283(which)]TJ 0 -13.549 Td [(one)-468(can)-468(base)-468(decisions.)-903(The)-468(specific)-468(uses)-468(to)-468(which)-467(dreams)]TJ 0 -13.549 Td [(can)-331(be)-332(put)-331(change)-332(with)-331(the)-332(situation.)-494(Antelope)-332(dreaming)-331(is)-331(no)]TJ 0 -13.55 Td [(longer)-240(important)-240(because)-240(there)-239(are)-240(no)-240(antelope.)-247(Rabbit)-239(dreamers)]TJ 0 -13.549 Td [(no)-430(longer)-430(exist)-429(because)-430(the)-430(rabbit)-430(drive)-429(has)-430(lost)-430(much)-430(of)-429(its)]TJ 0 -13.549 Td [(importance)-458(in)-458(Washo)-458(life.)-873(Conversely,)-510(dreams)-458(dealing)-457(with)]TJ 0 -13.549 Td [(modern)-250(problems)-250(appear)-250(to)-250(be)-250(taken)-250(seriously.)]TJ 11.956 -13.549 Td [(One)-305(informant)-305(often)-305(dreams)-306(of)-305(snakes)-305(and)-305(evidences)-305(a)-305(great)]TJ -11.956 -13.55 Td [(fear)-503(of)-503(them.)-1009(The)-503(Washo)-503(view)-503(this)-503(behavior)-503(as)-503(a)-502(rational)]TJ 0 -13.549 Td [(response)-411(to)-410(a)-411(real)-410(warning)-411(and)-410(consider)-411(the)-410(man's)-411(caution)-410(as)]TJ 0 -13.549 Td [(good)-250(judgment)-250(in)-250(the)-250(face)-250(of)-250(repeated)-250(warnings.)]TJ/F16 7.9701 Tf -72.755 -29.651 Td [([375])]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
208 0 obj <<
/Type /Page
/Contents 209 0 R
/Resources 207 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 189 0 R
>> endobj
210 0 obj <<
/D [208 0 R /XYZ 93.543 339.483 null]
>> endobj
207 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
211 0 obj
<< /S /GoTo /D (index15) >>
endobj
214 0 obj
(Ritual Activities)
endobj
215 0 obj
<< /S /GoTo /D (index16) >>
endobj
218 0 obj
(Conception And Contraception)
endobj
221 0 obj <<
/Length 3178      
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 46.771 479.321 Td [(Ritual)-250(Activities)]TJ/F16 10.9091 Tf 0 -34.653 Td [(Few,)-202(if)-191(any,)-202(Washo)-190(activities)-191(do)-190(not)-190(contain)-190(an)-191(element)-190(which)-190(we)]TJ 0 -13.549 Td [(can)-253(describe)-254(as)-253(religious,)-254(supernatural,)-255(or)-253(magical.)-260(This)-253(element)]TJ 0 -13.549 Td [(is)-366(most)-366(commonly)-366(revealed)-366(by)-366(specifically)-366(ritualized)-365(behavior)]TJ 0 -13.549 Td [(carried)-410(on)-410(while)-410(a)-409(regular)-410(course)-410(of)-410(action)-410(is)-410(being)-410(taken)-409(by)]TJ 0 -13.55 Td [(a)-351(Washo.)-555(The)-351(following)-351(sections)-352(will)-351(deal)-352(with)-351(this)-351(ritualized)]TJ 0 -13.549 Td [(behavior)-250(and)-250(the)-250(rationale)-250(for)-250(it)-250(offered)-250(by)-250(the)-250(Washo.)]TJ/F16 15.7808 Tf 0 -62.058 Td [(Conception)-250(And)-250(Contraception)]TJ/F16 10.9091 Tf 0 -31.489 Td [(Apparently)-529(the)-529(Washo)-528(have)-529(no)-529(specific)-529(ritual)-529(to)-528(encourage)]TJ 0 -13.549 Td [(conception.)-510(They)-337(are)-336(extremely)-337(fond)-337(of)-336(children)-337(and)-337(desire)-336(as)]TJ 0 -13.549 Td [(many)-353(as)-353(possible.)-560(No)-353(Washo)-353(has)-354(ever)-353(heard)-353(of,)-379(or)-353(will)-353(admit)]TJ 0 -13.549 Td [(having)-395(heard)-394(of,)-431(infanticide)-394(among)-395(the)-394(Washo,)-431(although)-394(they)]TJ 0 -13.549 Td [(have)-285(heard)-285(of)-285(the)-285(practice)-284(among)-285(other)-285(Indians.)-355(The)-285(birth)-285(of)-284(an)]TJ 0 -13.55 Td [(illegitimate)-306(child,)-320(despite)-306(the)-306(attitude)-306(of)-306(whites,)-320(is)-306(greeted)-305(with)]TJ 0 -13.549 Td [(as)-250(much)-250(joy)-250(as)-250(that)-250(of)-250(a)-250(legitimate)-250(child.)]TJ 11.956 -13.995 Td [(However,)-343(it)-325(is)-324(believed)-325(that)-324(conception)-325(can)-324(be)-325(prevented)-324(by)]TJ -11.956 -13.549 Td [(manipulation)-353(of)-354(the)-353(afterbirth.)-561(When)-353(the)-354(afterbirth)-353(is)-353(expelled)]TJ 0 -13.55 Td [(it)-417(is)-417(wrapped)-418(in)-417(a)-417(piece)-417(of)-417(deer)-417(hide)-417(or)-418(cloth)-417(and)-417(buried.)-751(It)]TJ 0 -13.549 Td [(is)-379(always)-380(placed)-379(right)-379(side)-380(up)-379(if)-379(a)-380(woman)-379(desires)-379(to)-379(continue)]TJ 0 -13.549 Td [(bearing)-306(children.)-418(If)-306(she)-306(wishes)-306(not)-306(to)-306(have)-306(children)-306(it)-306(is)-306(buried)]TJ 0 -13.549 Td [(upside)-313(down.)-437(If)-313(at)-312(a)-313(later)-312(time)-312(she)-313(wishes)-312(to)-313(become)-312(pregnant,)]TJ 0 -13.549 Td [(she)-433(will)-433(turn)-433(the)-433(earth)-433(where)-433(the)-433(upside-down)-433(afterbirth)-432(was)]TJ 0 -13.55 Td [(buried.)-460(Informants)-320(say)-319(that)-320(not)-320(many)-320(people)-320(do)-320(this)-320(any)-319(more,)]TJ 0 -13.549 Td [(mainly)-289(because)-290(younger)-289(women)-290(go)-289(to)-290(the)-289(hospital)-290(to)-289(have)-289(their)]TJ 0 -13.549 Td [(babies,)-231(but)-227(that)-227(many)-227(people)-226(know)-227(how)-227(and)-227(some)-226(may)-227(still)-227(do)-226(it.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
220 0 obj <<
/Type /Page
/Contents 221 0 R
/Resources 219 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 222 0 R
>> endobj
212 0 obj <<
/D [220 0 R /XYZ 46.771 529.134 null]
>> endobj
216 0 obj <<
/D [220 0 R /XYZ 46.771 350.941 null]
>> endobj
219 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
223 0 obj
<< /S /GoTo /D (index17) >>
endobj
226 0 obj
(Birth (2178-2293))
endobj
229 0 obj <<
/Length 3981      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(40)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 11.956 -30.759 Td [(Certain)-391(Indians)-391(are)-391(reported)-392(to)-391(be)-391(able)-391(to)-391(prevent)-391(the)-391(birth)]TJ -11.956 -13.549 Td [(of)-449(children)-449(without)-448(the)-449(knowledge)-449(of)-449(the)-449(woman)-448(concerned.)]TJ 0 -13.549 Td [(This)-379(requires)-380(the)-379(cooperation)-380(of)-379(a)-379(woman)-380(who)-379(has)-380(just)-379(had)-379(a)]TJ 0 -13.549 Td [(child)-362(and)-361(who)-362(will)-361(give)-361(the)-362(magician)-361(the)-362(afterbirth.)-584(It)-362(is)-361(then)]TJ 0 -13.55 Td [(buried)-390(or)-389(hidden)-390(upside)-389(down)-390(and)-390(the)-389(woman)-390(concerned)-389(will)]TJ 0 -13.549 Td [(not)-309(become)-309(pregnant.)-428(The)-309(method)-309(of)-309(transferring)-309(the)-309(influence)]TJ 0 -13.549 Td [(of)-460(the)-460(afterbirth)-460(from)-461(the)-460(real)-460(mother)-460(to)-460(the)-460(victim)-460(was)-460(not)]TJ 0 -13.549 Td [(explained,)-243(and)-240(in)-241(fact)-240(the)-241(practice)-240(was)-241(revealed)-241(with)-240(a)-241(good)-240(deal)]TJ 0 -13.549 Td [(of)-250(reluctance.)]TJ/F16 15.7808 Tf 0 -57.312 Td [(Birth)-250(\0502178-2293\051)]TJ/F16 10.9091 Tf 0 -28.893 Td [(Informants)-351(report)-351(that)-351(the)-351(baby)-351(was)-351(not)-350(touched,)-377(either)-351(by)-350(the)]TJ 0 -13.549 Td [(mother)-312(or)-313(her)-312(attendants,)-328(until)-312(the)-313(afterbirth)-312(was)-312(expelled.)-437(The)]TJ 0 -13.55 Td [(birth)-268(and)-269(recuperation)-268(were)-269(carried)-268(out)-268(in)-269(a)-268(pit)-269(filled)-268(with)-268(warm)]TJ 0 -13.549 Td [(ashes.)-244(A)-234(slow)-233(birth)-234(was)-233(blamed)-233(on)-234(the)-233(belief)-233(that)-234(the)-233(mother)-233(had)]TJ 0 -13.549 Td [(slept)-250(too)-250(much)-250(or)-250(been)-250(lazy)-250(during)-250(her)-250(pregnancy.)]TJ 11.956 -13.549 Td [(The)-534(mother)-534(was)-534(not)-534(allowed)-534(to)-534(eat)-534(salt)-534(until)-534(the)-533(baby's)]TJ -11.956 -13.549 Td [(umbilicus)-534(dropped)-535(off,)-605(usually)-535(in)-534(two)-534(or)-535(three)-534(days.)-1103(The)]TJ 0 -13.549 Td [(umbilicus)-203(was)-202(dried)-203(and)-202(hung)-203(on)-203(the)-202(right)-203(side)-202(of)-203(the)-202(cradleboard)]TJ 0 -13.55 Td [(to)-250(insure)-250(that)-250(the)-250(baby)-250(would)-250(be)-250(right-handed.)]TJ 11.956 -13.549 Td [(The)-272(baby's)-272(hair)-272(was)-272(cut)-271(about)-272(thirty)-272(days)-272(after)-272(its)-272(birth.)-315(Until)]TJ -11.956 -13.549 Td [(that)-343(time)-343(the)-343(mother)-343(was)-343(not)-343(permitted)-343(to)-343(eat)-343(meat)-343(or)-343(to)-343(leave)]TJ 0 -13.549 Td [(her)-226(bed)-226(of)-227(ashes.)-242(However,)-230(one)-227(of)-226(my)-226(informants)-226(who)-226(had)-226(borne)]TJ 0 -13.549 Td [(eight)-251(children)-251(claimed)-250(never)-251(to)-251(have)-250(spent)-251(more)-251(than)-251(two)-250(weeks)]TJ 0 -13.55 Td [(in)-284(her)-284(lying-in)-284(bed.)-352(She)-284(did)-284(insist)-284(that)]TJ/F34 10.9091 Tf 170.679 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(in)-284(the)-284(old)-284(days)]TJ/F34 10.9091 Tf 65.049 0 Td [(\035)]TJ/F16 10.9091 Tf 7.942 0 Td [(women)]TJ -248.514 -13.549 Td [(adhered)-250(to)-250(the)-250(traditional)-250(thirty-day)-250(period.)]TJ 11.956 -13.549 Td [(A)-252(pregnant)-252(woman)-252(was)-252(not)-252(permitted)-252(to)-252(eat)-252(eggs)-252(with)-252(double)]TJ -11.956 -13.549 Td [(yolks,)-251(or)-250(double)-250(fruit,)-251(lest)-250(she)-251(have)-250(twins.)-251(No)-251(special)-250(action)-250(was)]TJ 0 -13.549 Td [(taken)-250(if)-250(twins)-250(were)-250(born,)-250(however.)]TJ 11.956 -13.55 Td [(During)-385(her)-385(confinement)-385(a)-385(woman)-385(was)-385(not)-385(supposed)-385(to)-385(rub)]TJ -11.956 -13.549 Td [(the)-379(sweat)-379(from)-379(her)-380(face.)-637(She)-379(might)-379(dab)-380(the)-379(sweat)-379(off,)-411(but)-379(to)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
228 0 obj <<
/Type /Page
/Contents 229 0 R
/Resources 227 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 222 0 R
>> endobj
224 0 obj <<
/D [228 0 R /XYZ 93.543 388.23 null]
>> endobj
227 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
230 0 obj
<< /S /GoTo /D (index18) >>
endobj
233 0 obj
(Puberty: Girls (2305-2352))
endobj
236 0 obj <<
/Length 4239      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Puberty:)-250(Girls)-250(\0502305-2352\051)-13836(41)]TJ
0 g 0 G
 0 -30.759 Td [(rub)-459(it)-459(would)-458(cause)-459(her)-459(to)-459(be)-459(wrinkled)-459(in)-458(her)-459(old)-459(age.)-876(One)]TJ 0 -13.549 Td [(informant)-314(assured)-313(me)-314(that)-313(this)-314(was)-314(the)-313(truth)-314(and)-313(pointed)-314(to)-313(her)]TJ 0 -13.549 Td [(own)-250(relatively)-250(unwrinkled)-250(face)-250(as)-250(proof.)]TJ 11.956 -14.282 Td [(When)-230(a)-229(child)-230(loses)-230(a)-230(milk)-229(tooth,)-234(it)-230(is)-230(taken)-229(up)-230(and)-230(thrown)-229(into)]TJ -11.956 -13.549 Td [(the)-293(brush.)-379(At)-292(that)-293(time)-293(an)-293(admonition)-293(is)-293(shouted)-293(to)]TJ/F34 10.9091 Tf 229.555 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(some)-293(little)]TJ -234.399 -13.549 Td [(animal)-281(with)-281(sharp)-281(teeth,)]TJ/F34 10.9091 Tf 105.849 0 Td [(\035)]TJ/F16 10.9091 Tf 7.909 0 Td [(that)-281(it)-281(should)-281(exchange)-281(the)-281(milk)-281(tooth)]TJ -113.758 -13.55 Td [(for)-250(a)-250(good)-250(permanent)-250(one)-250(\0502295a-2301\051)]TJ/F16 15.7808 Tf 0 -64.635 Td [(Puberty:)-250(Girls)-250(\0502305-2352\051)]TJ/F16 10.9091 Tf 0 -32.921 Td [(Aside)-383(from)-384(the)]TJ/F34 10.9091 Tf 72.537 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(big)-383(times)]TJ/F34 10.9091 Tf 41.764 0 Td [(\035)]TJ/F16 10.9091 Tf 9.027 0 Td [(which)-383(will)-384(be)-383(described)-384(later,)-416(the)]TJ -128.172 -13.549 Td [(girls')-194(puberty)-193(dance)-194(was)-193(the)-194(most)-193(important)-194(ceremonial)-193(gathering)]TJ 0 -13.549 Td [(among)-236(the)-235(Washo.)-245(This)-236(custom)-236(has)-235(survived)-236(with)-235(tenacity)-236(and)-235(it)]TJ 0 -13.549 Td [(is)-316(still)-315(considered)-316(a)-315(matter)-316(of)-315(real)-316(concern)-315(if)-316(for)-315(some)-316(reason)-315(a)]TJ 0 -13.55 Td [(girl)-250(does)-250(not)-250(have)]TJ/F34 10.9091 Tf 80.597 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(her)-250(dance.)]TJ/F34 10.9091 Tf 44.826 0 Td [(\035)]TJ/F16 10.9091 Tf -118.31 -14.281 Td [(Although)-218(much)-218(of)-218(the)-217(activity)-218(at)-218(a)-218(girls')-218(dance)-218(is)-218(clearly)-218(social)]TJ -11.956 -13.55 Td [(throughout)-275(the)-275(occasion,)-281(there)-275(is)-275(a)-275(series)-275(of)-275(ritual)-275(actions)-275(which)]TJ 0 -13.549 Td [(must)-176(be)-177(carried)-176(out.)-225(The)-177(following)-176(account)-176(is)-177(an)-176(idealized)-176(version)]TJ 0 -13.549 Td [(of)-282(the)]TJ/F34 10.9091 Tf 28.565 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(old)-282(way.)]TJ/F34 10.9091 Tf 37.917 0 Td [(\035)]TJ/F16 10.9091 Tf 7.916 0 Td [(Other)-282(accounts)-281(will)-282(describe)-282(variations)-282(which)]TJ -79.242 -13.549 Td [(have)-250(developed)-250(in)-250(the)-250(past)-250(years.)]TJ 11.956 -14.282 Td [(Certain)-247(statements)-246(which)-247(I)-247(make)-247(will)-246(appear)-247(to)-247(be)-247(at)-246(variance)]TJ -11.956 -13.549 Td [(with)-354(Stewart's)-354(Culture)-354(Element)-354(Distribution)-354(Lists.)-562(However,)-380(I)]TJ 0 -13.549 Td [(am)-399(inclined)-400(to)-399(think)-400(that)-399(the)-399(absence)-400(of)-399(traits)-400(in)-399(the)-399(memory)]TJ 0 -13.549 Td [(of)-476(my)-477(own)-476(informants)-476(represents)-476(a)-477(pattern)-476(of)-476(change)-476(rather)]TJ 0 -13.55 Td [(than)-504(inaccuracies)-503(on)-504(the)-503(part)-504(of)-503(earlier)-504(investigators.)-1010(With)]TJ 0 -13.549 Td [(minor)-398(exceptions,)-435(differences)-398(between)-398(statements)-398(made)-397(today)]TJ 0 -13.549 Td [(and)-318(Stewart's)-317(lists)-318(take)-317(the)-318(form)-317(of)-317(traits)-318(marked)-317(present)-318(in)-317(the)]TJ 0 -13.549 Td [(lists)-467(which)-467(are)-467(unknown)-468(to)-467(my)-467(own)-467(informants.)-901(Moreover,)]TJ 0 -13.549 Td [(most)-379(of)-378(these)-379(differences)-378(are)-379(to)-378(be)-379(found)-378(in)-379(the)-378(hair-combing)]TJ 0 -13.55 Td [(and)-488(scratching)-489(complex)-488(and)-488(suggest)-488(that)-489(the)-488(taboos)-488(on)-488(hair)]TJ 0 -13.549 Td [(combing)-334(were)-334(abandoned)-335(some)-334(time)-334(between)-334(the)-334(childhood)-334(of)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
235 0 obj <<
/Type /Page
/Contents 236 0 R
/Resources 234 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 222 0 R
>> endobj
231 0 obj <<
/D [235 0 R /XYZ 46.771 409.021 null]
>> endobj
234 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
239 0 obj <<
/Length 4325      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(42)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(his)-292(informants,)-301(who)-292(were)-291(in)-292(their)-292(seventies)-291(in)-292(1936,)-301(and)-292(that)-291(of)]TJ 0 -13.549 Td [(my)-250(own)-250(informants,)-250(who)-250(are)-250(in)-250(their)-250(seventies)-250(today)-250(\0501959\051.)]TJ 11.956 -14.745 Td [(The)-564(parents)-564(of)-564(my)-564(informants)-564(must)-564(not)-564(have)-564(known)-563(or)]TJ -11.956 -13.549 Td [(not)-468(enforced)-468(combing)-468(taboos,)-522(while)-468(the)-468(parents)-468(of)-468(Stewart's)]TJ 0 -13.549 Td [(informants)-292(must)-293(have)-292(considered)-293(them)-292(proper)-293(and)-292(so)-292(instructed)]TJ 0 -13.549 Td [(their)-267(children.)-301(We)-267(can)-267(speculate,)-271(on)-267(this)-267(basis,)-271(that)-267(the)-267(taboo)-266(on)]TJ 0 -13.549 Td [(hair)-235(combing)-236(and)-235(scratching)-236(was)-235(abandoned)-235(by)-236(the)-235(Washo)-235(some)]TJ 0 -13.55 Td [(time)-253(in)-252(the)-253(first)-252(half)-253(of)-252(the)-253(century.)-257(Whether)-253(this)-252(can)-253(be)-252(credited)]TJ 0 -13.549 Td [(to)-338(the)-339(influence)-338(of)-339(the)-338(white)-339(man)-338(or)-339(to)-338(a)-339(continuing)-338(pattern)-338(of)]TJ 0 -13.549 Td [(change)-250(is)-250(a)-250(matter)-250(for)-250(further)-250(investigation.)]TJ 11.956 -14.745 Td [(The)-237(account)-237(of)-237(the)-237(entire)-237(puberty)-237(complex)-237(which)-237(follows)-237(was)]TJ -11.956 -13.549 Td [(given)-371(to)-371(me)-372(by)-371(a)-371(seventy-five-year-old)-371(Washo)-371(woman)-371(who)-371(is)]TJ 0 -13.549 Td [(generally)-376(consulted)-375(whenever)-376(a)-376(family)-376(plans)-375(to)-376(hold)-376(the)-375(girls')]TJ 0 -13.549 Td [(dance.)]TJ/F34 9.8629 Tf 19.637 -28.617 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(When)-276(a)-275(girl)-276(is)-276(about)-276(ten)-275(she)-276(is)-276(told)-275(what)-276(is)-276(going)-275(to)-276(happen)]TJ -4.379 -12.822 Td [(to)-426(her.)-779(When)-426(her)-426(first)-426(period)-426(comes)-427([she)-426(is)-426(not)-426(specially)]TJ 0 -12.822 Td [(confined])-263(people)-263(tell)-264(her)-263(to)-263(be)-526(active)-264(and)-263(not)-263(to)-263(be)-264(lazy.)-289(She)]TJ/F16 7.9701 Tf -92.392 0 Td [([376])]TJ/F16 9.8629 Tf 92.392 -12.822 Td [(drinks)-370(only)-371(warm)-371(water.)-611(In)-371(the)-370(old)-371(days)-370(anything)-371(that)-370(she)]TJ 0 -12.822 Td [(gathered)-257(anyone)-256(could)-257(come)-257(along)-257(and)-256(take.)-271(She)-256(couldn't)-257(eat)]TJ 0 -12.821 Td [(meat)-203(or)-203(salt)-203(but)-202(Washo)-203(don't)-203(think)-203(eggs)-203(are)-203(the)-202(same)-203(as)-203(meat.)]TJ/F34 9.8629 Tf 236.978 0 Td [(\035)]TJ/F16 10.9091 Tf -244.659 -29.345 Td [(\050This)-354(last)-354(statement)-354(was)-354(in)-354(response)-354(to)-354(direct)-354(questions)-354(and)]TJ -11.956 -13.549 Td [(does)-270(not)-269(reflect)-270(special)-269(Washo)-270(traits.)-308(In)-270(fact,)-274(all)-269(food)-270(appears)-269(to)]TJ 0 -13.549 Td [(have)-250(been)-250(forbidden)-250(for)-250(four)-250(days.\051)]TJ 11.956 -14.745 Td [(The)-291(family)-291(of)-291(the)-291(girl)-291(immediately)-291(prepares)-291(as)-291(much)-291(food)-291(as)]TJ -11.956 -13.549 Td [(possible)-407(to)-407(feed)-407(the)-407(guests.)-721(One)-407(informant)-407(remembers)-407(in)-407(his)]TJ 0 -13.549 Td [(youth)-347(that)-346(a)-347(family)-346(of)-347(a)-346(girl)-347(eligible)-347(for)-346(a)-347(dance)-346(would)-347(light)-346(a)]TJ 0 -13.549 Td [(large)-250(fire)-250(part)-250(way)-250(up)-250(on)-250(Job's)-250(Peak)-250(to)-250(announce)-250(the)-250(event.)]TJ 11.956 -14.745 Td [(The)-388(dance)-389(itself)-388(is)-388(carried)-388(out)-389(at)-388(night.)-665(Singing)-388(and)-388(hand-)]TJ -11.956 -13.549 Td [(clapping)-398(accompany)-397(the)-398(dancing,)-435(which)-398(may)-397(go)-398(on)-398(all)-397(night.)]TJ 0 -13.549 Td [(During)-288(the)-288(dance)-287(the)-288(girl)-288(carries)-288(a)-288(wand)-287(about)-288(six)-288(or)-288(seven)-287(feet)]TJ 0 -13.55 Td [(long.)-390(The)-297(wand)-296(is)-297(made)-297(of)-296(a)-297(very)-297(light)-296(wood,)-309(often)-296(elderberry,)]TJ 0 -13.549 Td [(and)-250(painted)-250(red)-250(with)-250(a)-250(native)-250(pigment.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
238 0 obj <<
/Type /Page
/Contents 239 0 R
/Resources 237 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 222 0 R
>> endobj
240 0 obj <<
/D [238 0 R /XYZ 235.029 285.384 null]
>> endobj
237 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
243 0 obj <<
/Length 4815      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Puberty:)-250(Girls)-250(\0502305-2352\051)-13836(43)]TJ
0 g 0 G
 11.956 -30.759 Td [(In)-391(the)-390(past,)-426(groups)-391(camped)-390(about)-391(Dresslerville)-391(staged)-390(their)]TJ -11.956 -13.549 Td [(dances)-184(at)-185(the)-184(base)-185(of)-184(a)-184(prominent)-185(hill)-184(nearby.)-228(During)-185(the)-184(night)-184(the)]TJ 0 -13.549 Td [(girl)-262(was)-263(required)-262(to)-262(run)-262(to)-263(the)-262(top)-262(of)-262(the)-262(hill)-263(and)-262(light)-262(four)-262(fires;)]TJ 0 -13.549 Td [(this)-413(practice)-412(has)-413(been)-412(discontinued)-413(for)-413(many)-412(years,)-453(however,)]TJ 0 -13.55 Td [(apparently)-201(as)-201(a)-200(result)-201(of)-201(white)-200(accusations)-201(that)-201(the)-201(Indians)-200(started)]TJ 0 -13.549 Td [(range)-250(fires)-250(and)-250(also)-250(to)-250(avoid)-250(attracting)-250(curious)-250(whites.)]TJ 11.956 -14.367 Td [(About)-329(dawn)-328(one)-329(of)-329(the)-329(girl's)-328(male)-329(relatives)-329(ran)-329(forward)-328(and)]TJ -11.956 -13.55 Td [(snatched)-246(the)-246(stick)-246(from)-246(her.)-248(He)-246(then)-246(ran)-246(with)-246(it)-246(into)-246(the)-246(hills)-245(and)]TJ 0 -13.549 Td [(hid)-250(it)-250(in)-250(an)-250(upright)-250(position)-250(in)-250(some)-250(out-of-the-way)-250(place.)]TJ 11.956 -14.367 Td [(The)-484(elderberry)-484(wand)-485(is)-484(a)-484(device)-484(used)-485(to)-484(insure)-484(the)-484(girl's)]TJ -11.956 -13.549 Td [(continued)-364(agility)-363(and)-364(lightness)-364(of)-364(foot.)-591(As)-363(long)-364(as)-364(the)-363(hidden)]TJ 0 -13.55 Td [(stick)-250(remains)-250(unbroken)-250(the)-250(girl)-250(will)-250(remain)-250(straight)-250(and)-250(agile.)]TJ 11.956 -14.367 Td [(After)-216(the)-216(stick)-217(was)-216(taken)-216(away,)-223(an)-216(older)-217(female)-216(relative)-216(took)-216(a)]TJ -11.956 -13.549 Td [(small)-237(amount)-238(of)-237(ash)-238(on)-237(a)-237(whisk)-238(of)-237(sage,)-240(and)-237(dusted)-238(the)-237(nude)-237(girl)]TJ 0 -13.549 Td [(on)-283(the)-284(head,)-292(arms,)-292(and)-283(legs.)-350(This)-284(ritual)-283(was)-284(accompanied)-283(by)-283(an)]TJ 0 -13.55 Td [(informal)-222(prayer)-222(that)-222(the)-222(girl)-222(not)-222(suffer)-222(pains)-222(in)-221(her)-222(head,)-228(arms,)-227(or)]TJ 0 -13.549 Td [(legs.)-292(She)-264(was)-264(told:)]TJ/F34 10.9091 Tf 85.622 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(I)-264(am)-264(doing)-264(this)-264(early)-264(in)-265(the)-264(morning)-264(so)-264(that)]TJ -90.465 -13.549 Td [(you)-262(will)-262(get)-262(up)-262(early)-262(in)-262(the)-262(morning)-262(and)-262(work)-262(hard.)]TJ/F34 10.9091 Tf 227.044 0 Td [(\035)]TJ/F16 10.9091 Tf 7.702 0 Td [(The)-262(whisk)]TJ -234.746 -13.549 Td [(was)-301(then)-301(thrown)-302(into)-301(the)-301(crowd,)-314(along)-301(with)-301(a)-301(gift,)-314(which)-301(today)]TJ 0 -13.549 Td [(is)-243(usually)-243(a)-244(bit)-243(of)-243(money.)-248(Food)-243(or)-243(beads)-243(were)-243(apparently)-243(used)-243(in)]TJ 0 -13.55 Td [(the)-250(past.)]TJ 11.956 -14.367 Td [(After)-343(the)-342(dusting,)-366(a)-343(basketful)-342(of)-343(water)-342(was)-343(brought)-342(forward)]TJ -11.956 -13.549 Td [(and)-362(the)-361(girl)-362(was)-361(bathed.)-585(The)-362(basket)-361(was)-362(then)-361(thrown)-362(into)-361(the)]TJ 0 -13.549 Td [(crowd.)-238(This)-212(was)-212(considered)-213(a)-212(high)-213(point)-212(of)-213(the)-212(celebration.)-237(After)]TJ 0 -13.55 Td [(she)-230(was)-229(bathed,)-234(a)-230(few)-229(dabs)-230(of)-229(native)-230(pigment)-230(were)-229(placed)-230(on)-229(her)]TJ 0 -13.549 Td [(chest)-250(and)-250(face.)]TJ 11.956 -14.367 Td [(The)-305(ceremony)-305(above)-306(was)-305(described)-305(as)-305(the)]TJ/F34 10.9091 Tf 190.522 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(real)-305(way)-305(to)-306(do)-305(it)]TJ -207.322 -13.549 Td [(...)-250(the)-250(way)-250(they)-250(did)-250(it)-250(in)-250(the)-250(old)-250(days.)]TJ/F34 10.9091 Tf 161.509 0 Td [(\035)]TJ/F16 10.9091 Tf -149.553 -14.368 Td [(The)-378(Carson)-378(Valley)-378(Record)-378(Courier)-378(reports)-378(a)-378(puberty)-377(dance)]TJ -11.956 -13.549 Td [(held)-431(in)-431(the)-431(summer)-431(of)-431(1919)-431(in)-431(which)-431(at)-431(least)-431(some)-431(of)-430(these)]TJ 0 -13.549 Td [(activities)-348(were)-348(observed)-349(\050although)-348(the)-348(reporter)-348(thought)-348(he)-348(was)]TJ 0 -13.549 Td [(attending)-286(a)-285(betrothal)-286(dance\051)-286(Some)-285(two-hundred)-286(Indians)-286(were)-285(in)]TJ 0 -13.55 Td [(attendance.)-218(There)-155(were)-154(no)-154(fires,)-174(only)-154(lanterns)-155(and)-154(flashlights.)-218(The)]TJ 0 -13.549 Td [(participants)-199(had)-199(taken)-199(up)-199(a)-199(collection)-199(and)-199(purchased)-198(watermelon,)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
242 0 obj <<
/Type /Page
/Contents 243 0 R
/Resources 241 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 222 0 R
>> endobj
241 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
246 0 obj <<
/Length 4696      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(44)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(ice)-248(cream,)-249(cake,)-249(pie,)-249(bread,)-248(and)-249(meat)-248(for)-249(the)-248(feast.)-250(The)-248(food)-248(was)]TJ 0 -13.549 Td [(served)-211(\050to)-212(the)-211(surprise)-211(of)-211(the)-212(reporter\051)-211(on)-211(a)-212(long)-211(table)-211(with)-211(plates.)]TJ 0 -13.549 Td [(About)-306(midnight)-306(two)-306(girls)-307(appeared)-306(in)-306(the)-306(center)-306(of)-306(the)-306(dancing)]TJ 0 -13.549 Td [(circle)-250(carrying)-250(long)-250(wands.)]TJ 11.956 -14.777 Td [(In)-476(1926)-477(Lowie)-476(witnessed)-476(a)-476(girls')-477(dance)-476(near)-476(Minden)-476(and)]TJ -11.956 -13.549 Td [(was)-424(obviously)-423(unimpressed.)-770(The)-424(crowd)-423(gathered)-424(slowly)-423(and)]TJ 0 -13.549 Td [(gradually)-364(began)-364(to)-364(dance.)-592(He)-364(makes)-364(no)-364(mention)-364(of)-364(either)-364(the)]TJ 0 -13.55 Td [(wand)-262(or)-262(the)-261(ash-dusting)-262(ritual,)-265(nor)-262(does)-262(he)-261(give)-262(us)-262(details)-262(of)-261(the)]TJ 0 -13.549 Td [(feast.)-312(The)-270(bath)-271(was)-270(given)-271(from)-270(a)-271(tin)-271(can,)-275(and)-271(he)-270(does)-271(not)-270(report)]TJ 0 -13.549 Td [(a)-250(basket's)-250(being)-250(thrown)-250(\050Lowie)-250(1939,)-250(pp.)-250(305-308\051.)]TJ 11.956 -14.777 Td [(One)-517(suspects)-516(that)-517(dances)-517(held)-516(today)-517(are)-517(somewhat)-516(more)]TJ -11.956 -13.549 Td [(elaborate)-384(than)-383(those)-384(of)-383(three)-384(or)-384(four)-383(decades)-384(ago,)-417(possibly)-383(as)]TJ 0 -13.549 Td [(a)-495(response)-496(to)-495(increasing)-495(awareness)-496(and)-495(pride)-495(in)-496(the)-495(fact)-495(of)]TJ 0 -13.549 Td [(Indianness.)-422(Certainly)-308(every)-307(girl)-308(expects)-307(to)-308(have)-307(her)-308(dance,)-321(just)]TJ 0 -13.549 Td [(as)-290(a)-290(debutante)-290(expects)-290(to)-290(have)-290(a)-290(coming-out)-290(party.)-370(When)-290(death)]TJ 0 -13.55 Td [(in)-269(the)-268(family)-269(made)-268(it)-269(inadvisable)-268(to)-269(hold)-269(a)-268(dance)-269(on)-268(a)-269(girl's)-268(first)]TJ 0 -13.549 Td [(menstrual)-344(period,)-368(everyone)-344(agreed)-343(that)-344(it)-344(was)-344(indeed)-344(a)-344(shame.)]TJ 0 -13.549 Td [(The)-354(girl)-354(went)-355(through)-354(her)-354(four-day)-354(fast)-355(and)-354(a)-354(small)-354(party)-354(was)]TJ 0 -13.549 Td [(held)-357(for)-357(her)-357(when)-357(her)-357(second)-357(period)-357(occurred.)-571(One)-356(informant)]TJ 0 -13.549 Td [(insisted)-343(that)-343(in)-343(the)]TJ/F34 10.9091 Tf 86.493 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(old)-343(days)]TJ/F34 10.9091 Tf 37.682 0 Td [(\035)]TJ/F16 10.9091 Tf 8.586 0 Td [(a)-343(dance)-343(was)-343(always)-343(held)-344(on)-343(the)]TJ -137.604 -13.55 Td [(occasion)-378(of)-378(a)-378(girl's)-378(second)-378(period)-378(but)-378(that)-378(this)-378(had)-378(long)-378(since)]TJ 0 -13.549 Td [(been)-250(abandoned)-250(\050Cartwright,)-250(1952,)-250(confirms\051.)]TJ 11.956 -14.776 Td [(The)-408(basket)-407(plays)-408(an)-408(important)-407(part)-408(in)-408(the)-407(ceremony)-408(and)-407(it)]TJ -11.956 -13.55 Td [(would)-445(be)-446(considered)-445(improper)-445(if)-445(there)-445(were)-446(no)-445(basket)-445(to)-445(be)]TJ 0 -13.549 Td [(thrown)-358(to)-358(the)-357(crowd.)-574(It)-357(is)-358(best)-358(if)-358(the)-357(basket)-358(is)-358(well)-358(made)-357(and)]TJ 0 -13.549 Td [(can)-378(actually)-378(hold)-378(the)-378(ceremonial)-378(bath)-378(water.)-634(If)-378(such)-378(a)-378(basket)]TJ 0 -13.549 Td [(cannot)-194(be)-195(obtained,)-205(and)-194(they)-195(are)-194(growing)-194(rarer)-195(as)-194(the)-194(older)-194(basket)]TJ 0 -13.549 Td [(makers)-348(die,)-373(the)-349(bath)-348(is)-348(poured)-349(from)-348(a)-348(bucket,)-373(but)-349(a)-348(less)-348(fancy)]TJ 0 -13.549 Td [(basket)-387(is)-387(still)-387(thrown)-387(to)-388(the)-387(crowd.)-661(The)-387(bath)-387(and)-387(dusting)-387(are)]TJ 0 -13.55 Td [(now)-237(given)-238(to)-237(the)-238(girl)-237(while)-238(clad)-237(in)-238(her)-237(slip,)-240(in)-238(deference)-237(to)-237(white)]TJ 0 -13.549 Td [(notions)-362(of)-361(modesty)-362(which)-362(are)-362(strictly)-361(observed)-362(by)-362(the)-361(Washo.)]TJ 0 -13.549 Td [(The)-353(painting)-354(is)-353(carried)-353(out)-353(only)-353(if)-354(native)-353(pigment)-353(is)-353(available.)]TJ 0 -13.549 Td [(The)-250(wand)-250(is)-250(left)-250(unpainted)-250(unless)-250(native)-250(pigments)-250(are)-250(available.)]TJ 11.956 -14.777 Td [(The)-519(ritual)-518(of)-519(seizing)-519(and)-519(hiding)-518(the)-519(wand)-519(is)-519(carried)-518(out)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
245 0 obj <<
/Type /Page
/Contents 246 0 R
/Resources 244 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 222 0 R
>> endobj
244 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
247 0 obj
<< /S /GoTo /D (index19) >>
endobj
250 0 obj
(Puberty: Boys (2379-2386, 369-374))
endobj
253 0 obj <<
/Length 3787      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Puberty:)-250(Boys)-250(\0502379-2386,)-250(369-374\051)-9947(45)]TJ
0 g 0 G
 0 -30.759 Td [(perfunctorily.)-688(During)-396(a)-396(recent)-396(dance)-396(the)-396(girl's)-396(uncle)-396(took)-395(the)]TJ 0 -13.549 Td [(wand)-243(but)-242(simply)-243(carried)-243(it)-242(to)-243(the)-243(grandmother's)-242(house,)-244(intending)]TJ 0 -13.549 Td [(to)-355(take)-355(it)-354(to)-355(the)-355(mountains)-355(later.)-564(However,)-381(the)-355(stick)-354(remained)]TJ 0 -13.549 Td [(with)-359(the)-358(grandmother,)-386(who)-358(was)-359(somewhat)-358(concerned)-359(about)-358(it.)]TJ 0 -13.55 Td [(It)-307(was)-308(kept)-307(in)-307(an)-308(upright)-307(position,)-322(and)-307(she)-307(constantly)-307(reminded)]TJ 0 -13.549 Td [(the)-366(man)-366(that)-365(he)-366(should)-366(take)-366(it.)-597(He)-366(regularly)-366(promised)-366(that)-365(he)]TJ 0 -13.549 Td [(would,)-239(the)-236(next)-236(time)-236(he)-236(came)-236(to)-236(visit,)-239(but)-236(just)-235(as)-236(regularly)-236(forgot)]TJ 0 -13.549 Td [(it.)-290(It)-263(may)-264(well)-263(be)-264(that)-263(as)-263(an)-264(adult)-263(and)-263(an)-264(important)-263(peyote)-263(chief,)]TJ 0 -13.549 Td [(he)-329(was)-329(reluctant)-329(to)-329(carry)-329(out)-329(what)-329(he)-329(considered)-329(an)-329(old)-329(Indian)]TJ 0 -13.55 Td [(superstition.)]TJ 11.956 -13.549 Td [(There)-417(is)-418(no)-417(indication)-417(now)-418(that)-417(the)-417(girls')-418(puberty)-417(dance)-417(is)]TJ -11.956 -13.549 Td [(dying)-332(out)-331(among)-332(the)-331(Washo.)-495(It)-332(may)-331(well)-332(be)-331(changing)-332(in)-331(form)]TJ 0 -13.549 Td [(and)-298(developing)-297(into)-298(more)-297(of)-298(a)-297(party.)-392(As)-298(the)-297(number)-298(of)-297(persons)]TJ 0 -13.549 Td [(who)-457(know)-456(white)-456(dances)-457(increases,)-508(these)-457(may)-456(replace)-456(Indian)]TJ 0 -13.55 Td [(dances.)-676(There)-392(is)-392(some)-392(suggestion)-392(of)-392(this)-392(in)-392(other)-391(ceremonial)]TJ 0 -13.549 Td [(activities.)-228(And)-182(of)-182(course)-183(the)-182(fact)-183(that)-182(future)-183(generations)-182(of)-182(Washo)]TJ 0 -13.549 Td [(girls)-292(will)-293(attend)-292(integrated)-293(Nevada)-292(public)-293(schools)-292(and)-292(associate)]TJ 0 -13.549 Td [(with)-398(white)-397(students)-398(with)-398(different)-397(aspirations)-398(for)-397(approaching)]TJ 0 -13.549 Td [(adulthood)-294(may)-294(have)-293(important)-294(effects)-294(on)-293(the)-294(future)-294(of)-294(the)-293(girls')]TJ 0 -13.55 Td [(dance.)]TJ 11.956 -13.549 Td [(Pine-nut)-280(flour)-280(seems)-280(to)-280(have)-280(taken)-280(on)-280(an)-280(important)-280(symboli)1(c)]TJ -11.956 -13.549 Td [(role)-229(in)-228(latter-day)-229(dances.)-242(We)-229(see)-228(no)-229(mention)-228(of)-229(this)-228(food)-229(in)-228(1919)]TJ 0 -13.549 Td [(or)-259(1926.)-277(Today)-259(it)-259(might)-259(be)-259(considered)-259(proper)-259(to)-259(delay)-259(holding)-258(a)]TJ 0 -13.549 Td [(dance)-283(if)-283(it)-283(was)-283(not)-282(possible)-283(to)-283(get)-283(enough)-283(pine-nut)-283(flour)-283(to)-282(feed)]TJ 0 -13.55 Td [(the)-250(crowd.)]TJ/F16 15.7808 Tf 0 -57.311 Td [(Puberty:)-250(Boys)-250(\0502379-2386,)-250(369-374\051)]TJ/F16 10.9091 Tf 0 -28.893 Td [(The)-538(approaching)-538(maturity)-538(of)-537(a)-538(boy)-538(cannot)-538(be)-538(measured)-537(in)]TJ 0 -13.549 Td [(dramatic)-233(physiological)-233(terms,)-236(and)-233(puberty)-233(is)-233(considered)-233(to)-233(occur)]TJ 0 -13.55 Td [(about)-331(when)-331(a)-331(boy's)-332(voice)-331(changes.)-987(The)-331(ritual)-331(for)-331(boys)-331(is)-331(less)]TJ/F16 7.9701 Tf 291.024 0 Td [([377])]TJ/F16 10.9091 Tf -291.024 -13.549 Td [(important)-250(than)-250(that)-250(for)-250(girls.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
252 0 obj <<
/Type /Page
/Contents 253 0 R
/Resources 251 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 255 0 R
>> endobj
248 0 obj <<
/D [252 0 R /XYZ 46.771 171.4 null]
>> endobj
254 0 obj <<
/D [252 0 R /XYZ 206.995 79.691 null]
>> endobj
251 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
258 0 obj <<
/Length 4364      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(46)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 11.956 -30.759 Td [(The)-194(emphasis)-194(for)-193(a)-194(boy)-194(is)-194(on)-194(his)-193(developing)-194(ability)-194(as)-194(a)-193(hunter.)]TJ -11.956 -13.549 Td [(Although)-378(hunting)-378(is)-378(far)-379(less)-378(important)-378(today)-378(than)-378(it)-378(was)-378(even)]TJ 0 -13.549 Td [(in)-416(the)-416(recent)-416(past,)-457(few)-416(Washo)-416(go)-416(through)-416(the)-416(winter)-415(without)]TJ 0 -13.549 Td [(depending)-237(on)-238(rabbit)-237(or)-237(deer)-237(for)-238(meat.)-245(The)-238(pursuit)-237(of)-237(the)-237(squirrel,)]TJ 0 -13.55 Td [(ground)-429(squirrel,)-474(gopher,)-474(and)-429(other)-429(small)-429(game)-429(appears)-429(to)-429(be)]TJ 0 -13.549 Td [(minimal,)-259(but)-257(certainly)-257(this)-257(food)-257(is)-257(not)-257(spurned,)-258(if)-257(available.)-271(One)]TJ 0 -13.549 Td [(of)-362(the)-361(common)-362(legal)-361(conflicts)-362(with)-361(the)-362(white)-361(man)-362(stems)-361(from)]TJ 0 -13.549 Td [(out-of-season)-362(hunting)-361(during)-362(the)-362(winter)-361(by)-362(Washo)-362(men)-361(filling)]TJ 0 -13.549 Td [(out)-250(the)-250(family)-250(larder.)]TJ 11.956 -14.532 Td [(Young)-404(boys)-403(were)-404(encouraged)-404(to)-404(hunt)-403(with)-404(bow)-404(and)-403(arrow)]TJ -11.956 -13.549 Td [(as)-410(soon)-411(as)-410(they)-410(could.)-731(Quite)-410(often)-411(such)-410(training)-410(was)-410(carried)]TJ 0 -13.549 Td [(out)-398(by)-398(an)-398(older)-398(male)-398(relative)]TJ/F34 10.9091 Tf 133.203 0 Td [(\024)]TJ/F16 10.9091 Tf 10.909 0 Td [(a)-398(grandfather)-398(or)-398(an)-398(old)-398(uncle.)]TJ -144.112 -13.549 Td [(Expeditions)-445(of)-445(old)-445(men)-445(and)-445(young)-445(boys)-445(after)-445(chipmunk)-444(and)]TJ 0 -13.549 Td [(squirrel)-302(appear)-301(to)-302(have)-301(been)-302(common,)-314(freeing)-302(able-bodied)-301(men)]TJ 0 -13.549 Td [(for)-216(major)-216(hunting)-216(while)-216(the)-216(experienced,)-223(but)-216(less)-216(able,)-222(older)-216(men)]TJ 0 -13.55 Td [(instructed)-250(the)-250(boys.)]TJ 11.956 -14.531 Td [(However,)-555(all)-494(the)-494(game)-493(taken)-494(by)-494(a)-494(boy)-494(was)-494(taboo)-494(to)-493(his)]TJ -11.956 -13.549 Td [(immediate)-398(family.)-693(This)-398(included)-397(young)-398(deer)-398(and)-398(does)-397(which)]TJ 0 -13.549 Td [(he)-323(might)-323(kill.)-468(Such)-323(game)-323(was)-323(given)-323(to)-323(another)-322(family,)-341(usually)]TJ 0 -13.549 Td [(related.)-568(The)-356(boy)-356(was)-356(also)-356(forbidden)-356(to)-356(eat)-356(his)-356(own)-356(take.)-568(The)]TJ 0 -13.55 Td [(taboo)-250(included)-250(any)-250(fish)-250(the)-250(boy)-250(caught.)]TJ 11.956 -14.531 Td [(When)-386(a)-386(boy)-386(killed)-386(a)-386(buck)-386(deer)-386(considered)-386(by)-386(his)-386(father)-385(or)]TJ -11.956 -13.549 Td [(other)-310(male)-310(relative)-309(to)-310(be)-310(big)-310(enough,)-324(he)-310(went)-310(through)-310(a)-309(simple)]TJ 0 -13.549 Td [(ceremony.)-585(One)-361(informant)-362(said)-361(that)-362(in)-362(the)-361(old)-362(days)-361(a)-362(boy)-361(was)]TJ 0 -13.549 Td [(required)-430(to)-430(crawl)-430(under)-430(the)-430(antlers)-430(of)-430(his)-430(kill.)-790(His)-430(father)-430(or)]TJ 0 -13.549 Td [(older)-294(male)-293(relative)-294(then)-294(gave)-293(him)-294(a)-293(bath,)-305(and)-294(from)-293(that)-294(time)-293(he)]TJ 0 -13.55 Td [(was)-306(considered)-306(a)-306(man)-306(and)-306(the)-306(taboo)-306(on)-306(his)-306(kill)-306(was)-306(lifted)-306(from)]TJ 0 -13.549 Td [(himself)-250(and)-250(his)-250(family.)]TJ 11.956 -14.531 Td [(My)-342(informant,)-365(a)-342(mother)-342(of)-342(four)-342(sons)-342(now)-342(over)-342(forty,)-365(stat)1(ed)]TJ -11.956 -13.549 Td [(that)-390(all)-389(her)-390(sons)-389(had)-389(gone)-390(through)-389(the)-390(taboo)-389(period)-390(and)-389(were)]TJ 0 -13.549 Td [(bathed)-250(by)-251(their)-250(father)-251(when)-250(they)-251(killed)-250(their)-250(first)-251(big)-250(buck.)-251(Until)]TJ 0 -13.55 Td [(very)-190(recently)-190(she)-189(received)-190(meat)-190(from)-189(some)-190(relatives)-190(with)-190(a)-189(young)]TJ 0 -13.549 Td [(son)-250(who)-250(hunted)-250(frequently.)]TJ 11.956 -14.531 Td [(Whether)-496(or)-496(not)-496(the)-496(young)-496(Washo)-496(are)-496(still)-496(observing)-496(this)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
257 0 obj <<
/Type /Page
/Contents 258 0 R
/Resources 256 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 255 0 R
>> endobj
256 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
259 0 obj
<< /S /GoTo /D (index20) >>
endobj
262 0 obj
(Marriage (2018-2051))
endobj
263 0 obj
<< /S /GoTo /D (index21) >>
endobj
266 0 obj
(Death (2389-2453))
endobj
269 0 obj <<
/Length 3417      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Marriage)-250(\0502018-2051\051)-15810(47)]TJ
0 g 0 G
 0 -30.759 Td [(taboo)-287(and)-287(ritual)-287(I)-287(was)-287(unable)-287(to)-287(determine.)-360(However,)-297(in)-286(certain)]TJ 0 -13.549 Td [(conservative)-445(families)-445(it)-445(seems)-445(probable)-445(that)-445(at)-445(least)-445(minimal)]TJ 0 -13.549 Td [(ritual)-250(is)-250(observed.)]TJ/F16 15.7808 Tf 0 -60.044 Td [(Marriage)-250(\0502018-2051\051)]TJ/F16 10.9091 Tf 0 -30.37 Td [(Marriage)-194(is)-193(entirely)-194(a)-194(social)-193(institution,)-205(and)-194(no)-194(religious)-193(elements)]TJ 0 -13.549 Td [(appear)-178(to)-178(have)-178(entered)-178(into)-178(it.)-225(Traditionally)-178(the)-178(ceremony,)-193(if)-177(there)]TJ 0 -13.549 Td [(was)-308(any)-308(at)-307(all,)-323(consisted)-307(of)-308(a)]TJ/F34 10.9091 Tf 132.426 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(chief)]TJ/F34 10.9091 Tf 21.807 0 Td [(\035)]TJ/F16 10.9091 Tf 8.201 0 Td [(\050respected)-308(man\051)-308(throwing)]TJ -167.278 -13.549 Td [(a)-281(blanket)-280(over)-281(the)-280(shoulders)-281(of)-280(a)-281(couple)-281(at)-280(a)-281(dance.)-341(Ceremonial)]TJ 0 -13.549 Td [(gatherings,)-216(such)-207(as)-207(the)-207(pine-nut)-207(dances)-207(and)-207(the)-207(girl)1(s')-207(dances)-207(were)]TJ 0 -13.55 Td [(important)-207(in)-206(the)-207(selection)-206(of)-207(marriage)-206(partners,)-215(inasmuch)-207(as)-206(boys)]TJ 0 -13.549 Td [(and)-203(girls)-204(came)-203(together)-204(at)-203(these)-204(gatherings)-203(to)-204(engage)-203(in)-203(flirtation,)]TJ 0 -13.549 Td [(affairs,)-310(and)-298(courtship.)-393(Dreamers)-298(at)-297(the)]TJ/F34 10.9091 Tf 173.947 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(big)-298(times)]TJ/F34 10.9091 Tf 40.83 0 Td [(\035)]TJ/F16 10.9091 Tf 8.092 0 Td [(are)-298(reported)]TJ -227.712 -13.549 Td [(by)-356(informants)-356(to)-356(have)-357(exhorted)-356(married)-356(couples)-356(to)-356(be)-356(good)-356(to)]TJ 0 -13.549 Td [(each)-250(other)-250(and)-250(not)-250(fight)-250(\050see)-250(also)-250(Lowie)-250(1939,)-250(p.)-250(303\051.)]TJ/F16 15.7808 Tf 0 -60.044 Td [(Death)-250(\0502389-2453\051)]TJ/F16 10.9091 Tf 0 -30.37 Td [(No)-439(amount)-439(of)-438(social)-439(dislocation)-439(or)-439(cultural)-439(impact)-439(alters)-438(the)]TJ 0 -13.549 Td [(constant)-334(fact)-334(of)-334(death.)-502(Each)-334(generation)-334(faces)-334(this)-334(inevitability.)]TJ 0 -13.549 Td [(It)-517(is)-517(less)-517(than)-517(surprising)-517(then)-517(that)-517(changes)-517(in)-517(attitudes)-517(and)]TJ 0 -13.549 Td [(rituals)-313(surrounding)-314(death)-313(among)-314(the)-313(Washo)-314(have)-313(changed)-313(very)]TJ 0 -13.55 Td [(slowly.)-616(The)-371(only)-372(changes)-372(which)-372(appear)-372(to)-372(have)-372(developed)-371(in)]TJ 0 -13.549 Td [(Washo)-334(death)-334(customs)-334(are)-334(those)-334(imposed)-334(by)-334(direct)-334(intervention)]TJ 0 -13.549 Td [(of)-212(the)-212(whites)-212(or)-212(as)-212(unavoidable)-212(consequences)-212(of)-211(changes)-212(in)-212(other)]TJ 0 -13.549 Td [(aspects)-250(of)-250(the)-250(culture.)]TJ 11.955 -13.772 Td [(In)-250(the)-249(past,)-250(when)-249(a)-250(person)-249(died)-250(the)-249(house)-250(in)-249(which)-250(he)-250(expi)1(red)]TJ -11.955 -13.549 Td [(was)-323(abandoned)-323(by)-324(his)-323(family.)-470(Of)-323(course,)-342(if)-323(the)-323(death)-323(occurred)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
268 0 obj <<
/Type /Page
/Contents 269 0 R
/Resources 267 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 255 0 R
>> endobj
260 0 obj <<
/D [268 0 R /XYZ 46.771 468.227 null]
>> endobj
264 0 obj <<
/D [268 0 R /XYZ 46.771 253.635 null]
>> endobj
267 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
272 0 obj <<
/Length 4931      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(48)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(in)-312(the)-312(spring)-312(or)-311(summer)-312(such)-312(abandonment)-312(was)-312(simple;)-342(during)]TJ 0 -13.549 Td [(these)-306(seasons)-306(the)-306(Washo)-306(usually)-306(lived)-306(in)-306(simple)-306(brush)-306(shelters.)]TJ 0 -13.549 Td [(A)-393(winter)-393(death)-393(was)-393(a)-393(more)-393(serious)-393(matter;)-464(it)-393(was)-393(during)-393(this)]TJ 0 -13.549 Td [(season)-321(that)-322(the)-321(Washo)-321(lived)-321(in)-322(the)-321(gal'sda)]TJ/F40 10.9091 Tf 187.079 0 Td [(r)]TJ/F16 10.9091 Tf 5.956 0 Td [(l)]TJ/F34 10.9091 Tf 3.033 0 Td [(\024)]TJ/F16 10.9091 Tf 10.909 0 Td [(a)-321(structure)-322(made)]TJ -206.977 -13.55 Td [(to)-280(last)-280(through)-280(the)-279(winter)-280(and)-280(until)-280(the)-280(next)-280(wi)1(nter,)-288(when)-280(it)-279(was)]TJ 0 -13.549 Td [(reoccupied.)-661(Valley)-387(Washo)-387(often)-387(made)-387(these)-387(winter)-387(homes)-386(of)]TJ 0 -13.549 Td [(brush)-377(or)-378(tules.)-632(In)-377(the)-377(foothills)-377(and)-378(mountains,)-409(bark)-377(slabs)-377(and)]TJ 0 -13.549 Td [(tree)-373(limbs)-373(were)-373(utilized.)-618(If)-373(an)-373(occupant)-373(died,)-404(this)-373(home)-372(must)]TJ 0 -13.549 Td [(be)-359(abandoned)-359(and)-359(was)-359(often)-359(burned)-358(down,)-387(and)-359(the)-358(immediate)]TJ 0 -13.55 Td [(family)-224(moved)-224(to)-224(another)-225(campsite.)-241(Thus)-224(a)-224(family)-224(which)-224(suffered)]TJ 0 -13.549 Td [(no)-198(deaths)-197(during)-198(the)-197(winters)-197(might)-198(spend)-197(several)-198(years)-197(in)-198(a)-197(single)]TJ 0 -13.549 Td [(campground,)-210(whereas)-201(a)-200(less)-200(fortunate)-200(family)-201(might)-200(have)-200(to)-200(move)]TJ 0 -13.549 Td [(every)-250(winter,)-250(or)-250(even)-250(oftener)-250(than)-250(that.)]TJ 11.956 -13.752 Td [(A)-378(few)-377(Washo)-378(began)-378(building)-378(simple)-378(rectangular)-378(board)-377(and)]TJ -11.956 -13.549 Td [(batten)-414(houses)-413(in)-414(the)-413(1890's.)-741(Most)-413(of)-414(the)-413(others)-414(continued)-413(to)]TJ 0 -13.549 Td [(live)-330(in)-331(gal'sda)]TJ/F40 10.9091 Tf 61.897 0 Td [(r)]TJ/F16 10.9091 Tf 5.956 0 Td [(\277l)-330(made)-331(of)-330(boards)-331(and)-330(scrap,)-351(begged,)-350(stolen,)-351(or)]TJ -67.853 -13.549 Td [(purchased)-285(from)-284(the)-285(lumber)-284(mills)-285(which)-285(were)-284(quite)-285(numerous)-284(in)]TJ 0 -13.549 Td [(the)-215(area)-214(at)-214(the)-215(beginning)-214(of)-215(the)-214(century.)-238(In)-215(the)-214(1920's,)-222(when)-214(most)]TJ 0 -13.55 Td [(of)-396(the)-395(Washo)-396(moved)-396(into)-396(the)]TJ/F34 10.9091 Tf 138.614 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(colonies)]TJ/F34 10.9091 Tf 36.36 0 Td [(\035)]TJ/F16 10.9091 Tf 9.16 0 Td [(established)-396(for)-395(them)]TJ -188.978 -13.549 Td [(by)-349(the)-348(government,)-373(the)-349(native-style)-348(houses)-349(were)-348(abandoned)-348(in)]TJ 0 -13.549 Td [(favor)-285(of)-285(the)-286(wooden)-285(homes)-285(built)-285(by)-285(the)-286(government.)-355(No)-285(longer)]TJ 0 -13.549 Td [(permitted)-168(to)-168(move)-169(about)-168(the)-168(country)-168(at)-168(will,)-185(and)-168(frankly)-168(unwilling)]TJ 0 -13.549 Td [(to)-254(abandon)-254(the)-255(more)-254(comfortable)-254(white-style)-254(houses,)-255(the)-254(Washo)]TJ 0 -13.55 Td [(adjusted)-442(their)-441(death)-442(customs.)-825(The)-442(most)-442(common)-441(adjustment)]TJ 0 -13.549 Td [(was)-334(to)-334(prepare)-334(for)-333(an)-334(impending)-334(death)-334(by)-334(shifting)-334(seriously)-333(ill)]TJ 0 -13.549 Td [(persons)-400(into)-399(an)-400(adjoining)-399(structure,)-437(often)-399(a)-400(shack)-399(built)-400(in)-399(the)]TJ 0 -13.549 Td [(native)-186(manner)-187(or)-186(a)-186(shed)-186(or)-187(lean-to.)-228(This)-187(structure)-186(could)-186(be)-186(burned)]TJ 0 -13.549 Td [(down)-250(without)-250(loss)-250(when)-250(its)-250(inhabitant)-250(died.)]TJ/F16 7.9701 Tf 190.004 3.959 Td [(7)]TJ/F16 10.9091 Tf -178.048 -17.711 Td [(The)-286(Washo)-285(viewed)-286(this)-285(destruction)-286(of)-285(a)-286(house)-285(occupied)-286(by)-285(a)]TJ -11.956 -13.549 Td [(dead)-346(person)-346(as)-347(simply)-346(preventing)-346(his)-346(spirit)-346(from)-346(bothering)-346(the)]TJ 0 -13.549 Td [(living.)]TJ 11.956 -13.752 Td [(Most)-412(Washo)-412(death)-412(customs)-412(display)-412(a)-412(conscious)-412(attempt)-412(to)]TJ
0 g 0 G
ET
q
1 0 0 1 93.543 87.722 cm
[]0 d 0 J 0.398 w 0 0 m 112.25 0 l S
Q
BT
/F16 5.9776 Tf 99.77 80.91 Td [(7)]TJ/F16 8.9664 Tf 5.729 -3.809 Td [(The)-363(willingness)-363(of)-363(the)-363(Washo)-363(to)-363(send)-363(gravely)-363(ill)-363(persons)-363(to)-363(the)-363(hospital)]TJ -11.956 -10.959 Td [(seems)-250(in)-250(part)-250(motivated)-250(by)-250(the)-250(wish)-250(to)-250(avoid)-250(a)-250(death)-250(in)-250(the)-250(house.)]TJ
0 g 0 G
0 g 0 G
0 g 0 G
ET
endstream
endobj
271 0 obj <<
/Type /Page
/Contents 272 0 R
/Resources 270 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 255 0 R
>> endobj
270 0 obj <<
/Font << /F16 7 0 R /F40 90 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
275 0 obj <<
/Length 4818      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Death)-250(\0502389-2453\051)-17087(49)]TJ
0 g 0 G
 0 -30.759 Td [(avoid)-337(association)-337(with)-336(the)-337(dead.)-510(Barrett)-337(reports)-337(that)-336(cremation)]TJ 0 -13.549 Td [(was)-285(practiced,)-295(and)-285(the)-285(bones)-286(placed)-285(in)-285(a)-285(stream)-286(to)-285(prevent)-285(their)]TJ 0 -13.549 Td [(desecration.)-293(However,)-268(this)-264(appears)-265(to)-264(have)-264(been)-265(onl)1(y)-265(one)-264(of)-264(the)]TJ 0 -13.549 Td [(disposal)-328(customs)-327(and)-328(is)-327(not)-328(well)-328(remembered)-327(by)-328(Washo)-327(living)]TJ 0 -13.55 Td [(today.)-249(The)-248(burning)-247(or)-248(burying)-248(of)-247(the)-248(personal)-247(possessions)-248(of)-247(the)]TJ 0 -13.549 Td [(dead)-194(was)-194(common.)-232(Certain)-194(prized)-194(possessions)-194(were)-194(interred)-194(with)]TJ 0 -13.549 Td [(the)-381(body,)-413(which)-380(was)-381(usually)-381(wrapped)-380(in)-381(a)-380(shroud)-381(of)-380(matting,)]TJ 0 -13.549 Td [(deerskin,)-523(or)-468(bearhide)-468(and)-468(placed)-468(in)-468(a)-468(fissure)-468(or)-468(cave)-468(in)-468(the)]TJ 0 -13.549 Td [(mountains.)-358(Although)-285(there)-286(are)-286(a)-286(number)-286(of)-286(locations)-286(known)-285(by)]TJ 0 -13.55 Td [(both)-399(Indians)-400(and)-399(local)-400(whites)-399(as)-399(old)-400(burying)-399(grounds,)-437(all)-399(my)]TJ 0 -13.549 Td [(informants)-218(agreed)-218(that)-218(in)-218(the)]TJ/F34 10.9091 Tf 126.412 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(real)-218(old)-218(days)]TJ/F34 10.9091 Tf 55.046 0 Td [(\035)]TJ/F16 10.9091 Tf 7.221 0 Td [(there)-218(was)-218(no)-218(special)]TJ -193.522 -13.549 Td [(cemetery)-377(and)-378(that)-377(these)-377(burial)-378(spots)-377(have)-378(developed)-377(since)-377(the)]TJ 0 -13.549 Td [(coming)-320(of)-320(the)-320(white)-319(man.)-460(This)-320(may)-320(well)-320(have)-320(been)-320(as)-319(a)-320(result)]TJ 0 -13.549 Td [(of)-322(direct)-322(white)-322(interference)-322(with)-322(native)-322(funeral)-321(customs)-322(and)-322(an)]TJ 0 -13.55 Td [(insistence)-326(that)-325(Indians)-326(concentrate)-326(their)-325(burials.)-477(Some)-326(of)-325(these)]TJ 0 -13.549 Td [(sites)-250(have)-250(become)-250(traditional)-250(among)-250(the)-250(Washo.)]TJ/F16 7.9701 Tf 291.023 0 Td [([378])]TJ/F16 10.9091 Tf -279.068 -14.776 Td [(The)-489(dispute)-488(between)-489(the)-489(widow)-488(and)-489(the)-489(sister)-488(mentioned)]TJ -11.955 -13.55 Td [(earlier)-379(was)-378(an)-379(argument)-379(as)-379(to)-378(whether)-379(the)-379(deceased)-379(would)-378(be)]TJ 0 -13.549 Td [(buried)-204(in)-203(one)-204(of)-203(these)-204(sites)-204(or)-203(in)-204(the)-203(cemetery)-204(at)-203(Stewart,)-213(Nevada.)]TJ 11.955 -14.776 Td [(A)-474(white)-474(man)-474(who)-475(has)-474(lived)-474(in)-474(the)-475(area)-474(for)-474(ninety)-474(years,)]TJ -11.955 -13.55 Td [(reported)-238(that)-238(as)-239(a)-238(boy)-238(he)-238(often)-238(came)-239(across)-238(caches)-238(of)-238(belongings)]TJ 0 -13.549 Td [(of)-413(dead)-413(Indians)-413(in)-413(the)-413(mountains.)-739(Today,)-454(prized)-413(possessions)]TJ 0 -13.549 Td [(are)-369(either)-370(crowded)-369(into)-370(the)-369(casket)-369(with)-370(the)-369(body)-370(or)-369(burned)-369(or)]TJ 0 -13.549 Td [(secreted)-250(in)-250(some)-250(remote)-250(area)-250(of)-250(the)-250(Sierra.)]TJ 11.955 -14.777 Td [(Funeral)-370(ceremonies)-370(were)-369(apparently)-370(simple.)-610(The)-370(body)-369(was)]TJ -11.955 -13.549 Td [(wrapped)-306(and)-306(carried)-306(into)-306(the)-307(hi)1(lls)-307(to)-306(be)-306(interred.)-418(Prayers)-306(in)-306(the)]TJ 0 -13.549 Td [(form)-302(of)-302(a)-303(short)-302(speech)-302(were)-302(directed)-302(toward)-302(the)-303(dead.)]TJ/F34 10.9091 Tf 244.027 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(We)-302(are)]TJ -248.871 -13.549 Td [(burying)-218(you)-218(because)-217(you)-218(are)-218(dead.)-239(It's)-218(not)-218(because)-218(we)-218(are)-218(mad)-217(at)]TJ 0 -13.549 Td [(you)-269(or)-270(don't)-270(like)-269(you.)-309(But)-269(you)-270(are)-269(dead.)-309(Please)-269(don't)-270(come)-269(back)]TJ 0 -13.55 Td [(and)-250(bother)-250(us.)]TJ/F34 10.9091 Tf 61.505 0 Td [(\035)]TJ/F16 10.9091 Tf -49.55 -14.776 Td [(Widows)-437(traditionally)-438(cut)-437(their)-438(hair)-437(in)-438(mourning,)-484(a)-438(custom)]TJ -11.955 -13.549 Td [(which)-364(is)-365(still)-364(practiced.)-594(Stewart)-364(reports)-364(that)-365(mourners)-364(painted)]TJ 0 -13.55 Td [(their)-241(faces)-240(black.)-247(My)-241(informants)-240(denied)-241(this,)-242(but)-241(one)-240(elaborated:)]TJ/F34 10.9091 Tf 0 -13.549 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(I)-362(remember)-361(when)-362(I)-361(was)-362(a)-362(little)-361(girl)-362(old)-362(Indians)-361(who)-362(had)-361(lost)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
274 0 obj <<
/Type /Page
/Contents 275 0 R
/Resources 273 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 255 0 R
>> endobj
276 0 obj <<
/D [274 0 R /XYZ 46.771 312.559 null]
>> endobj
273 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
279 0 obj <<
/Length 5026      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(50)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(someone)-189(would)-188(cry)-189(a)-189(lot)-188(and)-189(let)-189(the)-188(tears)-189(run)-189(down)-188(their)-189(faces)-188(and)]TJ 0 -13.549 Td [(not)-237(wash)-237(their)-236(faces)-237(until)-237(they)-237(were)-237(real)-236(dirty)-237(and)-237(black)-237(with)-236(fire)]TJ 0 -13.549 Td [(smoke.)]TJ/F34 10.9091 Tf 31.211 0 Td [(\035)]TJ/F16 10.9091 Tf 7.973 0 Td [(Crying)-287(at)-287(a)-287(funeral)-286(was)-287(expected)-287(and)-287(in)-287(fact)-287(positively)]TJ -39.184 -13.549 Td [(sanctioned.)-232(At)-194(a)-194(funeral)-195(conducted)-194(while)-195(I)-194(was)-195(present)-194(the)-194(sheriff)]TJ 0 -13.55 Td [(arrested)-357(a)-356(drunken)-357(Washo)-357(who)-356(was)-357(wailing)-357(quite)-356(loudly.)-570(The)]TJ 0 -13.549 Td [(Indians)-383(were)-383(all)-383(bitter)-383(about)-383(this)-383(because:)]TJ/F34 10.9091 Tf 195.516 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(All)-383(of)-383(us)-383(cry)-383(at)-383(a)]TJ -200.359 -13.549 Td [(funeral)-292(whether)-293(we)-292(are)-293(drunk)-292(or)-293(not.)-377(That's)-292(the)-293(way)-292(the)-292(Washo)]TJ 0 -13.549 Td [(do)-290(it.)]TJ/F34 10.9091 Tf 22.865 0 Td [(\035)]TJ/F16 10.9091 Tf 8.007 0 Td [(\050This)-290(funeral)-290(was)-290(that)-290(of)-290(a)-290(murder)-290(victim)-290(and)-290(the)-290(sheriff)]TJ -30.872 -13.549 Td [(was)-237(present)-237(because)-237(he)-238(feared)-237(there)-237(might)-237(be)-237(a)-237(reprisal)-237(attempt.\051)]TJ 11.956 -16.143 Td [(A)-250(newspaper)-249(report)-250(of)-250(a)-250(funeral)-250(in)-249(Genoa,)-250(Nevada,)-250(in)-250(the)-249(late)]TJ -11.956 -13.549 Td [(1880's)-377(records)-378(that)-377(the)-377(Indians)-377(had)-377(borrowed)-378(a)-377(wagon)-377(from)-377(a)]TJ 0 -13.549 Td [(white)-317(man)-318(to)-317(transport)-317(the)-318(corpse)-317(\050that)-317(of)-318(a)-317(well-known)-317(Indian)]TJ 0 -13.549 Td [(woman\051)-332(to)-331(the)-332(burying)-331(ground.)-495(The)-331(wagon)-332(was)-331(followed)-332(by)-331(a)]TJ 0 -13.55 Td [(large)-250(crowd)-250(of)-250(weeping)-250(mourners.)]TJ 11.956 -16.142 Td [(Modern)-482(funerals)-482(usually)-482(take)-482(place)-482(under)-482(the)-482(auspices)-482(of)]TJ -11.956 -13.549 Td [(a)-425(funeral)-426(director,)-469(and)-425(generally)-426(services)-425(are)-426(performed)-425(by)-425(a)]TJ 0 -13.549 Td [(Christian)-409(minister)-409(from)-409(the)-409(Stewart)-409(Indian)-409(agency.)-727(After)-408(the)]TJ 0 -13.55 Td [(white)-234(minister)-234(has)-234(left,)-237(it)-234(is)-234(usual)-234(for)-234(an)-234(older)-234(Indian)-234(to)-234(approach)]TJ 0 -13.549 Td [(the)-397(casket)-396(and)-397(repeat)-397(the)-397(old)-396(funeral)-397(prayers.)-690(The)-397(reason)-396(for)]TJ 0 -13.549 Td [(waiting)-275(until)-276(the)-275(minister)-275(leaves)-275(is)-275(to)-276(avoid)-275(hurting)-275(his)-275(feelings.)]TJ 0 -13.549 Td [(My)-229(informants)-228(said)-229(the)-228(prayers)-229(made)-228(the)-229(older)-228(Indians)-229(feel)-228(more)]TJ 0 -13.549 Td [(comfortable.)-536(It)-346(is)-345(usually)-345(not)-346(necessary)-345(to)-346(burn)-345(the)-345(deceased's)]TJ 0 -13.55 Td [(home,)-256(but)-255(his)-255(belongings)-255(are)-255(disposed)-255(of.)-265(There)-255(is)-255(an)-255(increasing)]TJ 0 -13.549 Td [(tendency)-276(to)-276(tend)-276(graves)-277(and)-276(put)-276(flowers)-276(on)-276(them.)-328(The)-276(cemetery)]TJ 0 -13.549 Td [(at)-327(Stewart)-327(appears)-327(to)-327(be)-327(well)-327(decorated)-327(with)-327(flowers.)-481(Two)-327(old)]TJ 0 -13.549 Td [(Indian)-312(graves)-312(near)-312(Lake)-313(Tahoe)-312(are)-312(regularly)-312(visited)-312(and)-312(jars)-312(of)]TJ 0 -13.549 Td [(flowers)-250(placed)-250(on)-250(them.)]TJ/F16 7.9701 Tf 104.826 3.958 Td [(8)]TJ/F16 10.9091 Tf -92.87 -20.101 Td [(When)-342(the)-343(husband)-342(of)-342(one)-342(of)-343(my)-342(informants)-342(died,)-365(following)]TJ
0 g 0 G
ET
q
1 0 0 1 93.543 131.558 cm
[]0 d 0 J 0.398 w 0 0 m 112.25 0 l S
Q
BT
/F16 5.9776 Tf 99.77 124.746 Td [(8)]TJ/F16 8.9664 Tf 5.729 -3.809 Td [(The)-220(concern)-220(for)-220(these)-220(particular)-221(graves)-220(may)-220(be)-220(in)-220(part)-220(motivated)-220(by)-220(the)-221(fact)]TJ -11.956 -10.959 Td [(that)-312(they)-313(are)-312(a)-313(focal)-312(point)-313(in)-312(a)-313(Washo)-312(land)-312(claim.)-438(Because)-312(of)-313(California)-312(law)]TJ 0 -10.959 Td [(concerning)-288(cemeteries,)-297(the)-288(Indians)-288(contend)-287(that)-288(the)-288(tourist)-288(camp)-287(presently)-288(on)]TJ 0 -10.959 Td [(the)-258(site)-258(is)-258(there)-258(illegally)-258(and)-258(that)-258(the)-258(land)-258(is)-258(theirs.)-274(Thus)-258(far)-258(the)-258(camp)-258(operator)]TJ 0 -10.959 Td [(has)-340(been)-340(enjoined)-340(from)-340(removing)-340(or)-340(desecrating)-340(the)-340(graves,)-363(but)-340(the)-340(Indians')]TJ 0 -10.959 Td [(claim)-250(has)-250(not)-250(been)-250(considered.)]TJ
0 g 0 G
0 g 0 G
0 g 0 G
ET
endstream
endobj
278 0 obj <<
/Type /Page
/Contents 279 0 R
/Resources 277 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 255 0 R
>> endobj
277 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
282 0 obj <<
/Length 4558      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Death)-250(\0502389-2453\051)-17087(51)]TJ
0 g 0 G
 0 -30.759 Td [(a)-394(twelve-year)-395(illness)-394(spent)-394(in)-395(a)-394(secondary)-394(house,)-431(she)-394(went)-394(to)]TJ 0 -13.549 Td [(visit)-327(a)-327(daughter)-327(living)-327(near)-327(Lake)-327(Tahoe.)-481(When)-327(she)-327(returned)-327(to)]TJ 0 -13.549 Td [(Dresslerville)-278(her)-279(two)-278(sons)-278(had)-279(torn)-278(down)-278(the)-279(shed)-278(and)-278(disposed)]TJ 0 -13.549 Td [(of)-364(all)-365(their)-364(father's)-365(possessions.)-593(In)-364(deference)-365(to)-364(their)-364(mother's)]TJ 0 -13.55 Td [(rather)-281(modern)-281(views)-281(about)-280(funerals,)-289(nothing)-281(had)-281(been)-281(placed)-280(in)]TJ 0 -13.549 Td [(the)-250(casket.)]TJ 11.956 -15.186 Td [(While)-310(I)-310(was)-310(in)-310(Dresslerville)-310(an)-310(Indian)-310(of)-310(about)-310(forty)-310(put)-310(the)]TJ -11.956 -13.549 Td [(torch)-256(to)-257(the)-256(house)-257(in)-256(which)-256(his)-257(mother)-256(and)-257(father)-256(had)-256(lived.)-269(The)]TJ 0 -13.549 Td [(house)-296(had)-296(been)-296(unoccupied)-297(since)-296(their)-296(deaths.)-388(While)-296(the)-296(house)]TJ 0 -13.549 Td [(burned)-214(no)-215(effort)-214(was)-214(made)-214(to)-215(extinguish)-214(the)-214(fire)-214(or)-215(to)-214(call)-214(the)-214(fire)]TJ 0 -13.549 Td [(department.)-540(A)-347(nearby)-347(rancher)-347(saw)-346(the)-347(fire)-347(and)-347(summoned)-346(the)]TJ 0 -13.55 Td [(fire)-308(department,)-322(but)-307(the)-308(Indians)-307(refused)-308(to)-308(tell)-307(the)-308(firemen)-307(how)]TJ 0 -13.549 Td [(the)-355(fire)-355(had)-355(started.)-565(The)-355(local)-355(newspaper)-355(reported)-355(it)-355(had)-354(been)]TJ 0 -13.549 Td [(burned)-259(to)-260(drive)-259(away)-260(evil)-259(spirits.)-278(This)-260(upset)-259(my)-260(informants,)-261(one)]TJ 0 -13.549 Td [(of)-324(whom)-325(said)-324(that)-325(the)-324(sight)-324(of)-325(the)-324(house)-324(simply)-325(made)-324(the)-324(man)]TJ 0 -13.549 Td [(sad.)-439(She)-314(elaborated)-313(that)-313(the)-313(Washo)-313(felt)-313(they)-313(were)-313(helping)-313(God)]TJ 0 -13.55 Td [(wipe)-243(out)-244(the)-243(tracks)-244(of)-243(a)-244(dead)-243(person.)-248(The)-243(Washo)-244(claim)-243(that)-243(after)]TJ 0 -13.549 Td [(a)-266(death)-265(there)-266(is)-265(always)-266(a)-265(rain)-265(or)-266(sand)-265(storm)-266(which)-265(wipes)-266(out)-265(the)]TJ 0 -13.549 Td [(tracks)-250(of)-250(the)-250(deceased.)]TJ 11.956 -15.186 Td [(After)-189(the)-190(Washo)-189(return)-190(home)-189(from)-190(a)-189(funeral,)-202(they)-189(immediately)]TJ -11.956 -13.549 Td [(wash)-229(their)-230(faces)-229(and)-229(hands.)-243(They)-229(would)-230(not)-229(feel)-229(safe)-229(in)-229(handling)]TJ 0 -13.549 Td [(food)-250(or)-250(children)-250(until)-250(this)-250(ritual)-250(had)-250(been)-250(carried)-250(out.)]TJ 11.956 -15.186 Td [(The)-441(behavior)-442(of)-441(the)-442(dead)-441(is)-442(a)-441(matter)-442(of)-441(concern)-442(for)-441(most)]TJ -11.956 -13.549 Td [(Washo)-232(\0502606-2609a\051.)-244(Ideally,)-236(the)-233(spirit)-232(is)-232(supposed)-233(to)-232(go)-232(up)-232(and)]TJ 0 -13.549 Td [(to)-372(the)-371(south)-372(where)-371(dead)-372(Indians)-371(are.)-615(This)-371(land)-372(of)-371(the)-372(dead)-371(is)]TJ 0 -13.549 Td [(guarded)-345(by)-346(a)-345(number)-346(of)-345(men)-346(with)-345(bows.)-537(Some)-345(shamans)-345(were)]TJ 0 -13.55 Td [(able)-246(to)-246(make)-246(the)-246(trip)-246(to)-246(the)-246(land)-247(of)-246(the)-246(dead)-246(\0502541-2544\051.)-248(If)-246(they)]TJ 0 -13.549 Td [(could)-329(elude)-329(these)-329(guards,)-349(they)-329(were)-329(sometimes)-329(able)-328(to)-329(recover)]TJ 0 -13.549 Td [(the)-243(spirit)-243(of)-244(a)-243(recently)-243(dead)-243(person)-243(and)-243(return)-244(it.)-247(If,)-245(however,)-244(the)]TJ 0 -13.549 Td [(spirit)-312(has)-312(partaken)-311(of)-312(the)-312(water)-311(of)-312(a)-312(spring)-312(immediately)-311(behind)]TJ 0 -13.549 Td [(the)-221(guards,)-226(it)-221(can)-220(never)-221(be)-220(recovered.)-240(The)-221(by-now-familiar)-220(uncle)]TJ 0 -13.55 Td [(of)-314(my)-314(informant)-313(once)-314(visited)-314(the)-314(land)-313(of)-314(the)-314(dead)-314(and)-313(reported)]TJ 0 -13.549 Td [(that)-334(there)-334(were)-334(lots)-334(of)-334(Indians)-334(there)-334(playing)-334(games)-334(and)-334(having)]TJ 0 -13.549 Td [(a)-289(good)-289(time.)-367(If)-289(murder)-289(victims)-289(were)-289(present)-289(they)-289(were)-289(with)-289(the)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
281 0 obj <<
/Type /Page
/Contents 282 0 R
/Resources 280 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 283 0 R
>> endobj
280 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
286 0 obj <<
/Length 2311      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(52)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(celebrants,)-235(but)-231(the)-231(spirits)-231(of)-231(the)-231(killers)-231(were)-231(segregated)-231(and)-231(were)]TJ 0 -13.549 Td [(not)-250(having)-250(a)-250(good)-250(time.)]TJ 11.956 -13.549 Td [(Ghosts,)-369(however,)-368(wander)-345(over)-345(the)-345(land.)-535(They)-345(are)-344(generally)]TJ -11.956 -13.549 Td [(malevolent.)-623(If)-374(they)-374(feel)-375(they)-374(have)-374(been)-374(badly)-375(used)-374(in)-374(life,)-405(or)]TJ 0 -13.55 Td [(are)-416(not)-416(properly)-417(honored)-416(after)-416(death,)-458(or)-416(have)-416(not)-416(been)-416(given)]TJ 0 -13.549 Td [(the)-263(things)-263(they)-263(wanted)-263(when)-263(buried,)-266(they)-263(may)-263(wreak)-262(vengeance)]TJ 0 -13.549 Td [(on)-318(the)-318(living.)-455(To)-318(prevent)-319(this,)-335(homes)-318(were)-318(abandoned,)-335(prayers)]TJ 0 -13.549 Td [(were)-320(said,)-337(and)-320(names)-320(of)-319(the)-320(dead)-320(were)-320(not)-319(used.)-460(In)-319(discussing)]TJ 0 -13.549 Td [(a)-476(recent)-475(murder,)-533(one)-475(of)-476(the)-476(most)-475(progressive)-476(of)-476(the)-475(Washo)]TJ 0 -13.55 Td [(was)-419(extremely)-418(reluctant)-419(to)-419(give)-418(the)-419(name)-418(of)-419(the)-419(victim,)-460(and,)]TJ 0 -13.549 Td [(when)-355(she)-355(finally)-354(did,)-381(she)-355(whispered)-355(it.)-564(One)-355(of)-355(the)-354(difficulties)]TJ 0 -13.549 Td [(encountered)-422(by)-422(government)-421(agents)-422(when)-422(pine-nut)-422(lands)-421(were)]TJ 0 -13.549 Td [(allotted)-395(to)-394(the)-395(Washo)-394(was)-395(a)-395(refusal)-394(to)-395(name)-394(the)-395(ancestors)-394(on)]TJ 0 -13.549 Td [(whom)-250(the)-250(allotment)-250(claim)-250(was)-250(based.)]TJ 11.956 -13.55 Td [(Ghosts)-355(are)-356(often)-355(said)-356(to)-355(come)-355(in)-356(the)-355(form)-356(of)-355(whirlwinds)-355(or)]TJ -11.956 -13.549 Td [(dust)-288(devils,)-298(and)-288(most)-288(Washo)-289(will)-288(avoid)-288(looking)-288(at)-288(a)-288(whirlwind.)]TJ 0 -13.549 Td [(At)-401(night,)-439(a)-402(sudden)-401(puff)-401(of)-402(warm)-401(air)-401(is)-401(thought)-402(to)-401(be)-401(a)-401(ghost)]TJ 0 -13.549 Td [(passing)-250(nearby.)]TJ/F16 7.9701 Tf -72.755 -29.651 Td [([379])]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
285 0 obj <<
/Type /Page
/Contents 286 0 R
/Resources 284 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 283 0 R
>> endobj
287 0 obj <<
/D [285 0 R /XYZ 93.543 258.188 null]
>> endobj
284 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
288 0 obj
<< /S /GoTo /D (index22) >>
endobj
291 0 obj
(Ritual In Subsistence)
endobj
292 0 obj
<< /S /GoTo /D (index23) >>
endobj
295 0 obj
(Hunting)
endobj
298 0 obj <<
/Length 3258      
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 46.771 479.321 Td [(Ritual)-250(In)-250(Subsistence)]TJ/F16 10.9091 Tf 0 -34.77 Td [(Hunting,)-232(far)-228(more)-228(than)-227(gathering,)-233(appears)-227(to)-228(have)-228(been)-228(the)-227(focus)]TJ 0 -13.549 Td [(of)-396(much)-396(ritual)-397(activity.)-688(This)-396(suggests)-397(that)-396(for)-396(the)-396(Washo)-396(the)]TJ 0 -13.55 Td [(importance)-433(of)-433(ritual)-433(may)-432(have)-433(increased)-433(in)-433(proportion)-433(to)-432(the)]TJ 0 -13.549 Td [(element)-247(of)-248(chance)-247(inherent)-247(in)-248(the)-247(activity)-247(undertaken.)-249(Gathering)]TJ 0 -13.549 Td [(was)-419(a)-418(surety,)-461(assuming)-418(of)-419(course)-419(that)-418(there)-419(was)-418(a)-419(harvest)-418(to)]TJ 0 -13.549 Td [(gather.)-843(With)-447(the)-448(wide)-447(variety)-447(of)-448(plants)-447(available)-448(within)-447(the)]TJ 0 -13.549 Td [(Washo)-417(territory)-417(during)-418(the)-417(spring,)-459(summer,)-459(and)-417(fall)-417(it)-417(seems)]TJ 0 -13.55 Td [(highly)-294(unlikely)-293(that)-294(the)-293(failure)-294(of)-294(one)-293(species)-294(of)-293(plant)-294(created)-293(a)]TJ 0 -13.549 Td [(serious)-335(problem.)-504(This,)-356(of)-335(course,)-356(was)-335(not)-334(true)-335(of)-335(the)-335(pine)-334(nut.)]TJ 0 -13.549 Td [(A)-380(failure)-379(of)-380(the)-379(pine-nut)-380(crop)-379(was)-380(a)-380(harbinger)-379(of)-380(a)-379(starvation)]TJ 0 -13.549 Td [(winter.)-244(The)-231(gathering)-232(of)-231(pine)-231(nuts,)-236(in)-231(contrast)-231(to)-232(the)-231(gathering)-231(of)]TJ 0 -13.549 Td [(other)-226(plants,)-231(was)-227(the)-226(subject)-226(of)-227(a)-226(great)-226(deal)-227(of)-226(ritual)-226(and,)-231(in)-226(some)]TJ 0 -13.55 Td [(degree,)-347(of)-327(ceremonialism)-328(uncommon)-327(to)-328(most)-327(Washo)-327(gathering)]TJ 0 -13.549 Td [(activities.)-250(This)-250(will)-250(be)-250(dealt)-250(with)-250(later)-250(in)-250(the)-250(paper.)]TJ/F16 15.7808 Tf 0 -62.269 Td [(Hunting)]TJ/F37 10.9091 Tf 0 -31.606 Td [(Deer)]TJ/F16 10.9091 Tf 25.454 0 Td [(\0501-27\051.)]TJ/F34 10.9091 Tf 29.989 0 Td [(\024)]TJ/F16 10.9091 Tf 10.909 0 Td [(Deer)-334(were)-334(hunted)-335(in)-334(a)-334(number)-334(of)-335(ways.)-502(Barrett)]TJ -66.352 -13.55 Td [(reports,)-393(and)-365(old)-364(informants)-365(confirm,)-393(that)-365(hunting)-364(parties)-365(of)-364(as)]TJ 0 -13.549 Td [(many)-330(as)-329(thirty)-330(or)-329(forty)-330(men)-329(were)-330(formed)-329(in)-329(the)-330(old)-329(days)-330(to)-329(go)]TJ 0 -13.549 Td [(to)-332(the)-332(western)-332(slope)-332(of)-331(the)-332(Sierra)-332(in)-332(pursuit)-332(of)-332(deer.)-496(The)-331(large)]TJ 0 -13.549 Td [(number)-211(may)-210(have)-211(been)-210(necessitated)-211(by)-210(the)-210(possibility)-211(of)-210(meeting)]TJ 0 -13.549 Td [(hostile)-255(Miwok)-256(or)-255(Maidu.)-266(My)-256(own)-255(informants)-256(claimed)-255(that)-255(these)]TJ 0 -13.55 Td [(large)-283(parties)-282(often)-283(set)-283(fire)-282(to)-283(the)-283(forest)-282(to)-283(drive)-283(the)-282(deer)-283(into)-282(the)]TJ 0 -13.549 Td [(open,)-265(and)-262(that)-262(the)-262(large)-262(number)-262(of)-262(men)-262(was)-262(needed)-262(to)-262(cover)-262(the)]TJ 0 -13.549 Td [(escape)-250(routes.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
297 0 obj <<
/Type /Page
/Contents 298 0 R
/Resources 296 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 283 0 R
>> endobj
289 0 obj <<
/D [297 0 R /XYZ 46.771 529.134 null]
>> endobj
293 0 obj <<
/D [297 0 R /XYZ 46.771 242.347 null]
>> endobj
296 0 obj <<
/Font << /F16 7 0 R /F37 75 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
301 0 obj <<
/Length 4262      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(54)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 11.956 -30.759 Td [(More)-331(common,)-352(apparently,)-351(were)-331(small)-332(groups)-331(of)-331(five)-331(or)-331(six)]TJ -11.956 -13.549 Td [(men,)-280(usually)-274(relatives,)-280(who)-274(went)-274(into)-274(the)-274(deer)-274(country)-274(together.)]TJ 0 -13.549 Td [(Their)-268(technique)-269(was)-268(to)-269(drive)-268(along)-268(a)-269(single)-268(deer)-269(run)-268(toward)-268(one)]TJ 0 -13.549 Td [(of)-281(their)-280(number)-281(who)-280(was)-281(considered)-280(the)-281(best)-280(shot.)-342(This)-280(method)]TJ 0 -13.55 Td [(was)-240(very)-241(common)-240(after)-240(the)-241(introduction)-240(of)-240(firearms,)-242(particularly)]TJ 0 -13.549 Td [(repeating)-250(firearms.)]TJ 11.956 -13.549 Td [(Finally,)-469(any)-425(Washo)-425(man)-425(might)-426(hunt)-425(singly.)-775(Often)-425(groups)]TJ -11.956 -13.549 Td [(of)-338(five)-339(or)-338(six)-339(men)-338(went)-338(hunting)-339(together)-338(but)-338(each)-339(did)-338(his)-338(own)]TJ 0 -13.549 Td [(stalking.)]TJ 11.956 -13.55 Td [(Whatever)-467(the)-468(technique,)-522(hunting)-467(magic)-468(was)-467(an)-467(individual)]TJ -11.956 -13.549 Td [(affair)-250(which)-250(did)-250(not)-250(require)-250(any)-250(ceremonial)-250(activities.)]TJ 11.956 -13.549 Td [(A)-160(single)-161(hunter,)-178(before)-161(the)-160(days)-160(of)-161(firearms,)-178(often)-161(stalked)-160(in)-160(the)]TJ -11.956 -13.549 Td [(antlers)-258(and)-257(hide)-258(of)-258(a)-257(deer.)-273(Washo)-258(were)-257(often)-258(superstitious)-257(about)]TJ 0 -13.549 Td [(using)-402(the)-402(real)-402(antlers)-402(and)-402(made)-402(artificial)-402(sets)-402(from)-402(manzanita)]TJ 0 -13.55 Td [(branches.)-537(This)-346(fear)-346(of)-345(using)-346(real)-346(antlers)-345(appears)-346(related)-346(to)-345(the)]TJ 0 -13.549 Td [(treatment)-264(which)-265(was)-264(accorded)-265(to)-264(the)-264(bones)-265(of)-264(deer.)-293(These,)-268(once)]TJ 0 -13.549 Td [(the)-335(meat)-335(had)-335(been)-335(completely)-335(stripped)-334(off,)-357(were)-335(submerged)-334(in)]TJ 0 -13.549 Td [(a)-347(stream)-346(to)-347(prevent)-346(their)-346(being)-347(eaten)-346(by)-347(dogs)-346(or)-347(wild)-346(animals.)]TJ 0 -13.549 Td [(Perhaps)-400(the)-401(best)-400(account)-401(of)-400(the)-401(magic)-400(involved)-401(in)-400(stalking)-400(is)]TJ 0 -13.55 Td [(the)-377(following)-377(by)-376(an)-377(aged)-377(informant,)-408(reputed)-377(to)-377(have)]TJ/F34 10.9091 Tf 242.448 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(hunting)]TJ -247.292 -13.549 Td [(medicine.)]TJ/F34 10.9091 Tf 42.72 0 Td [(\035)]TJ/F34 9.8629 Tf -23.083 -21.399 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(We)-437(never)-438(had)-437(no)-438(poison)-437(arrow)-438(for)-437(bear)-438(or)-437(deer)-438(but)-437(had)]TJ -4.379 -12.822 Td [(something)-273(just)-274(as)-273(good.)-321(We)-273(took)-274(red)-273(paint)-274(and)-273(mixed)-274(it)-273(with)]TJ 0 -12.822 Td [(marrow)-299(from)-299(a)-299(deer)-299(leg)-299(and)-299(rubbed)-298(it)-299(on)-299(the)-299(shaft)-299(and)-299(point)]TJ 0 -12.822 Td [(of)-242(the)-243(arrow.)-247(Arrowheads)-243(for)-242(war)-243(were)-242(little)-243(but)-242(those)-243(for)-242(big)]TJ 0 -12.821 Td [(game)-250(like)-250(deer)-250(or)-250(bear)-250(were)-250(pretty)-250(big.)]TJ/F34 9.8629 Tf 152.826 0 Td [(\035)]TJ/F16 10.9091 Tf -160.507 -22.127 Td [(When)-263(I)-263(asked)-264(my)-263(informant)-263(the)-263(Washo)-264(word)-263(for)-263(this)-263(mixture)]TJ -11.956 -13.549 Td [(he)-250(evaded)-250(the)-250(question.)]TJ/F34 9.8629 Tf 19.637 -21.4 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(I)-324(don't)-323(think)-324(they)-323(had)-324(a)-323(word)-324(for)-324(it.)-470(They)-324(didn't)-324(talk)-323(about)]TJ -4.379 -12.821 Td [(it,)-268(just)-265(used)-265(it.)-293(If)-265(you)-265(used)-264(it)-265(you)-265(had)-264(to)-265(carry)-265(some)-264(medicine)]TJ 0 -12.822 Td [(to)-290(work)-290(against)-290(it,)-300('cause)-290(if)-290(you)-289(got)-290(a)-290(scratch)-290(of)-290(that)-290(mixture)]TJ 0 -12.822 Td [(and)-252(didn't)-251(have)-252(this)-251(other)-252(stuff)-252([the)-251(counter)-252(agent],)-252(you)-252(was)-251(a)]TJ 0 -12.822 Td [(goner.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
300 0 obj <<
/Type /Page
/Contents 301 0 R
/Resources 299 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 283 0 R
>> endobj
299 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
304 0 obj <<
/Length 4657      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Hunting)-21446(55)]TJ
0 g 0 G
/F34 9.8629 Tf 35.225 -30.759 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(A)-368(long)-369(time)-368(ago)-368(one)-368(man)-369(would)-368(hunt.)-605(Some)-368(of)-369(them)]TJ -19.967 -12.822 Td [(fellas)-331(was)-332(superstitious)-331(about)-331(using)-332(real)-331(deer)-331(horns,)-352(so)-331(they)]TJ 0 -12.822 Td [(would)-210(make)-210(horns)-210(of)-210(manzanita)-210(and)-210(then)-210(cover)-210(up)-210(with)-210(a)-210(deer)]TJ 0 -12.821 Td [(hide.)-581(They'd)-360(move)-360(along)-360(...)-581(taking)-360(a)-361(long)-360(time,)-388(just)-360(like)-360(a)]TJ 0 -12.822 Td [(deer.)-501(That)-333(old)-334(buck)-333(would)-334(try)-333(to)-334(get)-333(to)-334(the)-333(side)-334(away)-333(from)]TJ 0 -12.822 Td [(the)-396(wind)-395(to)-396(smell)-396(you,)-432(but)-396(you)-395(kept)-396(circling)-396(around)-395(so)-396(he)]TJ 0 -12.822 Td [(wouldn't)-303(smell)-303(you.)-410(Finally)-303(you)-303(could)-303(get)-304(real)-303(close,)-316(maybe)]TJ 0 -12.822 Td [(only)-270(three,)-276(four)-271(feet)-270(...)-312(going)-270(around)-271(making)-270(sounds)-271(just)-270(like)]TJ 0 -12.822 Td [(a)-288(deer.)-364(Sometimes)-289(them)-288(bucks)-288(would)-288(really)-288(believe)-288(you)-288(and)]TJ 0 -12.821 Td [(want)-248(to)-247(fight)-248(and)-247(then)-248(it)-248(was)-247(dangerous.)-249(When)-248(you)-248(was)-247(close)]TJ 0 -12.822 Td [(you)-370(shot)-369(that)-370(arrow)-369(into)-370(the)-370(deer)-369(right)-370(behind)-370(the)-369(shoulder)]TJ 0 -12.822 Td [(blade.)-399(That)-300(way)-299(w)-1(hen)-299(he)-300(jumped,)-312(the)-300(shoulder)-299(blade)-300(comes)]TJ 0 -12.822 Td [(back)-287(and)-286(breaks)-287(off)-287(the)-287(shaft.)-360(The)-286(man)-287(would)-287(grab)-286(the)-287(shaft)]TJ 0 -12.822 Td [(and)-299(suck)-300(off)-299(the)-299(blood.)-398(Then)-300(he'd)-299(make)-299(a)-300(little)-299(fire)-299(on)-300(a)-299(flat)]TJ 0 -12.821 Td [(stone)-381(and)-381(when)-381(it)-381(was)-381(hot)-382(he'd)-381(sweep)-381(off)-381(the)-381(fire)-381(and)-381(spit)]TJ 0 -12.822 Td [(that)-257(on)-256(the)-257(stone)-256(and)-257(it)-256(would)-257(bubble)-256(up)-257(and)-257(disappear.)-269(Then)]TJ 0 -12.822 Td [(you'd)-313(go)-314(after)-313(the)-314(deer)-313(and)-314(you'd)-313(find)-314(him)-313(laying)-314(there)-313(with)]TJ 0 -12.822 Td [(blood)-235(bubbling)-234(out)-235(of)-235(his)-234(nose)-235(just)-235(like)-234(that)-235(blood)-235(bubbled)-234(on)]TJ 0 -12.822 Td [(the)-250(stone.)]TJ/F34 9.8629 Tf 37.804 0 Td [(\035)]TJ/F16 10.9091 Tf -45.485 -30.187 Td [(Other)-291(rituals)-290(related)-291(to)-291(hunting)-291(dealt)-290(with)-291(the)-291(loss)-291(of)-290(hunting)]TJ -11.956 -13.549 Td [(luck.)-475(To)-324(regain)-325(one's)-325(luck)-325(in)-325(hunting,)-343(a)-325(sweat)-325(lodge)-325(was)-324(built,)]TJ 0 -13.55 Td [(consisting)-250(of)-250(a)-250(temporary)-250(brush)-250(shelter)-250(\050688-759\051.)]TJ 11.956 -14.913 Td [(To)-353(insure)-354(luck)-353(it)-354(was)-353(common)-354(in)-353(the)-354(old)-353(days)-354(to)-353(bathe)-353(and)]TJ -11.956 -13.549 Td [(rub)-233(the)-234(leaves)-233(of)-233(a)-234(certain)-233(mountain)-233(plant)-233(over)-234(one's)-233(body.)-244(Other)]TJ 0 -13.549 Td [(Washo)-308(carried)-307(a)-308(plant)-307(on)-308(their)-307(persons)-308(while)-307(hunting,)-322(to)-307(insure)]TJ 0 -13.549 Td [(luck.)-519(I)-340(was)-339(unable)-340(to)-340(get)-339(my)-340(informant)-340(to)-339(give)-340(me)-340(the)-339(Washo)]TJ 0 -13.55 Td [(name)-263(of)-264(this)-263(plant.)-290(Certain)-263(other)-264(special)-263(medicines)-263(are)-263(reported.)]TJ 0 -13.549 Td [(One)-222(man,)-227(it)-222(is)-222(hinted,)-227(has)-222(a)-221(medicine)-222(which)-222(he)-222(rubs)-221(on)-222(his)-222(gun)-221(to)]TJ 0 -13.549 Td [(insure)-248(good)-247(aim.)-250(Old)-247(hunters)-248(are)-248(said)-247(to)-248(have)-248(obtained)-247(medicine)]TJ 0 -13.549 Td [(from)-429(the)-428(Miwok)-429(which)-429(would)-428(put)-429(deer)-428(to)-429(sleep.)-786(Today)-428(this)]TJ 0 -13.549 Td [(medicine)-334(is)-334(a)-334(subject)-334(of)-334(esoteric)-334(humor)-334(between)-334(my)-334(informant)]TJ 0 -13.55 Td [(and)-235(his)-234(son-in-law.)-245(The)-234(latter)-235(insists)-234(that)-235(the)-234(bear)-235(has)-234(a)-234(medicine)]TJ 0 -13.549 Td [(which)-301(will)-301(put)-300(his)-301(father-in-law)-301(to)-300(sleep)-301(because)-301(he)-301(came)-300(upon)]TJ 0 -13.549 Td [(the)-180(old)-180(man)-181(asleep)-180(under)-180(a)-180(tree)-180(one)-181(day)-180(when)-180(he)-180(should)-180(have)-180(been)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
303 0 obj <<
/Type /Page
/Contents 304 0 R
/Resources 302 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 283 0 R
>> endobj
302 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
307 0 obj <<
/Length 4501      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(56)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(hunting.)-387(Although)-296(the)-296(Washo)-296(depended)-295(on)-296(ritual)-296(to)-296(assist)-295(them)]TJ 0 -13.549 Td [(in)-378(hunting,)-410(it)-378(is)-378(clear)-378(that)-378(they)-378(considered)-378(a)-378(successful)-377(hunter)]TJ 0 -13.549 Td [(the)-402(possessor)-402(of)-402(power)-403(beyond)-402(simple)-402(magic.)-706(Like)-402(curers)-402(or)]TJ 0 -13.549 Td [(dreamers,)-323(certain)-308(hunters)-308(obviously)-307(had)-308(been)-308(blessed)-308(by)-308(spirits)]TJ 0 -13.55 Td [(and)-384(were)-383(able)-384(to)-383(outthink)-383(and)-384(outsmart)-383(animals)-384(and)-383(therefore)]TJ 0 -13.549 Td [(were)-248(particularly)-248(good)-247(hunters.)-250(At)-247(least)-248(some)-248(of)-248(the)-248(Washo)-247(who)]TJ 0 -13.549 Td [(hunt)-361(today)-362(attempt)-361(to)-362(give)-361(the)-362(impression)-361(that)-362(their)-361(success)-361(is)]TJ 0 -13.549 Td [(based)-250(on)-250(something)-250(more)-250(than)-250(luck)-250(or)-250(skill.)]TJ/F37 10.9091 Tf 11.956 -15.357 Td [(Antelope)]TJ/F16 10.9091 Tf 43.71 0 Td [(\05027a-75\051.)]TJ/F34 10.9091 Tf 40.287 0 Td [(\024)]TJ/F16 10.9091 Tf 10.909 0 Td [(There)-452(are)-452(no)-451(Washo)-452(alive)-452(today)-452(who)]TJ -106.862 -13.549 Td [(can)-367(remember)-367(antelope)-367(surrounds.)-600(It)-367(appears)-367(that)-367(most)-367(of)-366(the)]TJ 0 -13.549 Td [(Washo)-318(territory)-319(was)-318(not)-318(inhabited)-318(by)-318(antelope,)-336(lying)-318(as)-318(it)-318(does)]TJ 0 -13.549 Td [(between)-276(the)-276(northern)-276(and)-552(southern)-276(ranges)-276(of)-276(the)-276(Nevada)-275(herds.)]TJ/F16 7.9701 Tf -72.755 0 Td [([380])]TJ/F16 10.9091 Tf 72.755 -13.55 Td [(However,)-268(small)-264(herds)-264(did)-265(range)-264(in)-264(the)-265(eastern)-264(portion)-264(of)-264(Washo)]TJ 0 -13.549 Td [(country,)-248(but)-248(the)-247(appearance)-247(of)-248(firearms)-247(and)-248(livestock)-247(eliminated)]TJ 0 -13.549 Td [(the)-413(antelope)-413(completely)-414(in)-413(this)-413(area.)-739(One)-414(i)1(nformant,)-454(himself)]TJ 0 -13.549 Td [(seventy-five,)-313(remembers)-300(stories)-300(about)-300(the)-300(hunts,)-313(told)-300(to)-300(him)-300(by)]TJ 0 -13.549 Td [(a)-250(very)-250(old)-250(brother-in-law)-250(who)-250(remembered)-250(the)-250(antelope)-250(songs.)]TJ 11.956 -15.357 Td [(Another)-628(informant,)-723(generally)-629(a)-628(good)-629(source)-628(of)-628(hunting)]TJ -11.956 -13.549 Td [(information,)-600(admitted)-530(that)-529(he)-530(did)-530(not)-530(know)-530(anything)-529(about)]TJ 0 -13.549 Td [(the)-278(subject.)-334(He)-277(had)-278(never)-278(hunted)-278(antelope,)-285(nor)-278(had)-278(his)-278(father)-277(or)]TJ 0 -13.55 Td [(uncles.)]TJ 11.956 -15.356 Td [(The)-341(signal)-341(to)-341(hunt)-342(was)-341(a)-341(dream)-341(announcing)-341(the)-341(presence)-341(of)]TJ -11.956 -13.549 Td [(antelope)-408(to)-408(a)-408(dreamer,)-447(who)-408(acted)-408(as)-408(leader)-408(of)-408(the)-408(hunt.)-723(The)]TJ 0 -13.55 Td [(entire)-365(process)-365(was)-365(considered)-365(to)-365(be)-365(magical)-365(by)-365(this)-364(informant)]TJ 0 -13.549 Td [(who)-250(said:)]TJ/F34 9.8629 Tf 19.637 -31.677 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(There)-263(was)-263(really)-264(no)-263(corral.)-290(Mebbe)-263(just)-263(a)-263(few)-264(piles)-263(of)-263(brush.)]TJ -4.379 -12.822 Td [(The)-299(people)-299(just)-299(danced)-299(around)-299(and)-300(sang,)-311(and)-299(that)-299(kept)-299(them)]TJ 0 -12.822 Td [(antelope)-395(there)-395(like)-394(they)-395(was)-395(hypnotized.)-685(They)-394(could)-395(keep)]TJ 0 -12.822 Td [(them)-312(right)-312(there)-312(all)-312(night)-312(that)-313(way.)-436(After)-312(they)-312(held)-312(them)-312(all)]TJ 0 -12.821 Td [(night)-366(they'd)-366(start)-366(to)-366(slaughter)-366(at)-366(sunrise.)-597(They'd)-366(sing:)]TJ/F34 9.8629 Tf 224.383 0 Td [(\030)]TJ/F16 9.8629 Tf 3.284 0 Td [(We)]TJ -227.667 -12.822 Td [(aren't)-261(doing)-261(this)-260(for)-261(meanness)-261(or)-261(for)-260(fun)-261(but)-261(we)-261(want)-260(you)-261(for)]TJ 0 -12.822 Td [(fine)-256(food,)]TJ/F34 9.8629 Tf 38.408 0 Td [(\031)]TJ/F16 9.8629 Tf 5.81 0 Td [(or)-256(something)-256(like)-257(that.)-268(I)-256(heard)-256(the)-256(song)-257(once)-256(but)-256(I)]TJ -44.218 -12.822 Td [(never)-250(learned)-250(it)-250(all.)-250(I)-250(wish)-250(I)-250(had,)-250(now.)]TJ/F34 9.8629 Tf 149.828 0 Td [(\035)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
306 0 obj <<
/Type /Page
/Contents 307 0 R
/Resources 305 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 283 0 R
>> endobj
308 0 obj <<
/D [306 0 R /XYZ 207.977 367.326 null]
>> endobj
305 0 obj <<
/Font << /F16 7 0 R /F37 75 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
311 0 obj <<
/Length 4744      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Hunting)-21446(57)]TJ
0 g 0 G
 11.956 -30.759 Td [(This)-352(informant)-352(was)-352(certain)-353(that)-352(the)-352(Washo)-352(did)-352(not)-352(expect)-352(a)]TJ -11.956 -13.549 Td [(person)-234(to)-233(die)-234(as)-234(a)-233(result)-234(of)-233(the)-234(exercise)-234(of)-233(antelope)-234(charming.)-244(He)]TJ 0 -13.549 Td [(had)-310(heard)-310(of)-309(other)-310(tribes)-310(which)-310(believed)-309(this,)-325(and)-310(he)-310(thought)-309(it)]TJ 0 -13.549 Td [(peculiar)-353(\050Steward)-352(1941:)-455(218-220\051.)-558(This)-353(explanation)-352(compares)]TJ 0 -13.55 Td [(favorably)-237(with)-236(the)-237(culture)-237(element)-236(distribution)-237(lists)-237(presented)-236(by)]TJ 0 -13.549 Td [(Stewart,)-296(which)-287(reported)-287(none)-286(of)-287(the)-287(traits)-287(usually)-287(considered)-286(as)]TJ 0 -13.549 Td [(part)-241(of)-242(the)-241(shaman)-241(complex)-241(in)-242(antelope)-241(hunting)-241(common)-241(among)]TJ 0 -13.549 Td [(Basin)-250(Shoshone)-250(and)-250(Paiute.)-250(\050Stewart)-250(1941;)-250(Steward)-250(1941.\051)]TJ/F37 10.9091 Tf 11.956 -16.004 Td [(Rabbits)]TJ/F16 10.9091 Tf 37.571 0 Td [(\05092-96\051.)]TJ/F34 10.9091 Tf 35.444 0 Td [(\024)]TJ/F16 10.9091 Tf 10.909 0 Td [(The)-388(pursuit)-388(of)-388(the)-388(jack)-388(rabbit)-388(appears)-388(to)]TJ -95.88 -13.549 Td [(have)-374(been)-374(changing)-375(in)-374(its)-374(importance)-374(during)-374(the)-374(past)-374(century.)]TJ 0 -13.55 Td [(Several)-182(informants)-182(recall)-183(being)-182(told)-182(in)-182(their)-183(youth)-182(by)-182(old)-182(men)-182(that)]TJ 0 -13.549 Td [(often)-220(only)-220(the)-220(hides)-220(were)-220(stripped)-220(from)-220(rabbits)-220(to)-220(make)-220(blankets,)]TJ 0 -13.549 Td [(but)-423(that)-423(most)-423(of)-423(the)-423(meat)-423(was)-423(discarded)-423(because)-423(other)-422(game)]TJ 0 -13.549 Td [(was)-386(plentiful.)-659(However,)-420(firearms)-387(and)-386(agriculture)-386(soon)-386(put)-386(an)]TJ 0 -13.549 Td [(end)-300(to)-301(antelope)-300(hunting,)-313(and)-300(the)-300(trans-Sierran)-300(region,)-313(like)-300(most)]TJ 0 -13.55 Td [(of)-352(the)-352(nation,)-378(suffered)-352(a)-352(steady)-352(decline)-351(in)-352(the)-352(number)-352(of)-352(deer.)]TJ 0 -13.549 Td [(All)-323(informants)-322(agree)-323(that)-323(in)-322(their)-323(own)-323(youth)-322(trips)-323(to)-322(California)]TJ 0 -13.549 Td [(after)-427(deer)-428(were)-427(necessary)-428(because)-427(there)-427(were)-428(almost)-427(no)-427(deer)]TJ 0 -13.549 Td [(east)-406(of)-405(the)-406(Sierra.)-717(All)-406(Indians)-406(agree)-405(that)-406(the)-406(deer)-405(population)]TJ 0 -13.549 Td [(in)-334(Nevada)-334(today)-334(is)-334(far)-334(greater)-334(than)-334(it)-334(was)-334(in)-334(the)-334(early)-334(years)-334(of)]TJ 0 -13.55 Td [(this)-286(century.)-357(The)-286(decrease)-285(in)-286(antelope)-286(and)-285(deer)-286(forced)-286(a)-285(greater)]TJ 0 -13.549 Td [(dependence)-264(on)-263(the)-264(jack)-263(rabbit)-264(as)-263(a)-264(source)-264(of)-263(food)-264(as)-263(well)-264(as)-263(fur.)]TJ 0 -13.549 Td [(The)-223(communal)-223(nature)-223(of)-222(the)-223(rabbit)-223(hunt)-223(may)-223(have)-223(made)-222(possible)]TJ 0 -13.549 Td [(a)-273(gradual)-272(transference)-273(of)-272(ritual)-273(traits)-273(from)-272(the)-273(antelope)-272(complex)]TJ 0 -13.549 Td [(to)-250(the)-250(rabbit)-250(hunt.)]TJ 11.956 -16.004 Td [(Traditionally)-438(the)-437(Washo)-438(drove)-437(rabbits)-438(into)-437(nets,)-485(a)-437(method)]TJ -11.956 -13.549 Td [(common)-374(in)-374(the)-373(Basin.)-622(Stewart's)-373(notes,)-405(taken)-374(from)-373(informants)]TJ 0 -13.55 Td [(in)-275(their)-275(seventies)-275(in)-275(1936,)-281(make)-275(no)-275(mention)-275(of)-275(any)-274(supernatural)]TJ 0 -13.549 Td [(aspect)-176(of)-177(the)-176(rabbit)-176(drive.)-226(Evening)-176(dancing)-176(during)-177(the)-176(rabbit)-176(drive)]TJ 0 -13.549 Td [(was)-299(denied.)-398(There)-299(was,)-312(however,)-311(a)-300(special)-299(leader)-299(who)-299(directed)]TJ 0 -13.549 Td [(the)-308(hunt.)-426(In)-308(later)-309(times)-308(these)-309(men)-308(were)-309(credited)-308(with)-308(dreaming)]TJ 0 -13.549 Td [(power,)-285(as)-277(this)-278(quotation)-278(illustrates:)]TJ/F34 10.9091 Tf 157.039 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(Jack)-278(Wallace)-277(would)-278(dream)]TJ -161.883 -13.55 Td [(where)-186(the)-186(rabbits)-185(were)-186(and)-186(when)-186(it)-186(was)-185(time)-186(for)-186(hunting)-186(he)-185(would)]TJ 0 -13.549 Td [(send)-337(out)-336(a)-337(call.)]TJ/F34 10.9091 Tf 68.275 0 Td [(\035)]TJ/F16 10.9091 Tf 8.514 0 Td [(The)-337(man)-336(mentioned)-336(was)-337(described)-336(as)-337(the)-336(last)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
310 0 obj <<
/Type /Page
/Contents 311 0 R
/Resources 309 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 312 0 R
>> endobj
309 0 obj <<
/Font << /F16 7 0 R /F37 75 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
315 0 obj <<
/Length 5189      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(58)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(of)-238(the)-237(real)-238(dreamers.)-246(This)-237(power)-238(made)-237(him)-238(extremely)-237(influential)]TJ 0 -13.549 Td [(among)-376(the)-375(Washo,)-407(and)-375(his)-376(descendants)-375(are)-376(considered)-375(among)]TJ 0 -13.549 Td [(the)-270(claimants)-269(for)-270(the)]TJ/F34 10.9091 Tf 92.961 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(chieftainship.)]TJ/F34 10.9091 Tf 59.083 0 Td [(\035)]TJ/F16 10.9091 Tf 7.785 0 Td [(There)-270(appear)-269(to)-270(have)-269(been)]TJ -164.673 -13.549 Td [(formalized)-373(prayers)-373(which)-373(were)-374(said)-373(before)-373(the)-373(hunt)-373(by)-373(a)-373(man)]TJ 0 -13.55 Td [(with)-250(power)-250(over)-250(rabbits.)]TJ 11.956 -13.751 Td [(Today,)-447(rabbit)-407(hunts)-407(are)-408(invariably)-407(held)-408(on)-407(Sunday.)-722(In)-407(the)]TJ -11.956 -13.549 Td [(words)-252(of)-252(one)-252(informant:)]TJ/F34 10.9091 Tf 108.586 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(Nowadays)-252(anybody)-252(can)-252(just)-253(say)]TJ/F34 10.9091 Tf 142.818 0 Td [(\030)]TJ/F16 10.9091 Tf 3.633 0 Td [(Let's)]TJ -259.881 -13.549 Td [(have)-228(a)-229(hunt)-228(this)-228(Sunday.)]TJ/F34 10.9091 Tf 106.018 0 Td [(\031)]TJ/F16 7.9701 Tf 3.632 3.958 Td [(9)]TJ/F16 10.9091 Tf 6.974 -3.958 Td [(They)-228(have)-229(to)-228(hunt)-228(on)-229(Sunday)-228(because)]TJ -116.624 -13.55 Td [(most)-250(of)-250(the)-250(men)-250(have)-250(jobs)-250(during)-250(the)-250(week.)]TJ/F34 10.9091 Tf 190.582 0 Td [(\035)]TJ/F16 10.9091 Tf -178.627 -13.751 Td [(The)-350(disintegration)-350(of)-349(the)-350(ritualized)-350(aspects)-350(of)-350(rabbit)-350(driving)]TJ -11.955 -13.549 Td [(is)-298(not)-298(complete,)-311(however,)-310(and)-298(many)-299(Washo)-298(prefer)-298(to)-298(hunt)-298(with)]TJ 0 -13.549 Td [(a)-402(certain)-402(man)-402(who)-402(lives)-402(in)-402(the)-402(Indian)-402(colony)-402(at)-402(Carson)-401(City.)]TJ 0 -13.55 Td [(While)-287(no)-287(one)-286(will)-287(openly)-287(claim)-286(that)-287(he)-287(has)-287(supernatural)-286(power,)]TJ 0 -13.549 Td [(it)-240(seems)-240(clear)-239(that)-240(his)-240(presence)-240(is)-240(important)-239(to)-240(other)-240(Indians.)-246(His)]TJ 0 -13.549 Td [(role)-314(is)-314(that)-314(of)-313(leader)-314(or)-314(captain)-314(who)-314(superintends)-314(the)-314(order)-313(and)]TJ 0 -13.549 Td [(discipline)-342(of)-341(the)-342(line)-341(of)-342(hunters)-342(who)-341(today)-342(sweep)-341(a)-342(wide)-341(area,)]TJ 0 -13.549 Td [(armed)-282(with)-282(shotguns.)-345(D'Azevedo,)-290(who)-282(was)-282(fortunate)-282(enough)-281(to)]TJ 0 -13.55 Td [(take)-276(part)-275(in)-276(a)-275(hunt)-276(in)-275(1955,)-282(states)-276(that)-276(prior)-275(to)-276(the)-275(hunt)-276(this)-275(man)]TJ 0 -13.549 Td [(withdrew)-327(from)-327(the)-327(group.)-482(When)-327(he)-327(asked)-327(what)-327(the)-327(leader)-327(was)]TJ 0 -13.549 Td [(doing)-362(he)-362(met)-361(evasion,)-390(and)-362(he)-361(concluded)-362(that)-362(perhaps)-362(the)-361(man)]TJ 0 -13.549 Td [(was)-272(praying.)-316(In)-271(the)-272(period)-272(covered)-272(by)-272(the)-272(memory)-272(of)-272(my)-271(oldest)]TJ 0 -13.549 Td [(informants,)-381(dances)-356(were)-355(often)-355(staged)-355(nightly)-355(during)-355(the)-355(rabbit)]TJ 0 -13.55 Td [(drives.)-752(The)-417(dancing)-418(is)-417(invariably)-417(described)-418(as)]TJ/F34 10.9091 Tf 218.812 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(just)-417(for)-418(fun)]TJ/F34 10.9091 Tf 52.13 0 Td [(\035)]TJ/F16 10.9091 Tf -275.786 -13.549 Td [(and)-335(probably)-334(was)-335(more)-335(social)-334(than)-335(religious,)-356(but)-335(such)-334(dancing)]TJ 0 -13.549 Td [(appears)-230(to)-229(have)-229(been)-230(part)-229(of)-230(other)-229(ceremonial)-230(or)-229(semiceremonial)]TJ 0 -13.549 Td [(occasions)-261(such)-262(as)-261(the)-262(girls')-261(dances,)-264(first-fish)-262(ceremonies)-261(and)-261(the)]TJ 0 -13.549 Td [(pine-nut)-415(dances.)-744(It)-415(seems)-415(clear)-415(that)-415(whatever)-415(tendency)-414(there)]TJ 0 -13.55 Td [(was)-334(to)-334(shift)-334(the)-333(ritualized)-334(aspects)-334(of)-334(antelope)-334(hunting)-334(to)-333(rabbit)]TJ 0 -13.549 Td [(drives)-212(has)-212(been)-212(stemmed)-212(by)-212(a)-212(growing)-212(dependence)-212(of)-212(the)-211(Washo)]TJ 0 -13.549 Td [(on)-265(wage)-265(labor)-265(which)-265(precludes)-265(their)-265(response)-265(to)-264(dream-inspired)]TJ 0 -13.549 Td [(hunts.)]TJ/F37 10.9091 Tf 11.955 -13.752 Td [(Bear)]TJ/F16 10.9091 Tf 24.011 0 Td [(\050298,)-259(2558-2561\051.)]TJ/F34 10.9091 Tf 79.175 0 Td [(\024)]TJ/F16 10.9091 Tf 10.909 0 Td [(Bear)-257(hunting)-257(appears)-257(never)-257(to)-257(have)]TJ
0 g 0 G
ET
q
1 0 0 1 93.543 87.722 cm
[]0 d 0 J 0.398 w 0 0 m 112.25 0 l S
Q
BT
/F16 5.9776 Tf 99.77 80.91 Td [(9)]TJ/F16 8.9664 Tf 5.729 -3.809 Td [(This)-247(statement)-248(was)-248(made)-247(to)-248(point)-247(out)-248(to)-247(me)-248(that)-247(in)-248(other)-248(times)-247(only)-248(special)]TJ -11.956 -10.959 Td [(people,)-250(inspired)-250(by)-250(dreams,)-250(would)-250(have)-250(suggested)-250(a)-250(rabbit)-250(hunt.)]TJ
0 g 0 G
0 g 0 G
0 g 0 G
ET
endstream
endobj
314 0 obj <<
/Type /Page
/Contents 315 0 R
/Resources 313 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 312 0 R
>> endobj
313 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R /F37 75 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
318 0 obj <<
/Length 4649      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Hunting)-21446(59)]TJ
0 g 0 G
 0 -30.759 Td [(been)-270(a)-270(subsistence)-270(activity)-270(among)-270(the)-270(Washo.)-310(Many)-270(informants)]TJ 0 -13.549 Td [(stoutly)-308(deny)-308(that)-307(bear)-308(meat)-308(was)-308(ever)-308(eaten,)-322(although)-308(bear)-307(were)]TJ 0 -13.549 Td [(hunted.)-393(No)-298(Washo)-297(ever)-298(gave)-298(a)-297(direct)-298(answer)-298(to)-297(the)-298(question)-297(of)]TJ 0 -13.549 Td [(why)-322(they)-322(hunted)-322(bear)-322(if)-323(they)-322(didn't)-322(eat)-322(the)-322(meat.)-466(Others)-322(stated)]TJ 0 -13.55 Td [(that)-251(the)-250(bear)-251(might)-250(be)-251(eaten)-250(in)-251(extreme)-250(starvation)-251(conditions)-250(but)]TJ 0 -13.549 Td [(was)-250(never)-250(eaten)-250(regularly.)]TJ 11.956 -14.008 Td [(On)-185(the)-185(other)-186(hand,)-198(almost)-185(all)-185(Washo)-186(men)-185(were)-185(able)-185(to)-185(describe)]TJ -11.956 -13.549 Td [(in)-178(detail)-178(the)-178(method)-178(of)-178(hunting)-178(and)-178(they)-178(obviously)-178(enjoyed)-178(telling)]TJ 0 -13.549 Td [(bear-hunting)-331(stories.)-495(The)-331(following)-331(story)-332(told)-331(to)-331(me)-332(by)-331(one)-331(of)]TJ 0 -13.55 Td [(the)-359(eldest)-359(men)-359(in)-359(Dresslerville,)-386(who)-359(claims)-359(it)-359(was)-359(told)-359(to)-358(him)]TJ 0 -13.549 Td [(by)-361(a)-362(very)-361(old)-362(man,)-389(is)-361(consistent)-362(with)-361(the)-361(stories)-362(told)-361(by)-361(other)]TJ 0 -13.549 Td [(informants.)]TJ/F34 9.8629 Tf 19.637 -24.935 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(There)-403(was)-403(hardly)-403(any)-403(Washo)-404(who)-403(kill)-403(bear.)-709(But)-403(I)-403(know)]TJ -4.379 -12.821 Td [(this)-333(much)-334(...)-500(the)-333(man)-333(who)-334(went)-333(in)-333(there)-334(and)-333(did)-333(it)-334(tells)-333(me)]TJ 0 -12.822 Td [(...)-547(bears)-350(have)-349(their)-349(own)-349(home)-349(in)-349(the)-349(rocks)-349(...)-548(a)-349(hole)-349(going)]TJ 0 -12.822 Td [(in)-300(the)-301(rocks.)-400(Go)-301(in)-300(there)-300(naked)-300(with)-301(a)-300(knife)-300(or)-301(arrow)-300(in)-300(one)]TJ 0 -12.822 Td [(hand)-325(and)-325(burning)-325(pitch)-324(in)-325(other)-325(...)-475(light)-325(scares)-324(him)-325(out)-325([the)]TJ 0 -12.822 Td [(bear],)-236(then)-232(other)-232(men)-232(shoot)-232(the)-232(bear)-233(in)-232(the)-232(mouth)-232(with)-232(poison)]TJ 0 -12.821 Td [(arrow)-334([see)-334(deer)-334(hunting)-333(for)-334(reference)-334(to)-334(poison])-334(...)-501(get)-334(sick)]TJ 0 -12.822 Td [(for)-248(four)-248(or)-248(five)-248(days,)-249(maybe)-248(a)-248(week.)-249(Then)-248(the)-248(man)-248(goes)-248(back)]TJ 0 -12.822 Td [(in.)-420(Hardly)-306(any)-307(Indians)-306(could)-307(do)-306(this.)]TJ/F16 6.904 Tf 148.556 3.615 Td [(10)]TJ/F16 9.8629 Tf 15.677 -3.615 Td [(I've)-307(heard)-306(that)-307(they)]TJ/F16 7.9701 Tf 107.154 0 Td [([381])]TJ/F16 9.8629 Tf -271.387 -12.822 Td [(cook)-255(it)-254(and)-255(eat)-255(it)-255(...)-264(not)-255(only)-254(here)-255(but)-255(up)-255(north.)-264(After)-254(they)-255(get)]TJ 0 -12.822 Td [(the)-281(rifle)-280(they)-281(get)-281(to)-280(killing)-281(bears)-281(around)-280(here)-281(but)-280(h)-1(ardly)-280(ever)]TJ 0 -12.822 Td [(hear)-250(of)-250(dividing)-250(up)-250(the)-250(bear)-250(meat.)]TJ/F34 9.8629 Tf 133.396 0 Td [(\035)]TJ/F16 10.9091 Tf -141.077 -25.662 Td [(This)-385(last)-385(remark)-385(appears)-385(to)-385(be)-385(significant)-385(as)-385(all)-385(informants)]TJ -11.956 -13.549 Td [(emphasized)-315(that)-314(Indians)-315(shared)-314(food)-315(equally.)-443(Thus)-315(a)-314(statement)]TJ 0 -13.549 Td [(made)-192(voluntarily)-192(that)-193(bear)-192(meat)-192(was)-192(not)-192(shared)-192(suggests)-192(different)]TJ 0 -13.549 Td [(attitudes)-250(about)-250(bears.)]TJ 11.956 -14.008 Td [(Another)-302(informant)-302(adds)-302(the)-303(detail)-302(that)-302(when)-302(the)-302(bear)-302(left)-302(his)]TJ -11.956 -13.549 Td [(lair,)-213(the)-205(companions)-204(of)-204(the)-205(man)-204(who)-204(entered)-205(the)-204(den)-204(would)-204(block)]TJ
0 g 0 G
ET
q
1 0 0 1 46.771 98.681 cm
[]0 d 0 J 0.398 w 0 0 m 112.25 0 l S
Q
BT
/F16 5.9776 Tf 50.009 91.869 Td [(10)]TJ/F16 8.9664 Tf 8.718 -3.809 Td [(This)-164(kind)-164(of)-164(a)-164(statement)-164(was)-164(common)-164(and)-164(whenever)-164(it)-165(was)-164(made)-164(suggestions)]TJ -11.956 -10.959 Td [(of)-259(special)-259(power)-259(were)-259(made)-259(explicit)-259(later)-259(in)-260(the)-259(conversation,)-261(or)-259(were)-259(implied)]TJ 0 -10.959 Td [(by)-250(the)-250(attitude)-250(of)-250(the)-250(informant.)]TJ
0 g 0 G
0 g 0 G
0 g 0 G
ET
endstream
endobj
317 0 obj <<
/Type /Page
/Contents 318 0 R
/Resources 316 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 312 0 R
>> endobj
319 0 obj <<
/D [317 0 R /XYZ 226.504 241.166 null]
>> endobj
316 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
322 0 obj <<
/Length 4630      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(60)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(the)-276(entrance)-277(so)-276(the)-277(bear)-276(could)-276(not)-277(return.)-329(The)-276(first)-277(man)-276(to)-276(place)]TJ 0 -13.549 Td [(an)-399(arrow)-399(in)-400(the)-399(animal)-399(could)-399(claim)-399(it)-399(and)-400(get)-399(the)-399(hide.)-697(This)]TJ 0 -13.549 Td [(informant)-279(also)-280(added)-279(at)-280(this)-279(point:)]TJ/F34 10.9091 Tf 154.359 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(It's)-279(funny)-280(that)-279(the)-279(fella)-280(who)]TJ -159.203 -13.549 Td [(went)-225(inside)-226(was)]TJ/F37 10.9091 Tf 71.611 0 Td [(just)-225(an)-226(ordinary)-225(fella)]TJ/F16 10.9091 Tf 94.088 0 Td [([emphasis)-225(mine].)]TJ/F34 10.9091 Tf 74.874 0 Td [(\035)]TJ/F16 10.9091 Tf 7.303 0 Td [(He)-225(also)]TJ -247.876 -13.55 Td [(insisted)-203(that)-202(after)-203(a)-202(bear)-203(was)-203(killed)-202(the)-203(hunting)-202(party)-203(painted)-202(their)]TJ 0 -13.549 Td [(faces)-224(black.)-241(Other)-224(informants)-223(claimed)-224(not)-224(to)-224(know)-223(of)-224(this)-224(or)-223(said)]TJ 0 -13.549 Td [(such)-255(painting)-255(was)-255(done)-255(when)-255(a)-255(mink)-255(was)-255(killed)-255(but)-255(they)-255(did)-254(not)]TJ 0 -13.549 Td [(know)-250(why.)]TJ 11.956 -14.777 Td [(One)-403(traditional)-404(story)-403(\050Dangberg\051)-404(sheds)-403(a)-404(bit)-403(more)-404(light)-403(on)]TJ -11.956 -13.549 Td [(the)-407(bear.)-723(In)-407(this)-408(tale)-407(a)-408(group)-407(of)-408(Washo)-407(were)-408(camped)-407(near)-407(a)]TJ 0 -13.549 Td [(band)-355(of)-354(Paiute)-355(who)-355(challenged)-355(the)-354(Washo)-355(to)-355(fight.)-564(Instead)-354(of)]TJ 0 -13.549 Td [(fighting,)-333(the)-316(Washo)-316(drove)-317(a)-316(bear)-316(from)-316(its)-316(den)-317(and)-316(killed)-316(it)-316(and)]TJ 0 -13.55 Td [(thus)-250(defeated)-250(the)-250(Paiute.)]TJ 11.956 -14.776 Td [(I)-300(had)-301(all)-300(but)-300(given)-300(up)-301(the)-300(pursuit)-300(of)-301(information)-300(on)-300(the)-300(bear,)]TJ -11.956 -13.549 Td [(being)-204(convinced)-204(that)-205(my)-204(informants)-204(either)-204(honestly)-204(did)-204(not)-204(know)]TJ 0 -13.55 Td [(any)-360(more)-359(\050the)-360(bear)-359(having)-359(been)-360(relatively)-359(rare)-360(in)-359(this)-360(area)-359(for)]TJ 0 -13.549 Td [(a)-334(good)-334(many)-334(years\051)-333(or)-334(were)-334(unwilling)-334(to)-334(discuss)-334(something)-333(of)]TJ 0 -13.549 Td [(an)-287(extremely)-287(sacred)-288(nature,)-296(when)-288(a)-287(chance)-287(remark)-287(suggested)-287(at)]TJ 0 -13.549 Td [(least)-250(part)-250(of)-250(the)-250(explanation.)]TJ 11.956 -14.777 Td [(A)-406(pioneer)-407(white)-406(resident)-407(who)-406(had)-407(lived)-406(in)-407(Alpine)-406(County,)]TJ -11.956 -13.549 Td [(California,)-237(for)-233(ninety)-233(years)-233(casually)-233(mentioned)-233(that)-233(every)-233(Indian)]TJ 0 -13.549 Td [(man)-467(who)-468(was)-467(buried)-467(during)-467(his)-467(boyhood)-468(was)-467(wrapped)-467(in)-467(a)]TJ 0 -13.549 Td [(bearskin)-522(shroud.)-1064(This,)-590(coupled)-521(with)-522(an)-521(earlier)-522(mention)-521(of)]TJ/F34 10.9091 Tf 0 -13.549 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(rough)]TJ/F34 10.9091 Tf 25.451 0 Td [(\035)]TJ/F16 10.9091 Tf 7.361 0 Td [(men)-231(having)-231(bearskins,)-234(suggests)-231(that)-231(the)-230(killing)-231(of)-231(a)-231(bear)]TJ -37.656 -13.55 Td [(represented)-248(the)-247(ultimate)-248(in)-248(Washo)-248(bravery)-247(and)-248(the)-248(possession)-247(of)]TJ 0 -13.549 Td [(the)-355(skin)-355(conferred)-355(extra)-355(powers)-355(on)-355(the)-355(owner.)-565(The)-355(rifle)-354(made)]TJ 0 -13.549 Td [(such)-254(acquisitions)-253(much)-254(less)-254(hazardous)-254(and)-253(in)-254(the)-254(late)-253(nineteenth)]TJ 0 -13.549 Td [(century)-367(it)-368(had)-367(become)-367(common)-368(for)-367(Indians)-367(to)-368(own)-367(a)-367(bearskin)]TJ 0 -13.549 Td [(cloak,)-200(which)-188(became)-187(their)-188(most)-188(prized)-187(possession)-188(and)-188(was)-187(buried)]TJ 0 -13.55 Td [(with)-250(them.)]TJ 11.956 -14.776 Td [(Stewart's)-369(element)-369(lists)-369(show)-369(no)-369(evidence)-369(of)-369(any)-369(formalized)]TJ -11.956 -13.549 Td [(bear)-427(cult)-426(among)-427(the)-426(Washo.)-780(However,)-470(Smith's)-427(notes,)-470(which)]TJ 0 -13.55 Td [(Stewart)-407(used,)-447(report)-407(a)-407(bear)-407(shaman)-407(who)-407(impersonated)-407(a)-407(bear)]TJ 0 -13.549 Td [(\0502558\051.)-303(Certainly)-267(the)-268(bear)-267(was)-268(one)-268(of)-267(the)-268(spirits)-267(who)-268(could)-267(give)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
321 0 obj <<
/Type /Page
/Contents 322 0 R
/Resources 320 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 312 0 R
>> endobj
320 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R /F37 75 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
323 0 obj
<< /S /GoTo /D (index24) >>
endobj
326 0 obj
(Fishing (252a-296))
endobj
329 0 obj <<
/Length 3907      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Fishing)-250(\050252a-296\051)-17030(61)]TJ
0 g 0 G
 0 -30.759 Td [(power)-285(to)-286(a)-285(man)-285(destined)-285(to)-286(become)-285(a)-285(shaman.)-356(Bear)-285(shamanism)]TJ 0 -13.549 Td [(is)-373(reported)-372(only)-373(for)-373(the)-372(Fish)-373(Spring)-373(Valley)-372(Paiute)-373(by)-372(Steward)]TJ 0 -13.549 Td [(and)-313(for)-313(the)-314(Tago)-313(and)-313(Wada)-313(Northern)-313(Paiute)-314(by)-313(Stewart.)-439(These)]TJ 0 -13.549 Td [(three)-438(groups)-439(constitute)-438(the)-438(only)-439(ones)-438(having)-438(formalized)-438(bear)]TJ 0 -13.55 Td [(ceremonialism)-349(of)-349(any)-349(sort)-349(in)-348(the)-349(Basin.)-547(The)-349(bear)-349(dance)-349(and)-348(a)]TJ 0 -13.549 Td [(note)-370(about)-369(impersonating)-370(bears)-369(\050Steward)-370(1941,)-399(pp.)-609(266,)-399(322\051)]TJ 0 -13.549 Td [(suggest)-265(that)-264(formalized)-265(bear)-265(ceremonialism)-264(came)-265(into)-265(the)-264(Basin)]TJ 0 -13.549 Td [(from)-283(the)-284(Rocky)-283(Mountains)-284(via)-283(the)-283(Ute)-284(and)-283(Bannock.)-350(However,)]TJ 0 -13.549 Td [(Kroeber)-314(reports)-314(awe)-314(of)-314(the)-314(bear,)-330(special)-314(euphemisms)-314(for)-314(them,)]TJ 0 -13.55 Td [(and)-424(ritualized)-425(secrecy)-424(about)-424(hunting)-425(them)-424(among)-424(the)-424(Miwok)]TJ 0 -13.549 Td [(which)-492(seem)-493(more)-492(closely)-493(related)-492(to)-493(Washo)-492(behavior.)-977(Bear)]TJ 0 -13.549 Td [(impersonators)-310(among)-311(the)-310(Battle)-310(Mountain)-311(Paiute)-310(were)-310(credited)]TJ 0 -13.549 Td [(with)-351(invulnerability)-350(in)-351(war,)-376(which)-351(is)-351(reminiscent)-350(of)-351(the)-351(use)-350(of)]TJ 0 -13.549 Td [(a)-409(bear-hide)-409(cloak)-409(by)-409(Washo)]TJ/F34 10.9091 Tf 133.175 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(rough)-409(men.)]TJ/F34 10.9091 Tf 51.425 0 Td [(\035)]TJ/F16 10.9091 Tf 9.305 0 Td [(Although)-409(it)-409(is)-409(not)]TJ -198.749 -13.55 Td [(possible)-289(to)-290(make)-289(any)-290(conclusive)-289(statement)-290(about)-289(the)-290(role)-289(of)-289(the)]TJ 0 -13.549 Td [(bear)-248(in)-249(the)-248(supernatural)-248(life)-249(of)-248(the)-248(Washo,)-249(it)-248(seems)-249(clear)-248(that)-248(the)]TJ 0 -13.549 Td [(animal)-250(is)-250(held)-250(in)-250(special)-250(awe)-250(and)-250(esteem)-250(by)-250(modern)-250(Indians.)]TJ/F16 15.7808 Tf 0 -66.048 Td [(Fishing)-250(\050252a-296\051)]TJ/F16 10.9091 Tf 0 -33.706 Td [(Fishing)-464(appears)-463(to)-464(be)-463(far)-464(less)-463(subject)-463(to)-464(ritualization)-463(among)]TJ 0 -13.549 Td [(the)-535(Washo)-536(than)-535(was)-536(hunting.)-1106(Here)-535(again)-535(there)-536(may)-535(be)-535(a)]TJ 0 -13.549 Td [(correspondence)-310(between)-309(the)-310(amount)-310(of)-310(ritual)-309(and)-310(the)-310(degree)-309(of)]TJ 0 -13.549 Td [(certainty)-218(involved)-217(in)-218(obtaining)-217(the)-218(desired)-217(food.)-239(The)-218(Washo)-217(area)]TJ 0 -13.55 Td [(is)-345(rated)-345(by)-345(Rostlund)-345(as)-345(being)-345(one)-345(of)-345(the)-345(higher)-344(fish-producing)]TJ 0 -13.549 Td [(areas)-285(in)-284(North)-284(America.)-354(Certainly)-284(the)-285(many)-284(lakes,)-293(streams,)-293(and)]TJ 0 -13.549 Td [(rivers)-176(were)-175(the)-176(source)-176(of)-176(great)-175(amounts)-176(of)-176(fish)-176(every)-175(year.)-225(Indians)]TJ 0 -13.549 Td [(who)-225(could)-225(at)-225(most)-226(be)-225(described)-225(as)-225(only)-225(middle-aged,)-230(recount)-225(the)]TJ 0 -13.549 Td [(tremendous)-365(numbers)-365(of)-365(fish)-364(which)-365(swept)-365(up)-365(the)-365(streams)-364(from)]TJ 0 -13.55 Td [(Lake)-403(Tahoe)-404(during)-403(the)-404(spawning)-403(season.)-711(While)-403(the)-403(numbers)]TJ 0 -13.549 Td [(may)-244(have)-243(varied)-244(from)-244(year)-243(to)-244(year,)-245(the)-244(large)-243(number)-244(of)-244(fish)-243(plus)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
328 0 obj <<
/Type /Page
/Contents 329 0 R
/Resources 327 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 312 0 R
>> endobj
324 0 obj <<
/D [328 0 R /XYZ 46.771 273.634 null]
>> endobj
327 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
330 0 obj
<< /S /GoTo /D (index25) >>
endobj
333 0 obj
(Miscellaneous Concepts About Hunting And Fishing)
endobj
336 0 obj <<
/Length 4706      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(62)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(the)-389(intensive)-390(fishing)-389(methods)-389(employed)-390(by)-389(the)-389(Washo)-389(almost)]TJ 0 -13.549 Td [(guarantee)-250(a)-250(large)-250(catch.)]TJ 11.956 -16.004 Td [(However,)-447(d'Azevedo)-407(reports)-407(that)-408(Northern)-407(Washo)-407(describe)]TJ -11.956 -13.549 Td [(some)-483(degree)-483(of)-484(ritualism)-483(connected)-483(with)-483(fishing)-483(\050d'Azevedo)]TJ 0 -13.549 Td [(personal)-325(communication\051.)-475(Dreamers)-325(are)-325(said)-325(to)-325(have)-325(predicted)]TJ 0 -13.55 Td [(the)-424(day)-425(of)-424(the)-425(spawning)-424(run.)-773(Dances)-424(were)-425(held)-424(and)-424(prayers)]TJ 0 -13.549 Td [(said,)-255(suggesting)-255(a)-254(rather)-254(attenuated)-255(first-fish)-254(ceremony)-254(for)-254(some)]TJ 0 -13.549 Td [(of)-364(the)-365(Washo)-364(\0502618\051.)-593(Other)-364(Washo)-365(report)]TJ/F34 10.9091 Tf 196.023 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(big)-364(times,)]TJ/F34 10.9091 Tf 44.283 0 Td [(\035)]TJ/F16 10.9091 Tf 8.818 0 Td [(which)]TJ -253.968 -13.549 Td [(included)-281(dancing)-281(and)-280(prayer,)-289(during)-280(the)-281(spring)-281(gathering)-281(on)-280(the)]TJ 0 -13.549 Td [(lake.)-242(However,)-231(in)-226(the)-226(actual)-226(catching)-227(of)-226(fish)-226(there)-226(was)-226(much)-226(less)]TJ 0 -13.55 Td [(ritual.)]TJ 11.956 -16.004 Td [(Some)-218(fishermen)-218(carried)-218(a)-218(fishing)-218(medicine)-218(composed)-218(of)-218(dried)]TJ -11.956 -13.549 Td [(larvae)-324(of)-324(the)]TJ/F37 10.9091 Tf 59.666 0 Td [(Ephydra)-324(hians)]TJ/F16 10.9091 Tf 68.276 0 Td [(\050Say\051,)-342(called)]TJ/F37 10.9091 Tf 59.673 0 Td [(kutsavi)]TJ/F16 10.9091 Tf 34.438 0 Td [(by)-324(the)-324(Paiute)]TJ -222.053 -13.549 Td [(\050Heizer)-392(1950\051)-392(and)]TJ/F37 10.9091 Tf 86.743 0 Td [(matsi)-392(baba)]TJ/F38 10.9091 Tf 49.736 0 Td [(a)]TJ/F37 10.9091 Tf 4.243 0 Td [(a)]TJ/F16 10.9091 Tf 9.732 0 Td [(by)-392(the)-392(Washo.)-677(These)-392(larvae)]TJ -150.454 -13.549 Td [(were)-347(obtained)-346(from)-347(the)-346(Mono)-347(Lake)-347(Paiute)-346(in)-347(trade)-346(or)-347(as)-346(gifts.)]TJ 0 -13.549 Td [(They)-417(were)-418(considered)-417(good)-418(food)-417(and)-418(are)-417(still)-418(eaten)-417(by)-417(some)]TJ 0 -13.55 Td [(Washo.)-642(However,)-414(in)-381(addition)-380(they)-381(were)-381(credited)-381(with)-380(having)]TJ 0 -13.549 Td [(great)-327(powers)-326(to)-327(lure)-327(fish)-326(and)-327(were)-326(rubbed)-327(on)-327(harpoons,)-345(hooks,)]TJ 0 -13.549 Td [(and)-296(lines.)-388(Perhaps)-296(this)-296(material)-296(was)-296(considered)-296(a)-296(fish)-296(medicine)]TJ 0 -13.549 Td [(because)-294(these)-294(larvae)-294(are)-294(said)-294(to)-294(be)-294(generated)-294(from)-294(the)-294(scales)-293(of)]TJ 0 -13.549 Td [(a)-299(giant)-299(fish.)-398(This)-299(leviathan)-299(is)-299(reported)-299(to)-299(have)-299(traveled)-299(through)]TJ 0 -13.55 Td [(all)-302(the)-301(lakes)-302(in)-302(the)-301(Sierran)-302(area)-301(looking)-302(for)-302(a)-301(lake)-302(large)-301(enough)]TJ 0 -13.549 Td [(in)-300(which)-300(to)-300(live.)-400(At)-300(Mono)-300(Lake)-300(it)-300(scraped)-300(some)-300(scales)-300(int)1(o)-300(the)]TJ 0 -13.549 Td [(water)-410(before)-410(it)-410(left)-409(to)-410(find)-410(a)-410(permanent)-410(home)-410(in)-410(Lake)-409(Tahoe)]TJ 0 -13.549 Td [(\050Steward)-367(1936\051.)-600(Whether)-367(the)-367(Washo)-366(share)-367(this)-367(story)-367(with)-366(the)]TJ 0 -13.549 Td [(Owens)-331(Valley)-330(Paiute,)-351(I)-331(do)-331(not)-330(know,)-351(but)-331(Mono)-331(Lake,)-350(because)]TJ 0 -13.549 Td [(of)-260(its)-260(saline)-260(water)-260(and)-260(its)-260(lack)-260(of)-261(any)-260(fish)-260(life,)-262(is)-260(thought)-260(of)-260(with)]TJ 0 -13.55 Td [(some)-240(fear)-240(and)-240(awe.)-247(Today)-240(I)-240(get)-240(the)-240(impression)-240(that)-239(some)-240(Washo)]TJ 0 -13.549 Td [(still)-310(keep)-309(a)-310(bit)-309(of)-310(this)-310(material)-309(with)-310(their)-309(fishing)-310(gear,)-324(although)]TJ 0 -13.549 Td [(they)-309(are)-308(apt)-309(to)-309(rational)1(ize)-309(it)-309(as)-308(a)-309(lure)-309(rather)-308(than)-309(real)-308(medicine.)]TJ 0 -13.549 Td [(It)-459(should)-459(be)-460(remembered)-459(that)-459(hook-and-line)-459(or)-459(spear)-459(fishing)]TJ 0 -13.549 Td [(accounted)-240(for)-240(a)-240(much)-239(smaller)-240(percentage)-240(of)-240(the)-240(total)-240(annual)-239(take)]TJ 0 -13.55 Td [(than)-232(did)-231(trapping,)-236(damning,)-235(netting,)-235(or)-232(other)-232(communal)-231(methods)]TJ 0 -13.549 Td [(which)-250(entailed)-250(no)-250(ritual.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
335 0 obj <<
/Type /Page
/Contents 336 0 R
/Resources 334 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 312 0 R
>> endobj
334 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R /F37 75 0 R /F38 76 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
339 0 obj <<
/Length 4382      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Miscellaneous)-250(Concepts)-250(About)-250(Hunting)-250(And)-250(Fishing)-3474(63)]TJ
0 g 0 G
/F16 15.7808 Tf 0 -30.759 Td [(Miscellaneous)-258(Concepts)-258(Ab)-1(out)-258(Hunting)]TJ 0 -20.515 Td [(And)-250(Fishing)]TJ/F16 10.9091 Tf 0 -35.091 Td [(A)-269(number)-269(of)-269(ritual)-269(activities)-269(cluster)-269(around)-269(hunting)-269(and)-269(fishing.)]TJ 0 -13.55 Td [(Perhaps)-511(the)-511(most)-511(important)-511(is)-511(the)-511(requirement)-511(that)-510(women,)]TJ 0 -13.549 Td [(particularly)-281(menstruating)-281(women,)-290(avoid)-281(the)-281(hunting)-281(and)-281(fishing)]TJ 0 -13.549 Td [(equipment.)-235(If)-207(a)-206(woman)-206(touched)-206(such)-207(gear)-206(the)-206(owner)-206(would)-206(bathe)]TJ 0 -13.549 Td [(it)-283(and)-284(pray)]TJ/F34 10.9091 Tf 53.564 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(I'm)-283(giving)-284(you)-283(a)-283(bath)-283(to)-284(wash)-283(away)-283(the)-283(bad)-283(luck.)]TJ/F34 10.9091 Tf 217.38 0 Td [(\035)]TJ/F16 7.9701 Tf 15.237 0 Td [([382])]TJ/F16 10.9091 Tf -291.024 -13.549 Td [(\0502354-2378\051.)]TJ 11.956 -14.716 Td [(A)-287(further)-288(restriction)-287(placed)-288(on)-287(menstruating)-288(women)-287(was)-287(that)]TJ -11.956 -13.549 Td [(they)-260(must)-261(not)-260(eat)-260(meat)-260(during)-261(their)-260(periods.)-280(To)-261(do)-260(so)-260(meant)-260(bad)]TJ 0 -13.55 Td [(hunting)-250(for)-250(the)-250(man)-250(who)-250(killed)-250(the)-250(game.)]TJ 11.956 -14.715 Td [(The)-371(meat)-371(from)-370(the)-371(neck)-371(of)-371(a)-370(deer)-371(and)-371(the)-371(intestinal)-370(organs)]TJ -11.956 -13.55 Td [(were)-401(forbidden)-401(to)-401(vigorous)-402(young)-401(people.)-703(If)-401(a)-401(man)-401(ate)-401(neck)]TJ 0 -13.549 Td [(meat)-290(his)-290(aim)-290(would)-290(be)-290(bad)-290(\050360-368\051.)-370(Neck)-290(meat)-290(was)-290(reserved)]TJ 0 -13.549 Td [(for)-379(children)-378(and)-379(the)-378(old.)-636(In)-379(actuality)-378(it)-379(would)-378(seem)-379(that)-378(only)]TJ 0 -13.549 Td [(the)-323(children)-323(and)-324(the)-323(almost)-323(decrepit)-323(ate)-323(such)-324(meat.)-469(One)-323(of)-323(my)]TJ 0 -13.549 Td [(informants)-261(who)-260(is)-261(seventy-five,)-264(thus)-260(certainly)-261(qualifying)-261(for)-260(old)]TJ 0 -13.55 Td [(age,)-421(has)-387(never)-387(tasted)-386(either)-387(neck)-387(meat)-387(or)-386(internal)-387(organs.)-660(To)]TJ 0 -13.549 Td [(do)-263(so)-263(apparently)-263(would)-263(be)-263(an)-263(admission)-263(of)-263(loss)-263(of)-263(vigour)-263(which)]TJ 0 -13.549 Td [(no)-331(Washo)-331(oldster)-331(wishes)-331(to)-331(make.)-493(Menstruating)-331(women)-331(today)]TJ 0 -13.549 Td [(will)-329(eat)-328(meat)-329(purchased)-329(from)-328(a)-329(butcher)-329(but)-328(refrain)-329(from)-328(eating)]TJ 0 -13.549 Td [(venison)-280(or)-281(other)-280(game)-280(taken)-281(by)-280(someone)-280(they)-281(know,)-288(for)-280(fear)-280(of)]TJ 0 -13.55 Td [(spoiling)-290(his)-289(luck.)-369(Menstrual)-290(taboos)-289(also)-290(hold)-290(today)-289(in)-290(regard)-289(to)]TJ 0 -13.549 Td [(touching)-219(firearms)-219(or)-219(fishing)-219(poles,)-225(although)-219(at)-219(least)-219(some)-219(Washo)]TJ 0 -13.549 Td [(women)-330(own)-329(fishing)-330(poles,)-349(and)-329(in)-330(the)-329(early)-330(part)-329(of)-330(this)-329(century)]TJ 0 -13.549 Td [(a)-394(woman)-394(who)-394(lives)-394(at)-394(Carson)-394(City)-394(was)-394(reputed)-394(to)-394(be)-394(a)-394(great)]TJ 0 -13.549 Td [(hunter.)-375(In)-291(times)-292(past,)-301(certain)-292(women)-291(are)-292(reported)-291(to)-292(have)-291(made)]TJ 0 -13.549 Td [(excellent)-250(bows)-250(but)-250(not)-250(to)-250(have)-250(used)-250(them.)]TJ 11.956 -14.716 Td [(Stewart)-552(reports)-552(dances)-551(to)-552(bring)-552(deer)-552(which)-552(none)-552(of)-551(my)]TJ -11.956 -13.549 Td [(informants)-316(remembered.)-447(However,)-332(even)-316(in)-316(his)-316(time)-316(the)-315(dances)]TJ 0 -13.55 Td [(were)-243(said)-242(to)-243(be)]TJ/F34 10.9091 Tf 68.14 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(mainly)-243(for)-242(pleasure,)]TJ/F34 10.9091 Tf 87.394 0 Td [(\035)]TJ/F16 10.9091 Tf 7.489 0 Td [(which)-243(suggests)-242(the)-243(sacred)]TJ -167.867 -13.549 Td [(nature)-151(of)-151(such)-151(dances)-150(has)-151(gradually)-151(faded)-151(out)-151(of)-151(the)-150(consciousness)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
338 0 obj <<
/Type /Page
/Contents 339 0 R
/Resources 337 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 341 0 R
>> endobj
331 0 obj <<
/D [338 0 R /XYZ 46.771 529.134 null]
>> endobj
340 0 obj <<
/D [338 0 R /XYZ 97.245 408.372 null]
>> endobj
337 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
342 0 obj
<< /S /GoTo /D (index26) >>
endobj
345 0 obj
(Gathering)
endobj
348 0 obj <<
/Length 3846      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(64)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(of)-245(most)-244(modern)-244(Washo,)-246(particularly)-245(as)-244(deer)-244(hunting)-245(has)-244(become)]TJ 0 -13.549 Td [(entirely)-178(an)-179(individual)-178(enterprise)-179(and)-178(is)-179(no)-178(longer)-179(central)-178(to)-178(Washo)]TJ 0 -13.549 Td [(subsistence.)]TJ/F16 15.7808 Tf 0 -65.048 Td [(Gathering)]TJ/F16 10.9091 Tf 0 -33.15 Td [(As)-400(stated)-400(earlier,)-437(there)-400(appears)-400(to)-400(have)-400(been)-400(much)-400(less)-399(ritual)]TJ 0 -13.549 Td [(involved)-219(in)-219(gathering)-219(activities,)-225(perhaps)-219(because)-219(there)-219(was)-218(much)]TJ 0 -13.549 Td [(less)-268(chance)-268(of)-268(failure)-268(than)-268(in)-268(hunting.)-304(However,)-272(Stewart)-268(reports)]TJ 0 -13.549 Td [(that)-414(sometimes)-415(dances)-414(were)-415(held)-414(to)-414(make)-415(seeds)-414(grow)-414(\0502619-)]TJ 0 -13.549 Td [(2621\051.)-552(Such)-350(gatherings)-351(appear)-351(to)-350(be)-351(remembered,)-376(if)-350(at)-351(all,)-375(by)]TJ 0 -13.55 Td [(living)-250(Washo)-250(only)-250(as)-250(social)-250(occasions.)]TJ 11.956 -14.327 Td [(The)-525(fall)-524(pine-nut)-525(dance)-524(was)-525(clearly)-524(part)-525(of)-524(the)-525(ritual)-524(of)]TJ -11.956 -13.549 Td [(the)-431(pine-nut)-431(harvest)-431(\0502617,)-476(2622\051.)-792(The)-431(pine)-431(nut)-431(was)-430(central)]TJ 0 -13.549 Td [(to)-400(Washo)-399(winter)-400(survival,)-437(and)-399(its)-400(production)-400(was)-399(a)-400(matter)-399(of)]TJ 0 -13.55 Td [(extreme)-393(concern.)-677(Even)-393(today)-392(the)-393(pine-nut)-392(harvest)-393(becomes)-392(a)]TJ 0 -13.549 Td [(paramount)-177(interest)-178(among)-177(all)-177(the)-178(Washo)-177(during)-177(the)-178(last)-177(part)-177(of)-177(the)]TJ 0 -13.549 Td [(summer.)-365(Speculations)-288(as)-288(to)-288(its)-288(size,)-298(wishes)-288(for)-289(rain,)-297(and)-288(survey)]TJ 0 -13.549 Td [(trips)-341(into)-340(the)-341(pine-nut)-340(hills)-341(become)-340(common,)-363(and)-341(according)-340(to)]TJ 0 -13.549 Td [(one)-248(informant:)]TJ/F34 10.9091 Tf 67.235 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(If)-248(we)-248(have)-248(a)-249(couple)-248(of)-248(bad)-248(years)-248(somebody)-248(will)]TJ -72.079 -13.55 Td [(say,)]TJ/F34 10.9091 Tf 21.304 0 Td [(\030)]TJ/F16 10.9091 Tf 3.633 0 Td [(We)-346(ought)-346(to)-346(have)-345(a)-346(pine-nut)-346(dance,)]TJ/F34 10.9091 Tf 161.085 0 Td [(\031)]TJ/F16 10.9091 Tf 7.406 0 Td [(and)-346(then)-346(we'll)-346(have)]TJ -193.428 -13.549 Td [(one.)]TJ/F34 10.9091 Tf 18.48 0 Td [(\035)]TJ/F16 10.9091 Tf -6.524 -14.327 Td [(The)-274(following)-275(account)-274(of)-275(the)-274(pine-nut)-275(dances)-274(of)-275(the)-274(past)-274(was)]TJ -11.956 -13.55 Td [(given)-345(to)-344(me)-345(by)-345(a)-344(man,)-369(now)-344(almost)-345(blind,)-368(of)-345(between)-344(seventy-)]TJ 0 -13.549 Td [(five)-387(and)-388(eighty.)-662(His)-387(father)-387(claimed)-388(to)-387(be)-387(chief)-388(of)-387(the)-387(Washo)]TJ 0 -13.549 Td [(through)-347(an)-346(affinal)-347(relationship)-346(to)-347(the)-347(famous)-346(Captain)-347(Jim,)-370(and)]TJ 0 -13.549 Td [(my)-383(informant)-382(maintains)-382(the)-383(claim,)-416(stoutly)-382(denied)-382(by)-383(all)-382(other)]TJ 0 -13.549 Td [(Washo)-217(except)-218(his)-217(relatives)-217(and)-217(admitted)-217(by)-218(them)-217(only)-217(when)-217(they)]TJ 0 -13.549 Td [(are)-349(forced)-349(to)-348(depend)-349(on)-349(his)-349(hospitality.)-546(The)-349(account)-349(is)-349(one)-348(of)]TJ 0 -13.55 Td [(a)-307(well-regulated)-306(four-day)-307(ceremony)-306(of)-307(the)-306(first)-307(fruit.)-419(However,)]TJ 0 -13.549 Td [(it)-289(will)-290(become)-289(apparent)-290(as)-289(other)-290(information)-289(is)-290(presented)-289(that)-289(it)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
347 0 obj <<
/Type /Page
/Contents 348 0 R
/Resources 346 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 341 0 R
>> endobj
343 0 obj <<
/D [347 0 R /XYZ 93.543 466.047 null]
>> endobj
346 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
351 0 obj <<
/Length 5245      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Gathering)-20725(65)]TJ
0 g 0 G
 0 -30.759 Td [(is)-284(a)-284(highly)-284(idealized)-284(version.)-351(It)-284(is)-284(valuable,)-292(however,)-293(because)-283(it)]TJ 0 -13.549 Td [(includes)-250(a)-250(number)-250(of)-250(sacred)-250(elements)-250(of)-250(obvious)-250(importance.)]TJ/F34 9.8629 Tf 19.637 -25.161 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(This)-247(prayer)]TJ/F16 6.904 Tf 45.163 3.616 Td [(11)]TJ/F16 9.8629 Tf 9.839 -3.616 Td [(fella)-247([Captain)-247(Jim])-247(lived)-247(at)-247(Double)-247(Springs)-248(all)]TJ -59.381 -12.822 Td [(year)-248(round.)-249(He)-248(would)-247(have)-248(a)-248(dream)-247(telling)-248(him)-248(when)-247(to)-248(have)]TJ 0 -12.821 Td [(a)-291(meeting.)-373(He)-291(was)-291(what)-291(you)-291(would)-290(call)-291(a)-291(religious)-291(man.)-373(He)]TJ 0 -12.822 Td [(would)-232(get)-232(someone)-232(he)-233(could)-232(trust)-232(and)-232(send)-232(out)-232(a)-232(long,)-236(tanned)]TJ 0 -12.822 Td [(string)-230(of)-231(hide)-230(with)-230(knots)-231(in)-230(it.)-243(For)-231(every)-230(day)-230(until)-231(the)-230(meeting)]TJ 0 -12.822 Td [(there)-311(was)-311(a)-311(knot)-311(and)-311(every)-311(day)-311(the)-311(messenger)-311(untied)-311(a)-311(knot)]TJ 0 -12.822 Td [(so)-270(the)-271(people)-270(would)-270(know)-270(how)-271(many)-270(days)-270(they)-271(had)-270(until)-270(the)]TJ 0 -12.822 Td [(meeting.)]TJ/F34 9.8629 Tf 16.162 -13.326 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(All)-427(the)-426(men)-427(came)-426(and)-427(hunted)-426(for)-427(four)-426(days,)-471(and)-426(the)]TJ -20.541 -12.821 Td [(women)-298(would)-298(start)-298(gathering)-298(pine)-299(nut.)-394(They)-298(would)-298(hang)-298(up)]TJ 0 -12.822 Td [(the)-250(game)-250(to)-250(let)-250(it)-250(dry.)]TJ/F34 9.8629 Tf 14.558 -13.326 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(The)-264(prayer)-264(wouldn't)-264(eat)-264(meat)-264(during)-263(those)-264(four)-264(days)-264(but)]TJ -18.937 -12.822 Td [(he)-369(could)-370(drink)-369(cold)-370(water,)-399(and)-369(some)-370(lady)-369(would)-370(cook)-369(him)]TJ 0 -12.822 Td [(pine)-250(nut.)]TJ/F34 9.8629 Tf 14.537 -13.326 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(Every)-262(night)-262(they)-261(would)-262(have)-262(a)-262(dance.)-285(On)-262(the)-261(fourth)-262(day)]TJ -18.916 -12.822 Td [(everybody)-311(would)-310(bring)-311(the)-311(food)-311(they)-310(had)-311(and)-311(put)-311(it)-310(in)-311(front)]TJ 0 -12.821 Td [(of)-232(the)-231(prayer,)-235(and)-232(then)-231(he)-232(would)-231(pick)-232(some)-232(man)-231(who)-232(was)-231(fair)]TJ 0 -12.822 Td [([just])-287(and)-286(the)-287(food)-286(was)-287(divided)-286(a)-287(little)-286(before)-287(sunrise.)-360(If)-286(you)]TJ 0 -12.822 Td [(have)-235(a)-235(small)-235(family)-235(you)-235(get)-235(less,)-238(if)-234(you)-235(have)-235(a)-235(big)-235(family)-235(you)]TJ 0 -12.822 Td [(get)-250(more.)]TJ/F16 6.904 Tf 37.252 3.615 Td [(12)]TJ/F34 9.8629 Tf -23.191 -16.941 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(Then)-213(the)-214(prayer)-213(makes)-214(a)-213(prayer)-214(something)-213(like)-214(this:)]TJ/F34 9.8629 Tf 204.296 0 Td [(\030)]TJ/F16 9.8629 Tf 3.284 0 Td [(Our)]TJ -226.02 -12.822 Td [(father)-278(I)-278(dream)-278(that)-278(we)-278(must)-278(take)-279(a)-278(bath)-278(and)-278(then)-278(paint.)-334(Even)]TJ 0 -12.822 Td [(the)-329(childrens)-330(...)-488([we)-329(must])-329(wash)-330(away)-329(the)-329(bad)-330(habits)-329(so)-329(we)]TJ 0 -12.821 Td [(won't)-250(get)-250(sick)-250(from)-250(the)-250(food)-250(we)-250(have)-250(in)-250(front)-250(of)-250(us!)]TJ/F34 9.8629 Tf 203.107 0 Td [(\031)]TJ -188.559 -13.326 Td [(\034)]TJ/F16 9.8629 Tf 4.379 0 Td [(Then)-263(everybody)-263(go)-263(to)-263(the)-263(river)-263(...)-288(no)-263(matter)-263(if)-263(there)-263(was)]TJ -18.927 -12.822 Td [(a)-273(little)-272(ice)-273(on)-272(the)-273(water,)-278(and)-272(take)-273(a)-272(bath.)-318(If)-273(they)-272(was)-273(not)-272(near)]TJ 0 -12.822 Td [(the)-222(river)-223(they)-222(bathed)-223(the)-222(kids)-222(from)-223(baskets)-222(at)-223(Double)-222(Springs.)]TJ 0 -12.822 Td [(The)-250(prayer)-250(he)-250(prayed)-250(for)-250(pine)-250(nut,)-250(rabbit,)-250(and)-250(deer.)]TJ/F34 9.8629 Tf 201.579 0 Td [(\035)]TJ
0 g 0 G
ET
q
1 0 0 1 46.771 120.76 cm
[]0 d 0 J 0.398 w 0 0 m 112.25 0 l S
Q
BT
/F16 5.9776 Tf 50.009 113.947 Td [(11)]TJ/F16 8.9664 Tf 8.718 -3.809 Td [(Used)-189(in)-188(an)-189(adjectival)-189(sense.)-229(In)-189(the)-189(reference)-189(below)-188(prayer)-189(is)-189(used)-189(nominally.)]TJ/F16 5.9776 Tf -8.718 -7.31 Td [(12)]TJ/F16 8.9664 Tf 8.718 -3.809 Td [(No)-462(matter)-462(how)-462(reluctant)-462(aged)-462(Washo)-462(may)-462(have)-462(been)-462(to)-462(discuss)-462(other)]TJ -11.956 -10.959 Td [(aspects)-318(of)-318(the)-318(past,)-335(they)-318(became)-318(eloquent)-317(about)-318(any)-318(occasion)-318(on)-318(which)-318(food)]TJ 0 -10.959 Td [(was)-233(plentiful.)-244(They)-233(describe)-234(in)-233(minute)-233(detail)-233(the)-233(kinds)-233(and)-233(amount)-233(of)-233(food)-233(at)-233(a)]TJ 0 -10.959 Td [(feast)-250(although)-250(they)-250(cannot)-250(remember)-250(the)-250(time,)-250(place,)-250(or)-250(those)-250(present.)]TJ
0 g 0 G
0 g 0 G
0 g 0 G
ET
endstream
endobj
350 0 obj <<
/Type /Page
/Contents 351 0 R
/Resources 349 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 341 0 R
>> endobj
349 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
354 0 obj <<
/Length 4878      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(66)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 11.956 -30.759 Td [(Suzie)-402(Dick,)-441(an)-403(ancient)-402(Washo)-403(woman)-402(who)-403(claims)-402(to)-402(have)]TJ -11.956 -13.549 Td [(reached)-308(the)-307(century)-308(mark)-307(in)-308(1959,)-322(recalls)-308(that)-307(Captain)-308(Jim)-307(was)]TJ 0 -13.549 Td [(her)-261(mother's)-262(sister's)-261(son)-261(and)-261(that)-262(she)-261(called)-261(him)-261(brother.)-284(He)-261(was)]TJ 0 -13.549 Td [(a)-354(big)-354(man)-355(in)-354(a)-354(figurative)-354(if)-355(not)-354(a)-354(literal)-354(sense.)-563(He)-354(wore)-354(eagle)]TJ 0 -13.55 Td [(feathers)-237(on)-237(his)-238(head)-237(and)-237(arms.)-246(He)-237(had)-237(red)-238(trousers)-237(made)-237(out)-237(of)-237(a)]TJ 0 -13.549 Td [(blanket)-255(with)-255(feathers)-254(on)-255(the)-255(sides)-255(of)-255(the)-254(legs.)-265(As)-255(she)-254(remembers)]TJ 0 -13.549 Td [(him)-359(at)-360(these)-359(ceremonies:)]TJ/F34 10.9091 Tf 116.854 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(He)-359(would)-360(scare)-359(you)-359(to)-360(death.)]TJ/F34 10.9091 Tf 133.206 0 Td [(\035)]TJ/F16 10.9091 Tf 8.763 0 Td [(The)]TJ -263.666 -13.549 Td [(assembled)-342(Washo)-343(brought)-342(pine)-342(nuts,)-366(deer)-342(meat,)-365(megal)-342([Indian)]TJ 0 -13.549 Td [(tea],)-517(and)-464(much)-464(other)-463(food.)-892(Captain)-463(Jim)-464(prayed)-464(and)-464(gave)-463(a)]TJ 0 -13.55 Td [(sermon,)-401(urging)-370(everyone)-371(to)-370(drink)-371(water)-371(and)-370(avoid)-371(liquor,)-400(and)]TJ 0 -13.549 Td [(supervised)-250(four)-250(nights)-250(of)-250(dancing.)]TJ 11.956 -14.776 Td [(Judging)-224(from)-224(the)-224(age)-224(of)-224(these)-224(two)-223(informants,)-230(these)-223(meetings,)]TJ -11.956 -13.55 Td [(which)-405(they)-406(claim)-405(were)-405(attended)-405(by)-406(all)-405(the)-405(Washo,)-444(were)-405(held)]TJ 0 -13.549 Td [(between)-422(1880)-423(and)-422(1900.)-767(Most)-423(Washo)-422(agree)-423(that)-422(these)-422(large)]TJ 0 -13.549 Td [(meetings)-324(were)-324(the)-324(way)]TJ/F34 10.9091 Tf 106.227 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(they)-324(did)-324(it)-324(in)-323(the)-324(old)-324(days.)]TJ/F34 10.9091 Tf 118.474 0 Td [(\035)]TJ/F16 10.9091 Tf 8.377 0 Td [(However,)]TJ/F34 10.9091 Tf -237.921 -13.549 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(the)-243(old)-243(days)]TJ/F34 10.9091 Tf 52.572 0 Td [(\035)]TJ/F16 10.9091 Tf 7.495 0 Td [(appear)-243(not)-243(to)-243(be)-243(aboriginal)-243(but)-243(the)-243(late)-243(nineteenth)]TJ -64.911 -13.549 Td [(century,)-180(when)-163(the)-162(Washo)-163(experienced)-163(a)-162(brief)-163(period)-163(of)-162(semi-unity)]TJ 0 -13.55 Td [(and)-250(prosperity.)]TJ 11.956 -14.776 Td [(Rupert,)-177(the)-160(psychologically)-159(oriented)-160(shaman)-159(comments,)]TJ/F34 10.9091 Tf 242.318 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(Hell,)]TJ -259.117 -13.549 Td [(them)-265(northern)-264(Washo)-265(didn't)-264(come)-264(down)-265(to)-264(Double)-265(Springs)-264(very)]TJ 0 -13.55 Td [(much.)-405(They)-302(got)-302(their)-302(pine)-302(nuts)-302(southeast)-301(of)-302(Reno.)-406(Captain)-301(Jim)]TJ 0 -13.549 Td [(he)-271(was)-272(only)-271(a)-271(big)-271(man)-271(to)-272(them)-271(Carson)-271(Valley)-271(Washo.)-314(He)-271(didn't)]TJ 0 -13.549 Td [(have)-250(nothing)-250(to)-250(say)-250(to)-250(the)-250(northern)-250(bunch.)]TJ/F34 10.9091 Tf 184.222 0 Td [(\035)]TJ/F16 10.9091 Tf -172.266 -14.777 Td [(Despite)-415(this,)-456(it)-414(seems)-415(clear)-415(that)-415(during)-414(the)-415(last)-415(part)-415(of)-414(the)]TJ -11.956 -13.549 Td [(nineteenth)-425(century)-424(large)-425(numbers)-424(of)-425(Washo)-424(from)-425(the)-424(various)]TJ 0 -13.549 Td [(areas)-388(did,)-423(in)-388(fact,)-423(gather)-389(at)-388(Double)-776(Springs)-389(prior)-388(to)-388(the)-388(pine)]TJ/F16 7.9701 Tf -72.756 0 Td [([383])]TJ/F16 10.9091 Tf 72.756 -13.549 Td [(nutting.)-237(It)-212(seems)-212(equally)-211(clear)-212(that)-212(this)-211(was)-212(distinctly)-212(a)-211(postwhite)]TJ 0 -13.549 Td [(phenomenon)-334(and)-334(that)-334(in)-334(aboriginal)-334(times)-334(such)-334(gatherings)-334(were)]TJ 0 -13.549 Td [(much)-250(smaller.)]TJ 11.955 -14.777 Td [(The)-236(essential)-235(elements)-236(of)-236(these)-235(pine-nut)-236(ceremonies)-236(are)-236(clear.)]TJ -11.955 -13.549 Td [(There)-453(was)-453(a)-453(gathering)-454(of)-453(a)-453(number)-453(of)-453(bands,)-504(usually)-453(at)-453(the)]TJ 0 -13.549 Td [(prompting)-415(of)-414(a)-414(dreamer)-415(who)-414(knew)-415(certain)-414(prayers)-415(and)-414(songs)]TJ 0 -13.55 Td [(which)-253(would)-253(insure)-253(a)-253(successful)-253(harvest.)-259(There)-253(was)-253(a)-253(sharing)-253(of)]TJ 0 -13.549 Td [(food)-353(among)-353(the)-353(celebrants,)-379(as)-353(well)-353(as)-353(dancing)-352(and)-353(ceremonial)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
353 0 obj <<
/Type /Page
/Contents 354 0 R
/Resources 352 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 341 0 R
>> endobj
355 0 obj <<
/D [353 0 R /XYZ 257.846 175.763 null]
>> endobj
352 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
358 0 obj <<
/Length 4377      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Gathering)-20725(67)]TJ
0 g 0 G
 0 -30.759 Td [(bathing.)-453(Such)-318(affairs)-318(were)-318(held)-318(in)-317(Sierra)-318(Valley)-318(and)-318(at)-317(Double)]TJ 0 -13.549 Td [(Springs)-248(and)-248(probably)-248(at)-248(a)-248(number)-248(of)-248(other)-248(places)-248(in)-248(the)-248(pine-nut)]TJ 0 -13.549 Td [(hills.)]TJ 11.956 -15.186 Td [(The)-225(large)-225(celebrations)-224(at)-225(Double)-225(Springs)-225(appear)-225(to)-225(have)-224(taken)]TJ -11.956 -13.549 Td [(on)-194(a)-194(distinctly)-194(nativistic)-194(or)-193(revitalistic)-194(cast.)-232(Informants)-193(remember)]TJ 0 -13.549 Td [(Captain)-251(Jim's)-250(exhortations)-251(to)-250(abstain)-251(from)-250(white)-251(man's)-250(whiskey,)]TJ 0 -13.55 Td [(to)-246(treat)-246(each)-246(other)-246(as)-246(brothers)-245(and)-246(sisters,)-247(to)-246(eat)-246(Indian)-246(food,)-246(and)]TJ 0 -13.549 Td [(to)-236(apply)-235(themselves)-236(to)-235(the)-236(business)-236(of)-235(hunting)-236(and)-235(gathering.)-245(He)]TJ 0 -13.549 Td [(himself)-371(refused)-371(to)-372(wear)-371(new)-371(white)-371(clothing)-371(but)-371(accepted)-371(only)]TJ 0 -13.549 Td [(used)-367(garments.)-600(It)-367(was)-367(during)-366(this)-367(period)-367(that)-367(Washo)-366(received)]TJ 0 -13.549 Td [(individual)-278(pine-nut)-278(allotments)-279(based)-278(on)-278(their)-278(traditional)-278(picking)]TJ 0 -13.55 Td [(grounds.)]TJ 11.956 -15.185 Td [(Mooney)-206(\0501896\051,)-216(whose)-206(information)-207(on)-206(the)-207(Washo)-206(was)-206(filtered)]TJ -11.956 -13.549 Td [(through)-394(the)-394(Paiute,)-430(reports)-395(the)-394(Washo)-394(during)-394(this)-394(period)-394(as)-394(a)]TJ 0 -13.55 Td [(shattered)-427(remnant)-427(of)-427(a)-426(former)-427(society)-427(eking)-427(out)-427(an)-426(existence)]TJ 0 -13.549 Td [(in)-415(the)-415(dump)-415(heaps)-415(of)-414(white)-415(settlements)-415(in)-415(Nevada.)-745(The)-414(fact)]TJ 0 -13.549 Td [(that)-512(the)-511(Washo)-512(did)-512(not)-511(respond)-512(to)-512(the)-511(Ghost)-512(Dance)-511(seems)]TJ 0 -13.549 Td [(in)-414(his)-414(mind)-415(to)-414(support)-414(his)-414(notions)-415(about)-414(the)-414(condition)-414(of)-414(the)]TJ 0 -13.549 Td [(tribe.)-245(However,)-238(among)-235(older)-236(informants)-235(this)-235(period)-235(is)-235(invariably)]TJ 0 -13.55 Td [(recalled)-316(as)-316(an)-316(almost)-317(golden)-316(age.)-448(Although)-316(the)-316(implications)-316(of)]TJ 0 -13.549 Td [(movements)-244(such)-244(as)-244(the)-243(Ghost)-244(Dance)-244(were)-244(not)-244(clear)-244(in)-243(Mooney's)]TJ 0 -13.549 Td [(time,)-282(it)-275(seems)-275(more)-275(than)-276(likely)-275(that)-275(the)-275(Washo)-276(failed)-275(to)-275(join)-275(the)]TJ 0 -13.549 Td [(movement)-192(because)-193(they)-192(were)-192(not)-192(suffering)-193(the)-192(social)-192(and)-192(cultural)]TJ 0 -13.549 Td [(dislocation)-231(of)-231(the)-231(Paiute,)-235(Plains)-231(tribes,)-235(or)-231(California)-231(Indians)-231(and,)]TJ 0 -13.55 Td [(in)-220(fact,)-225(may)-220(have)-220(been)-219(undergoing)-220(a)-220(process)-219(of)-220(social)-219(unification)]TJ 0 -13.549 Td [(under)-447(Captain)-448(Jim.)-842(This)-447(unification)-448(appears)-447(to)-448(have)-447(had)-447(its)]TJ 0 -13.549 Td [(primary)-405(symbolization)-406(in)-405(the)-405(ritual)-406(activity)-405(which)-405(surrounded)]TJ 0 -13.549 Td [(earlier)-288(ceremonies)-288(concerned)-288(with)-288(pine-nut)-288(harvesting.)-364(The)-288(use)]TJ 0 -13.549 Td [(of)-248(a)-248(hide)-248(string)-248(to)-248(summon)-248(people)-248(to)-248(the)-248(meeting)-248(appears)-248(earlier)]TJ 0 -13.55 Td [(as)-237(a)-237(war)-237(signal)-237(used)-236(by)-237(a)-237(threatened)-237(band)-237(to)-237(entreat)-237(other)-236(Washo)]TJ 0 -13.549 Td [(\050often)-250(not)-250(too)-250(successfully\051)-250(to)-250(come)-250(to)-250(their)-250(aid.)]TJ 11.956 -15.185 Td [(With)-255(the)-254(death)-255(of)-255(Captain)-255(Jim,)-256(the)-254(large)-255(gatherings)-255(at)-254(Double)]TJ -11.956 -13.55 Td [(Springs)-329(appear)-330(to)-329(have)-330(ceased.)-488(In)-329(the)-329(words)-330(of)-329(one)-329(informant,)]TJ/F34 10.9091 Tf 0 -13.549 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(When)-349(he)-349(died)-349(all)-348(them)-349(things)-349(like)-349(the)-349(knotted)-349(string)-349(and)-348(that)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
357 0 obj <<
/Type /Page
/Contents 358 0 R
/Resources 356 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 341 0 R
>> endobj
356 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
361 0 obj <<
/Length 4447      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(68)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(stuff)-250(died)-250(with)-250(him.)]TJ/F34 10.9091 Tf 86.062 0 Td [(\035)]TJ/F16 10.9091 Tf -74.106 -14.776 Td [(After)-374(his)-375(death)-374(the)-374(pine-nut)-375(dances)-374(continued)-374(to)-375(be)-374(held)-374(in)]TJ -11.956 -13.55 Td [(various)-206(places)-206(in)-206(Washo)-206(country)]TJ/F34 10.9091 Tf 140.481 0 Td [(\024)]TJ/F16 10.9091 Tf 10.909 0 Td [(Sugar)-206(Loaf)-206(Mountain,)-215(Genoa,)]TJ -151.39 -13.549 Td [(and)-374(Sierra)-374(Valley)-374(being)-375(the)-374(most)-374(frequently)-374(mentioned.)-622(Jim's)]TJ 0 -13.549 Td [(daughter)-302(\050or)-302(sister's)-302(daughter\051)-301(who)-302(was)-302(married)-302(to)-302(the)-301(claimant)]TJ 0 -13.549 Td [(Captain)-302(Pete)-302(and)-302(was)-303(the)-302(mother)-302(of)-302(the)-302(present)-302(claimant,)-315(Hank)]TJ 0 -13.549 Td [(Pete,)-339(staged)-321(a)-322(number)-321(of)-321(dances)-321(around)-322(Genoa)-321(until)-321(her)-321(death.)]TJ 0 -13.55 Td [(This)-159(action)-158(is)-159(of)-159(interest)-158(in)-159(view)-159(of)-158(the)-159(fact)-159(that)-158(she)-159(was)-158(considered)]TJ 0 -13.549 Td [(a)-255(dangerous)-255(woman)-254(and)-255(a)-255(poisoner.)-264(It)-255(suggests)-255(that)-255(there)-255(was)-254(in)]TJ 0 -13.549 Td [(fact)-177(no)-177(clear)-177(distinction)-177(between)-177(doctors)-177(and)-177(witches)-177(or)-176(sorcerers.)]TJ 0 -13.549 Td [(Her)-236(knowledge)-235(of)-236(pine-nut)-235(prayers)-235(and)-236(songs)-235(made)-236(her)-235(essential)]TJ 0 -13.549 Td [(in)-230(the)-230(ceremony)-230(despite)-230(the)-230(fear)-230(the)-230(Washo)-230(may)-230(have)-230(had)-230(of)-229(her.)]TJ 11.956 -14.777 Td [(Since)-231(her)-231(death)-231(in)-232(the)-231(early)-231(1940's,)-235(pine-nut)-231(dances)-231(have)-231(been)]TJ -11.956 -13.549 Td [(less)-299(frequent.)-398(Only)-299(one)-299(woman)-299(among)-299(the)-299(Washo)-299(is)-299(reputed)-299(to)]TJ 0 -13.549 Td [(know)-394(all)-395(the)-394(songs,)-430(although)-394(I)-394(suspect)-395(that)-394(several)-394(others)-394(are)]TJ 0 -13.55 Td [(in)-395(possession)-395(of)-395(this)-395(knowledge)-395(but)-395(refuse)-395(to)-395(come)-395(forth)-394(and)]TJ 0 -13.549 Td [(serve)-371(as)-371(leaders,)-401(in)-371(keeping)-371(with)-371(Washo)-371(reluctance)-371(to)-371(assume)]TJ 0 -13.549 Td [(responsible)-250(roles.)]TJ 11.956 -14.777 Td [(After)-428(a)-429(number)-428(of)-429(years)-428(without)-428(a)-429(dance,)-473(the)-428(custom)-428(was)]TJ -11.956 -13.549 Td [(revived)-396(in)-396(the)-396(early)-396(1950's)-396(at)-396(Dresslerville.)-688(The)-396(dances)-396(were)]TJ 0 -13.549 Td [(staged)-354(because)-355(previous)-354(crops)-354(had)-355(been)-354(poor)-354(and)-355(it)-354(was)-354(felt)-354(a)]TJ 0 -13.549 Td [(dance)-250(would)-250(increase)-250(the)-250(harvest.)]TJ 11.956 -14.777 Td [(These)-243(dances,)-244(supervised)-243(by)-243(the)-243(woman)-243(who)-243(knew)-243(the)-243(songs,)]TJ -11.956 -13.549 Td [(were)-321(not)-320(considered)-321(too)-320(successful)-321(because)-320(both)-321(Indian)-320(dances)]TJ 0 -13.549 Td [(and)-196(white)-197(men's)-196(dances)-196(were)-196(conducted.)-233(Indian)-196(dances)-196(were)-196(held)]TJ 0 -13.549 Td [(outside)-320(the)-320(community)-320(house)-320(while)-320(younger)-320(couples)-320(danced)-320(in)]TJ 0 -13.549 Td [(the)-174(white)-174(manner)-174(inside.)-224(The)-174(prayers,)-189(bathing,)-190(and)-174(dreams)-173(played)]TJ 0 -13.55 Td [(a)-184(very)-183(minor)-184(role,)-197(although)-184(food)-183(was)-184(supplied.)-228(From)-184(the)-183(accounts)]TJ 0 -13.549 Td [(these)-418(dances)-417(sounded)-418(extremely)-417(secular)-418(with)-417(an)-418(emphasis)-417(on)]TJ 0 -13.549 Td [(the)-483(recreational)-483(aspects,)-542(particularly)-483(dancing.)-949(However,)-541(the)]TJ 0 -13.549 Td [(consensus)-383(that)-383(the)-383(ceremonies)-383(were)-383(not)-383(successful)-383(because)-383(of)]TJ 0 -13.549 Td [(the)-313(introduction)-313(of)-313(white-style)-313(dancing)-313(suggests)-313(that)-313(the)-313(Indian)]TJ 0 -13.55 Td [(dances)-299(still)-300(retain)-299(some)-300(of)-299(their)-300(former)-299(sacred)-300(character.)-398(It)-299(was)]TJ 0 -13.549 Td [(agreed)-347(that)-346(a)-347(dance)-347(might)-347(be)-346(held)-347(today)-347(or)-347(in)-346(the)-347(future)-347(if)-346(the)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
360 0 obj <<
/Type /Page
/Contents 361 0 R
/Resources 359 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 341 0 R
>> endobj
359 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
364 0 obj <<
/Length 4016      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Gathering)-20725(69)]TJ
0 g 0 G
 0 -30.759 Td [(crops)-188(were)-189(poor.)-229(Here)-189(again)-188(the)-189(present)-188(economic)-189(situation)-188(of)-188(the)]TJ 0 -13.549 Td [(Washo)-197(tends)-197(to)-197(limit)-198(these)-197(affairs)-197(to)-197(weekends.)-232(The)-197(impossibility)]TJ 0 -13.549 Td [(of)-355(holding)-356(four-day)-355(dances)-355(however,)-382(is)-355(not)-355(considered)-355(serious)]TJ 0 -13.549 Td [(by)-217(most)-218(Washo.)-239(Several)-217(informants)-217(stoutly)-218(denied)-217(that)-217(there)-217(was)]TJ 0 -13.55 Td [(any)-262(requirement)-262(that)-262(the)-263(dance)-262(last)-262(four)-262(days.)-286(They)-262(implied)-262(that)]TJ 0 -13.549 Td [(those)-313(who)-314(insisted)-313(on)-313(this)-314(were)-313(simply)-313(trying)-314(to)-313(make)-313(it)-313(sound)]TJ 0 -13.549 Td [(more)-229(important)-229(\050note)-229(that)-229(using)-229(the)-229(figure)-229(four)-229(makes)-228(something)]TJ 0 -13.549 Td [(more)-217(important\051.)-240(Their)-217(accounts)-217(report)-218(that)-217(the)-218(dances)-217(might)-217(last)]TJ 0 -13.549 Td [(from)-292(one)-293(or)-292(two)-292(days)-292(to)-293(a)-292(week)-292(during)-293(which)-292(time)-292(games)-292(were)]TJ 0 -13.55 Td [(played,)-302(dances)-292(held,)-303(and)-292(the)-292(ritual)-292(described)-292(earlier)-292(carried)-291(out.)]TJ 0 -13.549 Td [(However,)-410(there)-378(is)-378(no)-378(doubt)-378(that)-378(the)-378(dances)-378(were)-378(important)-378(to)]TJ 0 -13.549 Td [(the)-326(success)-326(of)-326(the)-325(harvest)-326(and)-326(the)-326(well-being)-326(of)-326(the)-325(harvesters.)]TJ 0 -13.549 Td [(One)-259(informant)-259(recalls)-259(that:)]TJ/F34 10.9091 Tf 120.461 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(Sometimes)-259(them)-259(pine)-259(nuts)-258(was)-259(ripe)]TJ -125.304 -13.549 Td [(before)-266(the)-265(dance.)-297(If)-266(we)-265(picked)-266(them)-265(then)-266([before)-265(the)-266(dance],)-269(we)]TJ 0 -13.55 Td [(took)-368(a)-368(bath)-368(every)-369(day)-368(before)-368(we)-368(started)-368(picking)-368(but)-368(we)-368(didn't)]TJ 0 -13.549 Td [(have)-250(to)-250(do)-250(that)-250(after)-250(the)-250(dance.)]TJ/F34 10.9091 Tf 134.204 0 Td [(\035)]TJ/F16 10.9091 Tf -122.248 -13.549 Td [(The)-984(following)-985(incident)-984(illustrates)-985(the)-984(attitude)-984(most)]TJ -11.956 -13.549 Td [(conservative)-367(Washo)-366(have)-367(toward)-367(the)-367(pinyon)-366(pine.)-600(D'Azevedo)]TJ 0 -13.549 Td [(\050personal)-208(communication\051)-207(accompanied)-208(an)-207(elderly)-207(woman)-208(to)-207(her)]TJ 0 -13.55 Td [(pine-nut)-302(allotment)-303(where)-302(she)-302(discovered)-303(that)-302(illegal)-302(Christmas-)]TJ 0 -13.549 Td [(tree)-373(cutters)-373(had)-372(topped)-373(a)-373(number)-373(of)-372(trees,)-404(which)-373(she)-372(believed)]TJ 0 -13.549 Td [(destroyed)-218(their)-218(ability)-219(to)-218(bear.)-239(Her)-219(response)-218(was)-218(of)-218(sorrow)-218(rather)]TJ 0 -13.549 Td [(than)-315(anger.)-444(She)-314(sat)-315(under)-315(her)-314(trees)-315(for)-315(a)-314(long)-315(time)-314(apologizing)]TJ 0 -13.549 Td [(to)-317(her)-317(father,)-334(from)-317(whom)-318(she)-317(had)-317(inherited)-317(the)-317(plot,)-334(and)-317(to)-317(the)]TJ 0 -13.55 Td [(spirits)-250(of)-250(the)-250(trees.)]TJ 11.956 -13.549 Td [(There)-558(seems)-558(to)-557(have)-558(been)-558(little)-558(ritual)-558(involved)-558(in)-557(other)]TJ -11.956 -13.549 Td [(gathering)-443(activities,)-491(except)-443(for)-443(the)-443(dances)-443(to)-443(make)-443(the)-443(seeds)]TJ 0 -13.549 Td [(grow)-306(mentioned)-306(in)-306(the)-306(element)-306(lists)-306(\0502621\051.)-418(This)-306(practice)-305(must)]TJ 0 -13.549 Td [(have)-302(been)-303(occasional)-302(and)-302(relatively)-302(old,)-316(because)-302(it)-302(is)-302(no)-302(longer)]TJ 0 -13.549 Td [(part)-250(of)-250(the)-250(memories)-250(of)-250(older)-250(informants.)]TJ/F16 7.9701 Tf 291.024 -29.64 Td [([384])]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
363 0 obj <<
/Type /Page
/Contents 364 0 R
/Resources 362 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 366 0 R
>> endobj
365 0 obj <<
/D [363 0 R /XYZ 46.771 95.608 null]
>> endobj
362 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
367 0 obj
<< /S /GoTo /D (index27) >>
endobj
370 0 obj
(Miscellaneous Ritual)
endobj
373 0 obj <<
/Length 4349      
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 93.543 479.321 Td [(Miscellaneous)-250(Ritual)]TJ/F16 10.9091 Tf 0 -33.407 Td [(Although)-382(modern)-381(informants)-382(do)-382(not)-381(remember)-382(taboos)-381(dealing)]TJ 0 -13.55 Td [(with)-315(hair)-314(combing)-315(and)-314(scratching)-315(during)-314(menstruation,)-331(they)-314(do)]TJ 0 -13.549 Td [(recall)-387(being)-387(warned)-387(against)-387(combing)-387(their)-387(hair)-387(at)-387(night.)]TJ/F34 10.9091 Tf 260.634 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(My)]TJ -265.477 -13.549 Td [(father)-335(used)-335(to)-334(say)-335(that)-335(if)-335(we)-335(did)-335(it)-334(we'd)-335(marry)-335(out)-335(of)-335(the)-334(tribe.)]TJ 0 -13.549 Td [(Mike)-329(\050her)-329(husband\051)-329(used)-329(to)-329(tell)-329(the)-329(same)-329(thing)-329(to)-329(our)-329(girls)-329(but)]TJ 0 -13.549 Td [(they)-224(didn't)-224(listen)-224(and)-224(every)-224(one)-224(of)-224(them)-224(married)-224(out)-224(of)-224(the)-223(tribe.)]TJ/F34 10.9091 Tf 275.786 0 Td [(\035)]TJ/F16 10.9091 Tf -263.83 -13.747 Td [(The)-260(dried)-261(body)-260(of)-261(a)-260(bat,)-264(described)-260(as)-261(having)-260(several)-260(different)]TJ -11.956 -13.549 Td [(kinds)-377(of)-378(hair)-377(\050Lowie)-378(1939,)-409(p.)-633(332\051)-377(was)-378(a)-377(powerful)-377(gambling)]TJ 0 -13.549 Td [(charm.)-712(Professional)-404(Indian)-403(gamblers,)-443(who)-404(traveled)-404(about)-403(the)]TJ 0 -13.549 Td [(country)-347(participating)-347(in)-347(the)-347(hand)-347(game,)-371(often)-347(carried)-347(one.)-540(Bat)]TJ 0 -13.549 Td [(power)-266(was)-267(considered)-266(extremely)-266(dangerous)-266(if)-267(one)-266(did)-266(not)-266(know)]TJ 0 -13.55 Td [(how)-221(to)-221(use)-221(it.)]TJ/F34 10.9091 Tf 60.46 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(My)-221(daughter)-221(found)-221(a)-221(bat)-221(in)-221(a)-221(field)-221(one)-221(day,)-226(but)-221(an)]TJ -65.304 -13.549 Td [(old)-219(Indian)-219(said)-219(that)-219(if)-219(she)-220(didn't)-219(know)-219(how)-219(to)-219(treat)-219(it,)-225(it)-219(would)-219(eat)]TJ 0 -13.549 Td [(up)-234(her)-234(children.)]TJ/F34 10.9091 Tf 68.418 0 Td [(\035)]TJ/F16 10.9091 Tf 7.394 0 Td [(Women)-234(especially)-234(were)-233(afraid)-234(of)-234(bat-talismans)]TJ -75.812 -13.549 Td [(and)-276(of)-277(living)-276(bats.)-329(The)-277(Washo)-276(believe)-276(that)-277(a)-276(bat)-276(charm)-277(is)-276(also)-276(a)]TJ 0 -13.549 Td [(powerful)-251(love)-251(medicine)-250(and)-251(that)-251(a)-250(woman)-251(once)-251(touched)-251(by)-250(such)]TJ 0 -13.549 Td [(a)-352(charm)-351(is)-352(powerless)-352(in)-351(the)-352(hands)-352(of)-351(its)-352(owner.)]TJ/F34 10.9091 Tf 220.245 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(You)-352(touch)-351(a)]TJ -225.088 -13.55 Td [(woman)-250(with)-251(that)-250(thing)-250(and)-250(it)-251(hypnotizes)-250(her.)-251(She)-250(follow)-250(the)-250(guy)]TJ 0 -13.549 Td [(and)-375(die)-374(if)-375(she)-374(don't)-375(go)-374(with)-375(him.)-624(I)-374(don't)-375(believe)-374(I)-375(ever)-374(heard)]TJ 0 -13.549 Td [(of)-312(a)-312(Washo)-312(use)-312(one.)-437(We'd)-312(be)-312(too)-312(afraid.)-436(But)-312(them)-312(Paiutes)-312(and)]TJ 0 -13.549 Td [(Shoshones)-250(use)-250(it.)]TJ/F34 10.9091 Tf 75.458 0 Td [(\035)]TJ/F16 10.9091 Tf -63.503 -13.747 Td [(Except)-399(for)-400(the)-399(painting)-400(of)-399(a)-400(girl)-399(during)-400(her)-399(puberty)-400(dance,)]TJ -11.955 -13.549 Td [(painting)-281(of)-281(the)-280(face)-281(and)-281(body)-281(had)-280(little)-281(part)-281(in)-281(Washo)-280(ritualism,)]TJ 0 -13.549 Td [(although)-230(its)-230(social)-230(significance)-230(may)-230(have)-230(been)-230(important)-229(\050Lowie)]TJ 0 -13.549 Td [(1939,)-444(p.)-714(304\051.)-715(However,)-443(certain)-405(other)-405(customs)-405(of)-405(dress)-404(and)]TJ 0 -13.549 Td [(adornment)-479(appear)-480(to)-479(have)-479(had)-479(religious)-480(significance.)-937(Eagle)]TJ 0 -13.549 Td [(feathers)-164(and)-165(magpie)-164(feathers,)-182(as)-164(well)-165(as)-164(a)-164(bearskin)-165(robe,)-181(conferred)]TJ 0 -13.55 Td [(power.)-447(A)-316(similar)-316(notion)-316(may)-316(explain)-316(the)-315(use)-316(of)-316(the)-316(skin)-316(of)-315(the)]TJ 0 -13.549 Td [(agile)-250(and)-250(wise)-250(long-tailed)-250(weasel)-250(as)-250(a)-250(binding)-250(for)-250(hair)-250(braids.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
372 0 obj <<
/Type /Page
/Contents 373 0 R
/Resources 371 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 366 0 R
>> endobj
368 0 obj <<
/D [372 0 R /XYZ 93.543 529.134 null]
>> endobj
371 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
376 0 obj <<
/Length 379       
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Miscellaneous)-250(Ritual)-16252(71)]TJ
0 g 0 G
 11.956 -30.759 Td [(The)-527(hooting)-527(of)-527(an)-527(owl)-527(or)-527(singing)-527(of)-527(birds)-527(at)-527(night)-526(was)]TJ -11.956 -13.549 Td [(considered)-250(as)-250(a)-250(warning)-250(of)-250(danger)-250(or)-250(an)-250(omen)-250(of)-250(death.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
375 0 obj <<
/Type /Page
/Contents 376 0 R
/Resources 374 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 366 0 R
>> endobj
374 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
377 0 obj
<< /S /GoTo /D (index28) >>
endobj
380 0 obj
(Influence Of Christianity)
endobj
383 0 obj <<
/Length 3992      
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 93.543 479.321 Td [(Influence)-250(Of)-250(Christianity)]TJ/F16 10.9091 Tf 0 -33.572 Td [(The)-377(Washo)-377(have)-378(been)-377(exposed)-377(to)-377(Christianity)-377(from)-377(two)-377(main)]TJ 0 -13.549 Td [(sources.)-217(Missionary)-153(groups)-152(have)-153(maintained)-152(representatives)-152(from)]TJ 0 -13.549 Td [(time)-288(to)-288(time)-289(at)-288(one)-288(or)-288(another)-288(of)-288(the)-289(Washo)-288(colonies.)-364(A)-288(church)]TJ 0 -13.549 Td [(dominates)-534(the)-533(appallingly)-534(dreary)-533(landscape)-534(of)-533(Dresslerville.)]TJ 0 -13.549 Td [(Weather)-442(and)-442(neglect)-442(have)-442(caused)-442(the)-442(building)-442(to)-442(deteriorate.)]TJ 0 -13.55 Td [(Permanent)-191(missionizing)-191(efforts)-191(apparently)-191(have)-191(been)-191(abandoned.)]TJ 0 -13.549 Td [(One)-312(church)-312(group)-312(carries)-312(on)-312(a)-312(summer)-312(Bible)-312(class)-312(for)-311(children)]TJ 0 -13.549 Td [(and)-225(sewing)-224(classes)-225(for)-225(women.)-241(Funerals)-225(are)-225(generally)-224(conducted)]TJ 0 -13.549 Td [(by)-393(a)-393(Christian)-393(minister,)-429(but)-393(this)-394(appears)-393(to)-393(be)-393(a)-393(sop)-393(to)-393(white)]TJ 0 -13.549 Td [(opinion)-244(rather)-244(than)-245(the)-244(result)-244(of)-244(any)-244(real)-245(desire)-244(on)-244(the)-244(part)-244(of)-244(the)]TJ 0 -13.549 Td [(Washo)-290(to)-289(become)-290(Christians.)-369(At)-290(best)-290(they)-289(seem)-290(to)-290(have)-289(simply)]TJ 0 -13.55 Td [(incorporated)-271(Christian)-271(services)-271(as)-271(another)-271(source)-271(of)-271(power.)-313(It)-270(is)]TJ 0 -13.549 Td [(less)-235(than)-235(surprising)-235(that)-235(a)-235(people)-235(whose)-235(main)-235(religious)-235(emphasis)]TJ 0 -13.549 Td [(seems)-312(to)-312(have)-311(been)-312(on)-312(curing)-311(or)-312(subsistence)-312(ritual)-312(should)-311(have)]TJ 0 -13.549 Td [(found)-161(white)-161(doctors)-161(useful)-161(but)-161(white)-161(ministers)-161(a)-161(rather)-161(mysterious)]TJ 0 -13.549 Td [(and)-250(superfluous)-250(bit)-250(of)-250(white)-250(culture.)]TJ 11.956 -13.78 Td [(The)-274(other)-275(main)-274(source)-275(of)-274(Christian)-275(ideas)-274(has)-275(been)-274(the)-274(peyote)]TJ -11.956 -13.549 Td [(cult,)-491(which)-443(includes)-442(a)-443(roughly)-443(Christian)-442(version)-443(of)-443(God)-442(and)]TJ 0 -13.549 Td [(Christ)-516(visualized)-516(as)-515(the)-516(father)-516(and)-516(the)-515(brother.)-1048(The)-515(cross,)]TJ 0 -13.549 Td [(pictures)-310(of)-310(Christ,)-325(and)-310(references)-310(to)-310(Jesus)-310(play)-310(a)-310(role)-310(in)-309(peyote)]TJ 0 -13.549 Td [(ceremonialism.)-867(Other)-455(investigators)-455(\050d'Azevedo)-456(and)-455(Merriam)]TJ 0 -13.549 Td [(1951;)-231(Stewart)-222(1944\051)-222(have)-222(noted)-221(a)-222(shift)-222(toward)-222(Indian)-222(tradition)-221(in)]TJ 0 -13.55 Td [(the)-287(Washo)-286(peyote)-287(cult,)-296(with)-286(an)-287(attending)-286(reduction)-287(of)-286(Christian)]TJ 0 -13.549 Td [(ideas.)-425(The)-308(attitude)-308(of)-309(one)-308(Washo)-308(woman)-309(sums)-308(the)-308(question)-308(up)]TJ 0 -13.549 Td [(quite)-178(well:)]TJ/F34 10.9091 Tf 47.912 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(I)-178(think)-178(them)-178(peyote)-178(people)-178([she)-178(was)-178(not)-178(a)-178(peyotist)-177(but)]TJ -52.756 -13.549 Td [(had)-214(encouraged)-213(her)-214(son)-214(to)-214(attend)-213(a)-214(meeting)-214(to)-213(cure)-214(a)-214(back)-213(injury])]TJ 0 -13.549 Td [(believe)-231(more)-232(what)-231(they)-232(doing)-231(than)-232(the)-231(white)-232(preacher.)]TJ/F34 10.9091 Tf 235.599 0 Td [(\035)]TJ/F16 10.9091 Tf 7.368 0 Td [(Her)-231(own)]TJ -242.967 -13.55 Td [(religion)-280(is)-280(summed)-281(up)-280(in)-280(her)-280(actions.)-341(In)-280(addition)-280(to)-280(sending)-280(her)]TJ 0 -13.549 Td [(son)-302(to)-302(peyote)-302(meetings,)-316(she)-302(had)-302(taken)-302(her)-302(granddaughter)-302(to)-302(the)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
382 0 obj <<
/Type /Page
/Contents 383 0 R
/Resources 381 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 366 0 R
>> endobj
378 0 obj <<
/D [382 0 R /XYZ 93.543 529.134 null]
>> endobj
381 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
384 0 obj
<< /S /GoTo /D (index29) >>
endobj
387 0 obj
(Bibliography)
endobj
390 0 obj <<
/Length 1873      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Bibliography)-19446(73)]TJ
0 g 0 G
 0 -30.759 Td [(shaman)-326(and)-326(is)-325(a)-326(regular)-326(attendant)-325(at)-326(the)-326(church)-326(sewing)-325(school.)]TJ 0 -13.549 Td [(She)-354(was)-354(also)-354(the)-354(person)-354(who)-354(waited)-354(until)-354(the)-354(minister)-354(left)-353(the)]TJ 0 -13.549 Td [(church)-250(to)-250(repeat)-250(ancient)-250(funeral)-250(prayers.)]TJ/F16 7.9701 Tf 291.024 -29.094 Td [([385])]TJ/F16 18.9589 Tf -291.024 -95.84 Td [(Bibliography)]TJ/F37 10.9091 Tf 0 -31.864 Td [(Abbreviations)]TJ/F16 10.9091 Tf 0 -18.447 Td [(AA:)-250(American)-250(Anthropologist)]TJ 0 -13.549 Td [(BAE:)-250(Bureau)-250(of)-250(American)-250(Ethnology)]TJ 0 -13.549 Td [(SI-MC:)-250(Smithsonian)-250(Institution,)-250(Miscellaneous)-250(Collections)]TJ 0 -13.549 Td [(UC:)-250(University)-250(of)-250(California)-250(Publications)]TJ 0 -13.549 Td [(UC-AR:)-250(Anthropological)-250(Records)]TJ 0 -13.55 Td [(UC-PAAE:)-250(American)-250(Archaeology)-250(and)-250(Ethnology)]TJ 0 -23.343 Td [(Barrett,)-250(Samuel)-250(A.)]TJ 10.91 -13.549 Td [(1917.)-256(The)-252(Washo)-252(Indians.)-256(Bull.)-256(Milwaukee)-252(Pub.)-256(Mus.,)-253(Vol.)]TJ 65.454 -13.549 Td [(2,)-250(No.)-250(1,)-250(pp.)-250(1-52.)]TJ -76.364 -23.344 Td [(Cartwright,)-250(W.)-250(D.)]TJ 10.91 -13.549 Td [(1952.)-273(A)-258(Washo)-258(Girls')-258(Puberty)-258(Ceremony.)-273(Pro.)-274(30th)-257(Int.)]TJ 65.454 -13.549 Td [(Cong.)-250(of)-250(Americanists,)-250(pp.)-250(136-142.)-250(London.)]TJ -76.364 -23.344 Td [(Dangberg,)-250(Grace)]TJ 10.91 -13.549 Td [(1927.)-250(Washo)-250(Texts.)-250(UC-PAAE)-250(22:391-443.)]TJ -10.91 -23.343 Td [(d'Azevedo,)-250(Warren)-250(L.,)-250(and)-250(A.)-250(P.)-250(Merriam)]TJ 10.91 -13.55 Td [(1957.)-250(Washo)-250(Peyote)-250(Songs.)-250(AA)-250(59:615-641.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
389 0 obj <<
/Type /Page
/Contents 390 0 R
/Resources 388 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 366 0 R
>> endobj
391 0 obj <<
/D [389 0 R /XYZ 46.771 461.983 null]
>> endobj
385 0 obj <<
/D [389 0 R /XYZ 46.771 435.268 null]
>> endobj
388 0 obj <<
/Font << /F16 7 0 R /F37 75 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
394 0 obj <<
/Length 2219      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(74)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(Freed,)-250(Stanley)-250(A.)]TJ 10.909 -13.549 Td [(1960.)-250(Changing)-250(Washo)-250(Kinship.)-250(UC-AR)-250(14:349-418.)]TJ -10.909 -25.011 Td [(Heizer,)-250(Robert)-250(F.)]TJ 10.909 -13.549 Td [(1950.)-256(Kutsavi,)-253(A)-252(Great)-252(Basin)-252(Indian)-253(Food.)-256(Kroeber)-252(Anthro.)]TJ 65.455 -13.55 Td [(Papers,)-250(No.)-250(2)-250(\050Fall\051,)-250(pp.)-250(35-41.)]TJ -76.364 -25.011 Td [(Kroeber,)-250(Alfred)-250(L.)]TJ 10.909 -13.549 Td [(1907.)-283(Religion)-260(of)-261(the)-261(Indians)-261(of)-261(California.)-282(UC-PAA)]TJ 65.455 -13.549 Td [(4:319-356.)]TJ -76.364 -25.011 Td [(Kluckhohn,)-250(Clyde,)-250(and)-250(Dorothea)-250(Leighton)]TJ 10.909 -13.55 Td [(1947.)-250(The)-250(Navaho.)-250(Cambridge;)-250(London.)]TJ -10.909 -25.011 Td [(Lowie,)-250(Robert)-250(H.)]TJ 10.909 -13.549 Td [(1939.)-285(Ethnographic)-262(Notes)-261(on)-262(the)-262(Washo.)-285(UC-PAAE)]TJ 65.455 -13.549 Td [(36:301-352.)]TJ -76.364 -25.011 Td [(Mooney,)-250(James)]TJ 10.909 -13.549 Td [(1896.)-257(The)-252(Ghost)-253(Dance)-252(Religion)-252(and)-252(the)-253(Sioux)-252(Outbreak)-252(of)]TJ 65.455 -13.55 Td [(1890.)-273(BAE)-257(14th)-258(Ann.)-273(Report,)-259(Part)-258(2,)-259(pp.)]TJ 0 -13.549 Td [(641-1136.)]TJ -65.455 -13.549 Td [(1928.)-263(Aboriginal)-254(population)-255(of)-254(America)-255(North)-254(of)-254(Mexico.)]TJ 65.455 -13.549 Td [(SI-MC)-250(80,)-250(No.)-250(7,)-250(Washington,)-250(D.)-250(C.)]TJ -76.364 -25.011 Td [(Siskin,)-250(E.)-250(E.)]TJ 10.909 -13.55 Td [(MS)-251(The)-251(Impact)-251(of)-251(the)-251(Peyote)-251(Cult)-251(Upon)-251(Shamanism)-251(Among)]TJ 65.455 -13.549 Td [(the)-255(Washo)-255(Indians.)-265(Ph.D.)-255(Diss.)-265(1941.)-265(Yale)]TJ 0 -13.549 Td [(Univ.)]TJ -76.364 -25.011 Td [(Steward,)-250(Julian)-250(H.)]TJ 10.909 -13.549 Td [(1936.)-284(Myths)-262(of)-261(the)-261(Owens)-262(Valley)-261(Paiute.)-284(UC-PAAE)]TJ 65.455 -13.55 Td [(34:355-440.)]TJ -65.455 -13.549 Td [(1941.)-254(Culture)-251(Element)-251(Distribution,)-251(XIII:)-251(Nevada)-252(Shoshone.)]TJ 65.455 -13.549 Td [(UC-AR)-250(4:209-360.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
393 0 obj <<
/Type /Page
/Contents 394 0 R
/Resources 392 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 366 0 R
>> endobj
392 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
397 0 obj <<
/Length 564       
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(Bibliography)-19446(75)]TJ
0 g 0 G
 0 -30.759 Td [(Stewart,)-250(Omer)-250(C.)]TJ 10.91 -13.549 Td [(1941.)-261(Culture)-254(Element)-253(Distribution,)-255(XIV:)-253(Northern)-254(Paiute.)]TJ 65.454 -13.549 Td [(UC-AR)-250(4:361-446.)]TJ -65.454 -13.549 Td [(1944.)-288(Washo-Northern)-263(Paiute)-262(Peyotism.)-288(UC-PAAE)]TJ 65.454 -13.55 Td [(40:63-142.)]TJ -76.364 -24.458 Td [(Whiting,)-250(Beatrice)-250(Blyth)]TJ 10.91 -13.549 Td [(1950.)-250(Paiute)-250(Sorcery,)-250(New)-250(York.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
396 0 obj <<
/Type /Page
/Contents 397 0 R
/Resources 395 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 398 0 R
>> endobj
395 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
401 0 obj <<
/Length 32        
>>
stream
0 g 0 G
0 g 0 G
0 g 0 G
0 g 0 G
endstream
endobj
400 0 obj <<
/Type /Page
/Contents 401 0 R
/Resources 399 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 398 0 R
>> endobj
399 0 obj <<
/ProcSet [ /PDF ]
>> endobj
402 0 obj
<< /S /GoTo /D (index30) >>
endobj
405 0 obj
(Footnotes)
endobj
408 0 obj <<
/Length 96        
>>
stream
0 g 0 G
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 46.771 479.321 Td [(Footnotes)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
407 0 obj <<
/Type /Page
/Contents 408 0 R
/Resources 406 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 398 0 R
>> endobj
409 0 obj <<
/D [407 0 R /XYZ 46.771 529.134 null]
>> endobj
403 0 obj <<
/D [407 0 R /XYZ 46.771 529.134 null]
>> endobj
406 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
412 0 obj <<
/Length 32        
>>
stream
0 g 0 G
0 g 0 G
0 g 0 G
0 g 0 G
endstream
endobj
411 0 obj <<
/Type /Page
/Contents 412 0 R
/Resources 410 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 398 0 R
>> endobj
410 0 obj <<
/ProcSet [ /PDF ]
>> endobj
415 0 obj <<
/Length 183       
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 10.9091 Tf 46.771 518.175 Td [(***END)-500(OF)-500(THE)-500(PROJECT)-500(GUTENBERG)-500(EBOOK)]TJ 0 -13.549 Td [(WASHO)-500(RELIGION***)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
414 0 obj <<
/Type /Page
/Contents 415 0 R
/Resources 413 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 398 0 R
>> endobj
416 0 obj <<
/D [414 0 R /XYZ 46.771 529.134 null]
>> endobj
413 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
419 0 obj <<
/Length 32        
>>
stream
0 g 0 G
0 g 0 G
0 g 0 G
0 g 0 G
endstream
endobj
418 0 obj <<
/Type /Page
/Contents 419 0 R
/Resources 417 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 398 0 R
>> endobj
417 0 obj <<
/ProcSet [ /PDF ]
>> endobj
420 0 obj
<< /S /GoTo /D (index31) >>
endobj
423 0 obj
(Credits)
endobj
426 0 obj <<
/Length 468       
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 46.771 479.321 Td [(Credits)]TJ/F16 10.9091 Tf 0 -37.877 Td [(February)-250(27,)-250(2010)]TJ 43.637 -19.003 Td [(Project)-250(Gutenberg)-250(TEI)-250(edition)-250(1)]TJ 0 -13.55 Td [(Produced)-310(by)-309(Colin)-310(Bell,)-325(Joseph)-309(Cooper,)-325(David)-309(King,)]TJ 0 -13.549 Td [(and)-603(the)-602(Online)-603(Distributed)-603(Proofreading)-603(Team)-602(at)]TJ 0 -13.549 Td [(<http://www.pgdp.net/>.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
425 0 obj <<
/Type /Page
/Contents 426 0 R
/Resources 424 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 427 0 R
>> endobj
421 0 obj <<
/D [425 0 R /XYZ 46.771 529.134 null]
>> endobj
424 0 obj <<
/Font << /F16 7 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
430 0 obj <<
/Length 32        
>>
stream
0 g 0 G
0 g 0 G
0 g 0 G
0 g 0 G
endstream
endobj
429 0 obj <<
/Type /Page
/Contents 430 0 R
/Resources 428 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 427 0 R
>> endobj
428 0 obj <<
/ProcSet [ /PDF ]
>> endobj
431 0 obj
<< /S /GoTo /D (index32) >>
endobj
434 0 obj
(A Word from Project Gutenberg)
endobj
438 0 obj <<
/Length 3056      
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 46.771 479.321 Td [(A)-250(Word)-250(from)-250(Project)-250(Gutenberg)]TJ/F16 10.9091 Tf 0 -32.422 Td [(This)-250(file)-250(should)-250(be)-250(named)-250(31429-pdf.pdf)-250(or)-250(31429-pdf.zip.)]TJ 11.956 -13.549 Td [(This)-291(and)-291(all)-291(associated)-291(files)-291(of)-291(various)-291(formats)-291(will)-291(be)-290(found)]TJ -11.956 -13.549 Td [(in:)]TJ/F16 9.8629 Tf 19.637 -22.64 Td [(http://www.gutenberg.org/dirs/3/1/4/2/31429/)]TJ/F16 10.9091 Tf -7.681 -23.368 Td [(Updated)-447(editions)-446(will)-447(replace)-447(the)-447(previous)-446(one)]TJ/F34 10.9091 Tf 220.746 0 Td [(\024)]TJ/F16 10.9091 Tf 15.782 0 Td [(the)-447(old)]TJ -248.484 -13.549 Td [(editions)-250(will)-250(be)-250(renamed.)]TJ 11.956 -13.549 Td [(Creating)-308(the)-308(works)-308(from)-308(public)-308(domain)-308(print)-308(editions)-308(means)]TJ -11.956 -13.549 Td [(that)-220(no)-220(one)-219(owns)-220(a)-220(United)-220(States)-220(copyright)-219(in)-220(these)-220(works,)-226(so)-219(the)]TJ 0 -13.549 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.55 Td [(States)-163(without)-163(permission)-163(and)-163(without)-163(paying)-163(copyright)-163(royalties.)]TJ 0 -13.549 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.549 Td [(license,)-360(apply)-337(to)-338(copying)-338(and)-337(distributing)-338(Project)-337(Gutenberg)]TJ/F44 10.9091 Tf 269.939 0 Td [(")]TJ/F16 10.9091 Tf -269.939 -13.549 Td [(electronic)-247(works)-246(to)-247(protect)-246(the)-247(Project)-246(Gutenberg)]TJ/F44 10.9091 Tf 214.88 0 Td [(")]TJ/F16 10.9091 Tf 13.381 0 Td [(concept)-247(and)]TJ -228.261 -13.549 Td [(trademark.)-243(Project)-228(Gutenberg)-227(is)-228(a)-228(registered)-228(trademark,)-233(and)-227(may)]TJ 0 -13.55 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.549 Td [(specific)-377(permission.)-630(If)-377(you)-377(do)-377(not)-377(charge)-377(anything)-377(for)-376(copies)]TJ 0 -13.549 Td [(of)-468(this)-468(eBook,)-523(complying)-468(with)-468(the)-467(rules)-468(is)-468(very)-468(easy.)-904(You)]TJ 0 -13.549 Td [(may)-329(use)-329(this)-329(eBook)-329(for)-329(nearly)-329(any)-329(purpose)-329(such)-329(as)-329(creation)-328(of)]TJ 0 -13.549 Td [(derivative)-251(works,)-252(reports,)-251(performances)-251(and)-251(research.)-253(They)-251(may)]TJ 0 -13.55 Td [(be)-152(modified)-152(and)-152(printed)-153(and)-152(given)-152(away)]TJ/F34 10.9091 Tf 170.977 0 Td [(\024)]TJ/F16 10.9091 Tf 12.569 0 Td [(you)-152(may)-152(do)-152(practically)]TJ/F37 10.9091 Tf -183.546 -13.549 Td [(anything)]TJ/F16 10.9091 Tf 41.786 0 Td [(with)-330(public)-331(domain)-330(eBooks.)-491(Redistribution)-331(is)-330(subject)]TJ -41.786 -13.549 Td [(to)-250(the)-250(trademark)-250(license,)-250(especially)-250(commercial)-250(redistribution.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
437 0 obj <<
/Type /Page
/Contents 438 0 R
/Resources 436 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 427 0 R
/Annots [ 435 0 R ]
>> endobj
435 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [66.408 395.011 247.235 403.798]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/dirs/3/1/4/2/31429/) >> 
>> endobj
432 0 obj <<
/D [437 0 R /XYZ 46.771 529.134 null]
>> endobj
9 0 obj <<
/D [437 0 R /XYZ 46.771 124.715 null]
>> endobj
436 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R /F44 439 0 R /F37 75 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
440 0 obj
<< /S /GoTo /D (index33) >>
endobj
443 0 obj
(The Full Project Gutenberg License)
endobj
449 0 obj <<
/Length 3248      
>>
stream
0 g 0 G
0 g 0 G
BT
/F16 18.9589 Tf 93.543 479.321 Td [(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)]TJ/F37 10.9091 Tf 0 -31.684 Td [(Please)-250(read)-250(this)-250(before)-250(you)-250(distribute)-250(or)-250(use)-250(this)-250(work.)]TJ/F16 10.9091 Tf 11.956 -13.55 Td [(To)-269(protect)-269(the)-268(Project)-269(Gutenberg)]TJ/F44 10.9091 Tf 144.428 0 Td [(")]TJ/F16 10.9091 Tf 13.623 0 Td [(mission)-269(of)-269(promoting)-268(the)]TJ -170.007 -13.549 Td [(free)-225(distribution)-225(of)-226(electronic)-225(works,)-230(by)-225(using)-225(or)-225(distributing)-225(this)]TJ 0 -13.549 Td [(work)-304(\050or)-304(any)-303(other)-304(work)-304(associated)-304(in)-303(any)-304(way)-304(with)-304(the)-303(phrase)]TJ/F34 10.9091 Tf 0 -13.549 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(Project)-270(Gutenberg)]TJ/F34 10.9091 Tf 79.894 0 Td [(\035)]TJ/F16 10.9091 Tf 4.844 0 Td [(\051,)-275(you)-269(agree)-270(to)-270(comply)-269(with)-270(all)-269(the)-270(terms)-270(of)]TJ -89.582 -13.549 Td [(the)-268(Full)-269(Project)-268(Gutenberg)]TJ/F44 10.9091 Tf 116.649 0 Td [(")]TJ/F16 10.9091 Tf 13.618 0 Td [(License)-268(\050available)-268(with)-269(this)-268(file)-268(or)]TJ -130.267 -13.55 Td [(online)-250(at)-250(http://www.gutenberg.org/license\051.)]TJ/F16 15.7808 Tf 0 -35.486 Td [(Section)-250(1.)]TJ/F16 13.1507 Tf 15.58 -44.421 Td [(General)-255(Terms)-254(of)-255(Use)-255(&)-254(Redistributing)-255(Project)]TJ 45.013 -17.095 Td [(Gutenberg)]TJ/F44 13.1507 Tf 55.509 0 Td [(")]TJ/F16 13.1507 Tf 16.415 0 Td [(electronic)-268(works)]TJ -132.517 -41.803 Td [(1.A.)]TJ/F16 10.9091 Tf 0 -25.902 Td [(By)-583(reading)-583(or)-583(using)-583(any)-583(part)-583(of)-583(this)-583(Project)-583(Gutenberg)]TJ/F44 10.9091 Tf 269.939 0 Td [(")]TJ/F16 10.9091 Tf -269.939 -13.549 Td [(electronic)-405(work,)-443(you)-404(indicate)-405(that)-404(you)-405(have)-404(read,)-443(understand,)]TJ 0 -13.549 Td [(agree)-309(to)-309(and)-308(accept)-309(all)-309(the)-309(terms)-308(of)-309(this)-309(license)-309(and)-308(intellectual)]TJ 0 -13.55 Td [(property)-331(\050trademark/copyright\051)-332(agreement.)-493(If)-332(you)-331(do)-331(not)-331(agree)]TJ 0 -13.549 Td [(to)-239(abide)-238(by)-239(all)-239(the)-238(terms)-239(of)-239(this)-238(agreement,)-241(you)-239(must)-239(cease)-238(using)]TJ 0 -13.549 Td [(and)-195(return)-194(or)-195(destroy)-194(all)-194(copies)-195(of)-194(Project)-195(Gutenberg)]TJ/F44 10.9091 Tf 224.803 0 Td [(")]TJ/F16 10.9091 Tf 12.813 0 Td [(electronic)]TJ -237.616 -13.549 Td [(works)-268(in)-269(your)-268(possession.)-305(If)-268(you)-269(paid)-268(a)-268(fee)-269(for)-268(obtaining)-268(a)-268(copy)]TJ 0 -13.549 Td [(of)-210(or)-209(access)-210(to)-210(a)-209(Project)-210(Gutenberg)]TJ/F44 10.9091 Tf 150.044 0 Td [(")]TJ/F16 10.9091 Tf 12.979 0 Td [(electronic)-210(work)-209(and)-210(you)-210(do)]TJ -163.023 -13.55 Td [(not)-307(agree)-307(to)-308(be)-307(bound)-307(by)-307(the)-307(terms)-307(of)-308(this)-307(agreement,)-321(you)-307(may)]TJ 0 -13.549 Td [(obtain)-292(a)-292(refund)-292(from)-293(the)-292(person)-292(or)-292(entity)-292(to)-292(whom)-292(you)-292(paid)-292(the)]TJ 0 -13.549 Td [(fee)-250(as)-250(set)-250(forth)-250(in)-250(paragraph)-250(1.E.8.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
448 0 obj <<
/Type /Page
/Contents 449 0 R
/Resources 447 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 427 0 R
/Annots [ 444 0 R 445 0 R 446 0 R ]
>> endobj
444 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [264.296 377.512 362.159 387.232]
/Subtype /Link
/A << /S /GoTo /D (pglicense) >>
>> endobj
445 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [134.147 363.963 280.798 373.683]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/license) >> 
>> endobj
446 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [217.743 63.764 243.499 73.484]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
441 0 obj <<
/D [448 0 R /XYZ 93.543 529.134 null]
>> endobj
450 0 obj <<
/D [448 0 R /XYZ 93.543 363.963 null]
>> endobj
451 0 obj <<
/D [448 0 R /XYZ 93.543 254.119 null]
>> endobj
447 0 obj <<
/Font << /F16 7 0 R /F37 75 0 R /F44 439 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
457 0 obj <<
/Length 4377      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(85)]TJ
0 g 0 G
/F16 13.1507 Tf 0 -30.759 Td [(1.B.)]TJ/F34 10.9091 Tf 0 -27.866 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(Project)-352(Gutenberg)]TJ/F34 10.9091 Tf 80.79 0 Td [(\035)]TJ/F16 10.9091 Tf 8.681 0 Td [(is)-352(a)-352(registered)-351(trademark.)-556(It)-351(may)-352(only)-352(be)]TJ -94.315 -13.549 Td [(used)-395(on)-394(or)-395(associated)-394(in)-395(any)-395(way)-394(with)-395(an)-394(electronic)-395(work)-394(by)]TJ 0 -13.549 Td [(people)-347(who)-346(agree)-347(to)-346(be)-347(bound)-347(by)-346(the)-347(terms)-346(of)-347(this)-346(agreement.)]TJ 0 -13.55 Td [(There)-531(are)-531(a)-531(few)-530(things)-531(that)-531(you)-531(can)-531(do)-531(with)-531(most)-530(Project)]TJ 0 -13.549 Td [(Gutenberg)]TJ/F44 10.9091 Tf 46.048 0 Td [(")]TJ/F16 10.9091 Tf 13.674 0 Td [(electronic)-273(works)-274(even)-273(without)-274(complying)-273(with)-274(the)]TJ -59.722 -13.549 Td [(full)-229(terms)-228(of)-229(this)-228(agreement.)-243(See)-229(paragraph)-228(1.C)-229(below.)-243(There)-228(are)]TJ 0 -13.549 Td [(a)-330(lot)-331(of)-330(things)-330(you)-331(can)-330(do)-330(with)-331(Project)-330(Gutenberg)]TJ/F44 10.9091 Tf 223.321 0 Td [(")]TJ/F16 10.9091 Tf 14.295 0 Td [(electronic)]TJ -237.616 -13.549 Td [(works)-193(if)-192(you)-193(follow)-192(the)-193(terms)-193(of)-192(this)-193(agreement)-192(and)-193(help)-192(preserve)]TJ 0 -13.55 Td [(free)-284(future)-283(access)-284(to)-283(Project)-284(Gutenberg)]TJ/F44 10.9091 Tf 171.772 0 Td [(")]TJ/F16 10.9091 Tf 13.784 0 Td [(electronic)-284(works.)-350(See)]TJ -185.556 -13.549 Td [(paragraph)-250(1.E)-250(below.)]TJ/F16 13.1507 Tf 0 -43.303 Td [(1.C.)]TJ/F16 10.9091 Tf 0 -27.866 Td [(The)-686(Project)-687(Gutenberg)-686(Literary)-687(Archive)-686(Foundation)-686(\050)]TJ/F34 10.9091 Tf 262.456 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(the)]TJ -267.299 -13.549 Td [(Foundation)]TJ/F34 10.9091 Tf 49.702 0 Td [(\035)]TJ/F16 10.9091 Tf 8.901 0 Td [(or)-372(PGLAF\051,)-372(owns)-372(a)-372(compilation)-372(copyright)-372(in)-372(the)]TJ -58.603 -13.549 Td [(collection)-340(of)-339(Project)-340(Gutenberg)]TJ/F44 10.9091 Tf 140.176 0 Td [(")]TJ/F16 10.9091 Tf 14.395 0 Td [(electronic)-339(works.)-519(Nearly)-339(all)]TJ -154.571 -13.549 Td [(the)-233(individual)-232(works)-233(in)-233(the)-232(collection)-233(are)-233(in)-232(the)-233(public)-233(domain)-232(in)]TJ 0 -13.549 Td [(the)-289(United)-288(States.)-367(If)-288(an)-289(individual)-289(work)-289(is)-288(in)-289(the)-289(public)-288(domain)]TJ 0 -13.55 Td [(in)-253(the)-252(United)-253(States)-253(and)-253(you)-252(are)-253(located)-253(in)-253(the)-252(United)-253(States,)-253(we)]TJ 0 -13.549 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.549 Td [(performing,)-231(displaying)-226(or)-226(creating)-226(derivative)-226(works)-226(based)-226(on)-225(the)]TJ 0 -13.549 Td [(work)-232(as)-231(long)-232(as)-231(all)-232(references)-231(to)-232(Project)-231(Gutenberg)-232(are)-231(removed.)]TJ 0 -13.549 Td [(Of)-188(course,)-200(we)-187(hope)-188(that)-187(you)-187(will)-188(support)-187(the)-188(Project)-187(Gutenberg)]TJ/F44 10.9091 Tf 269.939 0 Td [(")]TJ/F16 10.9091 Tf -269.939 -13.55 Td [(mission)-334(of)-334(promoting)-335(free)-334(access)-334(to)-334(electronic)-334(works)-334(by)-334(freely)]TJ 0 -13.549 Td [(sharing)-212(Project)-211(Gutenberg)]TJ/F44 10.9091 Tf 113.685 0 Td [(")]TJ/F16 10.9091 Tf 12.999 0 Td [(works)-212(in)-211(compliance)-212(with)-211(the)-212(terms)]TJ -126.684 -13.549 Td [(of)-441(this)-441(agreement)-441(for)-441(keeping)-441(the)-441(Project)-441(Gutenberg)]TJ/F44 10.9091 Tf 241.5 0 Td [(")]TJ/F16 10.9091 Tf 15.501 0 Td [(name)]TJ -257.001 -13.549 Td [(associated)-262(with)-262(the)-262(work.)-286(You)-262(can)-262(easily)-262(comply)-262(with)-262(the)-262(terms)]TJ 0 -13.549 Td [(of)-283(this)-284(agreement)-283(by)-283(keeping)-284(this)-283(work)-283(in)-284(the)-283(same)-283(format)-283(with)]TJ 0 -13.55 Td [(its)-287(attached)-287(full)-287(Project)-287(Gutenberg)]TJ/F44 10.9091 Tf 151.285 0 Td [(")]TJ/F16 10.9091 Tf 13.821 0 Td [(License)-287(when)-287(you)-287(share)-287(it)]TJ -165.106 -13.549 Td [(without)-250(charge)-250(with)-250(others.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
456 0 obj <<
/Type /Page
/Contents 457 0 R
/Resources 455 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 427 0 R
/Annots [ 453 0 R 454 0 R ]
>> endobj
453 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [236.157 420.185 251.616 429.905]
/Subtype /Link
/A << /S /GoTo /D (pglicense1C) >>
>> endobj
454 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [93.113 365.988 107.96 375.708]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E) >>
>> endobj
458 0 obj <<
/D [456 0 R /XYZ 46.771 529.134 null]
>> endobj
459 0 obj <<
/D [456 0 R /XYZ 46.771 354.098 null]
>> endobj
460 0 obj <<
/D [456 0 R /XYZ 46.771 66.142 null]
>> endobj
455 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R /F44 439 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
467 0 obj <<
/Length 3312      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(86)-18252(Washo)-250(Religion)]TJ
0 g 0 G
/F16 13.1507 Tf 0 -30.759 Td [(1.D.)]TJ/F16 10.9091 Tf 0 -29.35 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.549 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.549 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.55 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.549 Td [(to)-439(the)-440(terms)-439(of)-439(this)-439(agreement)-440(before)-439(downloading,)-486(copying,)]TJ 0 -13.549 Td [(displaying,)-243(performing,)-243(distributing)-241(or)-241(creating)-240(derivative)-241(works)]TJ 0 -13.549 Td [(based)-268(on)-269(this)-268(work)-269(or)-268(any)-269(other)-268(Project)-269(Gutenberg)]TJ/F44 10.9091 Tf 221.57 0 Td [(")]TJ/F16 10.9091 Tf 13.62 0 Td [(work.)-305(The)]TJ -235.19 -13.549 Td [(Foundation)-344(makes)-343(no)-344(representations)-343(concerning)-344(the)-343(copyright)]TJ 0 -13.55 Td [(status)-250(of)-250(any)-250(work)-250(in)-250(any)-250(country)-250(outside)-250(the)-250(United)-250(States.)]TJ/F16 13.1507 Tf 0 -45.973 Td [(1.E.)]TJ/F16 10.9091 Tf 0 -29.351 Td [(Unless)-250(you)-250(have)-250(removed)-250(all)-250(references)-250(to)-250(Project)-250(Gutenberg:)]TJ 0 -27.168 Td [(1.E.1.)]TJ 0 -27.168 Td [(The)-259(following)-260(sentence,)-261(with)-260(active)-259(links)-259(to,)-262(or)-259(other)-259(immediate)]TJ 0 -13.549 Td [(access)-465(to,)-520(the)-465(full)-466(Project)-465(Gutenberg)]TJ/F44 10.9091 Tf 170.488 0 Td [(")]TJ/F16 10.9091 Tf 15.769 0 Td [(License)-465(must)-466(appear)]TJ -186.257 -13.55 Td [(prominently)-274(whenever)-275(any)-274(copy)-274(of)-275(a)-274(Project)-274(Gutenberg)]TJ/F44 10.9091 Tf 244.529 0 Td [(")]TJ/F16 10.9091 Tf 13.683 0 Td [(work)]TJ -258.212 -13.549 Td [(\050any)-421(work)-422(on)-421(which)-421(the)-422(phrase)]TJ/F34 10.9091 Tf 148.755 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(Project)-421(Gutenberg)]TJ/F34 10.9091 Tf 81.549 0 Td [(\035)]TJ/F16 10.9091 Tf 9.44 0 Td [(appears,)]TJ -244.587 -13.549 Td [(or)-347(with)-346(which)-347(the)-346(phrase)]TJ/F34 10.9091 Tf 115.849 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(Project)-346(Gutenberg)]TJ/F34 10.9091 Tf 80.732 0 Td [(\035)]TJ/F16 10.9091 Tf 8.624 0 Td [(is)-346(associated\051)-347(is)]TJ -210.049 -13.549 Td [(accessed,)-250(displayed,)-250(performed,)-250(viewed,)-250(copied)-250(or)-250(distributed:)]TJ/F16 9.8629 Tf 19.637 -25.35 Td [(This)-432(eBook)-432(is)-432(for)-432(the)-432(use)-433(of)-432(anyone)-432(anywhere)-432(at)-432(no)-432(cost)]TJ 0 -12.822 Td [(and)-345(with)-344(almost)-345(no)-344(restrictions)-345(whatsoever.)-534(You)-345(may)-344(copy)]TJ 0 -12.822 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.822 Td [(Gutenberg)-476(License)-476(included)-476(with)-476(this)-475(eBook)-476(or)-476(online)-476(at)]TJ 0 -12.821 Td [(http://www.gutenberg.org)]TJ/F16 10.9091 Tf -19.637 -40.246 Td [(1.E.2.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
466 0 obj <<
/Type /Page
/Contents 467 0 R
/Resources 465 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 427 0 R
/Annots [ 462 0 R ]
>> endobj
462 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [113.18 104.237 215.636 113.025]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org) >> 
>> endobj
461 0 obj <<
/D [466 0 R /XYZ 93.543 364.976 null]
>> endobj
468 0 obj <<
/D [466 0 R /XYZ 93.543 302.729 null]
>> endobj
469 0 obj <<
/D [466 0 R /XYZ 93.543 91.16 null]
>> endobj
465 0 obj <<
/Font << /F16 7 0 R /F44 439 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
474 0 obj <<
/Length 3638      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(87)]TJ
0 g 0 G
 0 -30.759 Td [(If)-295(an)-295(individual)-295(Project)-295(Gutenberg)]TJ/F44 10.9091 Tf 151.639 0 Td [(")]TJ/F16 10.9091 Tf 13.91 0 Td [(electronic)-295(work)-295(is)-295(derived)]TJ -165.549 -13.549 Td [(from)-228(the)-229(public)-228(domain)-228(\050does)-228(not)-228(contain)-229(a)-228(notice)-228(indicating)-228(that)]TJ 0 -13.549 Td [(it)-184(is)-183(posted)-184(with)-183(permission)-184(of)-183(the)-184(copyright)-184(holder\051,)-196(the)-184(work)-183(can)]TJ 0 -13.549 Td [(be)-256(copied)-256(and)-256(distributed)-256(to)-256(anyone)-256(in)-256(the)-256(United)-256(States)-255(without)]TJ 0 -13.55 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.549 Td [(access)-248(to)-248(a)-248(work)-248(with)-248(the)-248(phrase)]TJ/F34 10.9091 Tf 143.745 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(Project)-248(Gutenberg)]TJ/F34 10.9091 Tf 79.658 0 Td [(\035)]TJ/F16 10.9091 Tf 7.548 0 Td [(associated)]TJ -235.794 -13.549 Td [(with)-410(or)-411(appearing)-410(on)-410(the)-411(work,)-450(you)-410(must)-411(comply)-410(either)-410(with)]TJ 0 -13.549 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.549 Td [(permission)-280(for)-281(the)-280(use)-281(of)-280(the)-281(work)-280(and)-281(the)-280(Project)-280(Gutenberg)]TJ/F44 10.9091 Tf 269.939 0 Td [(")]TJ/F16 10.9091 Tf -269.939 -13.55 Td [(trademark)-250(as)-250(set)-250(forth)-250(in)-250(paragraphs)-250(1.E.8)-250(or)-250(1.E.9.)]TJ 0 -38.607 Td [(1.E.3.)]TJ 0 -26.259 Td [(If)-344(an)-343(individual)-344(Project)-343(Gutenberg)]TJ/F44 10.9091 Tf 153.755 0 Td [(")]TJ/F16 10.9091 Tf 14.439 0 Td [(electronic)-344(work)-343(is)-344(posted)]TJ -168.194 -13.549 Td [(with)-551(the)-551(permission)-550(of)-551(the)-551(copyright)-551(holder,)-626(your)-551(use)-550(and)]TJ 0 -13.549 Td [(distribution)-429(must)-429(comply)-429(with)-429(both)-429(paragraphs)-429(1.E.1)-428(through)]TJ 0 -13.549 Td [(1.E.7)-251(and)-250(any)-251(additional)-250(terms)-250(imposed)-251(by)-250(the)-251(copyright)-250(holder.)]TJ 0 -13.549 Td [(Additional)-524(terms)-524(will)-523(be)-524(linked)-524(to)-524(the)-524(Project)-523(Gutenberg)]TJ/F44 10.9091 Tf 269.939 0 Td [(")]TJ/F16 10.9091 Tf -269.939 -13.55 Td [(License)-212(for)-211(all)-212(works)-212(posted)-211(with)-212(the)-212(permission)-211(of)-212(the)-211(copyright)]TJ 0 -13.549 Td [(holder)-250(found)-250(at)-250(the)-250(beginning)-250(of)-250(this)-250(work.)]TJ 0 -38.608 Td [(1.E.4.)]TJ 0 -26.258 Td [(Do)-275(not)-275(unlink)-275(or)-274(detach)-275(or)-275(remove)-275(the)-275(full)-275(Project)-274(Gutenberg)]TJ/F44 10.9091 Tf 269.939 0 Td [(")]TJ/F16 10.9091 Tf -269.939 -13.549 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.549 Td [(this)-185(work)-185(or)-185(any)-185(other)-185(work)-185(associated)-185(with)-185(Project)-185(Gutenberg)]TJ/F44 10.9091 Tf 267.212 0 Td [(")]TJ/F16 10.9091 Tf 10.691 0 Td [(.)]TJ -277.903 -38.608 Td [(1.E.5.)]TJ 0 -26.258 Td [(Do)-457(not)-457(copy,)-508(display,)-509(perform,)-508(distribute)-457(or)-457(redistribute)-456(this)]TJ 0 -13.55 Td [(electronic)-441(work,)-488(or)-441(any)-441(part)-441(of)-440(this)-441(electronic)-441(work,)-488(without)]TJ 0 -13.549 Td [(prominently)-258(displaying)-257(the)-258(sentence)-258(set)-257(forth)-258(in)-258(paragraph)-257(1.E.1)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
473 0 obj <<
/Type /Page
/Contents 474 0 R
/Resources 472 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 478 0 R
/Annots [ 463 0 R 464 0 R 470 0 R 471 0 R ]
>> endobj
463 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [192.525 420.953 215.554 430.673]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
464 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [206.12 393.854 229.149 403.574]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
470 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [265.755 301.89 288.784 311.61]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
471 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [304.372 63.764 327.401 73.484]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
475 0 obj <<
/D [473 0 R /XYZ 46.771 381.505 null]
>> endobj
476 0 obj <<
/D [473 0 R /XYZ 46.771 235.344 null]
>> endobj
477 0 obj <<
/D [473 0 R /XYZ 46.771 143.379 null]
>> endobj
472 0 obj <<
/Font << /F16 7 0 R /F44 439 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
484 0 obj <<
/Length 3785      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(88)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 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.549 Td [(Project)-250(Gutenberg)]TJ/F44 10.9091 Tf 79.68 0 Td [(")]TJ/F16 10.9091 Tf 13.418 0 Td [(License.)]TJ -93.098 -34.591 Td [(1.E.6.)]TJ 0 -24.07 Td [(You)-475(may)-476(convert)-475(to)-476(and)-475(distribute)-476(this)-475(work)-476(in)-475(any)-475(binary,)]TJ 0 -13.549 Td [(compressed,)-556(marked)-495(up,)-556(nonproprietary)-495(or)-495(proprietary)-494(form,)]TJ 0 -13.549 Td [(including)-439(any)-439(word)-439(processing)-439(or)-439(hypertext)-439(form.)-817(However,)]TJ 0 -13.55 Td [(if)-595(you)-595(provide)-595(access)-595(to)-595(or)-595(distribute)-595(copies)-595(of)-595(a)-595(Project)]TJ 0 -13.549 Td [(Gutenberg)]TJ/F44 10.9091 Tf 46.048 0 Td [(")]TJ/F16 10.9091 Tf 13.484 0 Td [(work)-256(in)-256(a)-256(format)-256(other)-256(than)]TJ/F34 10.9091 Tf 122.795 0 Td [(\034)]TJ/F16 10.9091 Tf 4.844 0 Td [(Plain)-256(Vanilla)-256(ASCII)]TJ/F34 10.9091 Tf 88.615 0 Td [(\035)]TJ/F16 10.9091 Tf -275.786 -13.549 Td [(or)-253(other)-253(format)-253(used)-254(in)-253(the)-253(official)-253(version)-253(posted)-253(on)-253(the)-253(official)]TJ 0 -13.549 Td [(Project)-361(Gutenberg)]TJ/F44 10.9091 Tf 80.888 0 Td [(")]TJ/F16 10.9091 Tf 14.627 0 Td [(web)-361(site)-360(\050http://www.gutenberg.org\051,)-389(you)]TJ -95.515 -13.549 Td [(must,)-351(at)-331(no)-331(additional)-331(cost,)-351(fee)-331(or)-331(expense)-331(to)-330(the)-331(user,)-351(provide)]TJ 0 -13.55 Td [(a)-357(copy,)-384(a)-358(means)-357(of)-357(exporting)-357(a)-357(copy,)-385(or)-357(a)-357(means)-357(of)-357(obtaining)]TJ 0 -13.549 Td [(a)-344(copy)-345(upon)-344(request,)-368(of)-344(the)-344(work)-344(in)-345(its)-344(original)]TJ/F34 10.9091 Tf 217.486 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(Plain)-344(Vanilla)]TJ -222.329 -13.549 Td [(ASCII)]TJ/F34 10.9091 Tf 28.484 0 Td [(\035)]TJ/F16 10.9091 Tf 7.286 0 Td [(or)-224(other)-224(form.)-241(Any)-224(alternate)-224(format)-224(must)-224(include)-224(the)-224(full)]TJ -35.77 -13.549 Td [(Project)-250(Gutenberg)]TJ/F44 10.9091 Tf 79.68 0 Td [(")]TJ/F16 10.9091 Tf 13.418 0 Td [(License)-250(as)-250(specified)-250(in)-250(paragraph)-250(1.E.1.)]TJ -93.098 -34.591 Td [(1.E.7.)]TJ 0 -24.07 Td [(Do)-672(not)-672(charge)-672(a)-671(fee)-672(for)-672(access)-672(to,)-777(viewing,)-777(displaying,)]TJ 0 -13.549 Td [(performing,)-516(copying)-463(or)-463(distributing)-463(any)-463(Project)-462(Gutenberg)]TJ/F44 10.9091 Tf 269.939 0 Td [(")]TJ/F16 10.9091 Tf -269.939 -13.549 Td [(works)-250(unless)-250(you)-250(comply)-250(with)-250(paragraph)-250(1.E.8)-250(or)-250(1.E.9.)]TJ 0 -34.591 Td [(1.E.8.)]TJ 0 -24.07 Td [(You)-440(may)-440(charge)-440(a)-439(reasonable)-440(fee)-440(for)-440(copies)-440(of)-440(or)-439(providing)]TJ 0 -13.55 Td [(access)-361(to)-361(or)-361(distributing)-361(Project)-361(Gutenberg)]TJ/F44 10.9091 Tf 192.388 0 Td [(")]TJ/F16 10.9091 Tf 14.628 0 Td [(electronic)-361(works)]TJ -207.016 -13.549 Td [(provided)-250(that)]TJ/F34 10.9091 Tf 12.546 -18.615 Td [(")]TJ/F16 10.9091 Tf 9.272 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.55 Td [(from)-212(the)-211(use)-212(of)-212(Project)-211(Gutenberg)]TJ/F44 10.9091 Tf 146.666 0 Td [(")]TJ/F16 10.9091 Tf 13 0 Td [(works)-212(calculated)-211(using)]TJ -159.666 -13.549 Td [(the)-431(method)-432(you)-431(already)-432(use)-431(to)-432(calculate)-431(your)-431(applicable)]TJ 0 -13.549 Td [(taxes.)-1231(The)-577(fee)-577(is)-577(owed)-577(to)-577(the)-577(owner)-577(of)-577(the)-576(Project)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
483 0 obj <<
/Type /Page
/Contents 484 0 R
/Resources 482 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 478 0 R
/Annots [ 479 0 R 480 0 R ]
>> endobj
479 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [334.776 294.546 360.532 304.266]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E1) >>
>> endobj
480 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [275.943 208.786 298.972 218.506]
/Subtype /Link
/A << /S /GoTo /D (pglicense1E8) >>
>> endobj
485 0 obj <<
/D [483 0 R /XYZ 93.543 491.727 null]
>> endobj
486 0 obj <<
/D [483 0 R /XYZ 93.543 284.025 null]
>> endobj
452 0 obj <<
/D [483 0 R /XYZ 93.543 198.265 null]
>> endobj
482 0 obj <<
/Font << /F16 7 0 R /F44 439 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
491 0 obj <<
/Length 4213      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(89)]TJ
0 g 0 G
 21.819 -30.759 Td [(Gutenberg)]TJ/F44 10.9091 Tf 46.047 0 Td [(")]TJ/F16 10.9091 Tf 17.639 0 Td [(trademark,)-734(but)-637(he)-637(has)-637(agreed)-637(to)-636(donate)]TJ -63.686 -13.549 Td [(royalties)-501(under)-501(this)-501(paragraph)-501(to)-501(the)-500(Project)-501(Gutenberg)]TJ 0 -13.549 Td [(Literary)-576(Archive)-576(Foundation.)-1228(Royalty)-575(payments)-576(must)]TJ 0 -13.549 Td [(be)-538(paid)-537(within)-538(60)-537(days)-538(following)-538(each)-537(date)-538(on)-537(which)]TJ 0 -13.55 Td [(you)-605(prepare)-606(\050or)-605(are)-606(legally)-605(required)-606(to)-605(prepare\051)-605(your)]TJ 0 -13.549 Td [(periodic)-374(tax)-374(returns.)-622(Royalty)-374(payments)-374(should)-374(be)-374(clearly)]TJ 0 -13.549 Td [(marked)-303(as)-304(such)-303(and)-303(sent)-303(to)-304(the)-303(Project)-303(Gutenberg)-303(Literary)]TJ 0 -13.549 Td [(Archive)-517(Foundation)-516(at)-517(the)-516(address)-517(specified)-517(in)-516(Section)]TJ 0 -13.549 Td [(4,)]TJ/F34 10.9091 Tf 12.486 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(Information)-366(about)-365(donations)-366(to)-366(the)-365(Project)-366(Gutenberg)]TJ -17.329 -13.55 Td [(Literary)-250(Archive)-250(Foundation.)]TJ/F34 10.9091 Tf 128.159 0 Td [(\035)]TJ -137.432 -14.279 Td [(")]TJ/F16 10.9091 Tf 9.273 0 Td [(You)-425(provide)-425(a)-425(full)-424(refund)-425(of)-425(any)-425(money)-425(paid)-425(by)-425(a)-424(user)]TJ 0 -13.549 Td [(who)-339(notifies)-339(you)-340(in)-339(writing)-339(\050or)-339(by)-340(e-mail\051)-339(within)-339(30)-339(days)]TJ 0 -13.549 Td [(of)-343(receipt)-343(that)-343(s/he)-343(does)-344(not)-343(agree)-343(to)-343(the)-343(terms)-343(of)-343(the)-343(full)]TJ 0 -13.549 Td [(Project)-235(Gutenberg)]TJ/F44 10.9091 Tf 79.514 0 Td [(")]TJ/F16 10.9091 Tf 13.252 0 Td [(License.)-245(You)-235(must)-234(require)-235(such)-235(a)-235(user)]TJ -92.766 -13.549 Td [(to)-324(return)-324(or)-323(destroy)-324(all)-324(copies)-324(of)-323(the)-324(works)-324(possessed)-324(in)-323(a)]TJ 0 -13.55 Td [(physical)-322(medium)-321(and)-322(discontinue)-321(all)-322(use)-322(of)-321(and)-322(all)-321(access)]TJ 0 -13.549 Td [(to)-250(other)-250(copies)-250(of)-250(Project)-250(Gutenberg)]TJ/F44 10.9091 Tf 158.454 0 Td [(")]TJ/F16 10.9091 Tf 13.418 0 Td [(works.)]TJ/F34 10.9091 Tf -181.145 -14.279 Td [(")]TJ/F16 10.9091 Tf 9.273 0 Td [(You)-427(provide,)-472(in)-427(accordance)-428(with)-427(paragraph)-427(1.F.3,)-472(a)-427(full)]TJ 0 -13.549 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.549 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.55 Td [(to)-250(you)-250(within)-250(90)-250(days)-250(of)-250(receipt)-250(of)-250(the)-250(work.)]TJ/F34 10.9091 Tf -9.273 -14.279 Td [(")]TJ/F16 10.9091 Tf 9.273 0 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.549 Td [(distribution)-250(of)-250(Project)-250(Gutenberg)]TJ/F44 10.9091 Tf 144.534 0 Td [(")]TJ/F16 10.9091 Tf 13.418 0 Td [(works.)]TJ -179.77 -41.937 Td [(1.E.9.)]TJ 0 -28.107 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/F44 10.9091 Tf 269.938 0 Td [(")]TJ/F16 10.9091 Tf -269.938 -13.55 Td [(electronic)-233(work)-233(or)-233(group)-233(of)-234(works)-233(on)-233(different)-233(terms)-233(than)-233(are)-233(set)]TJ 0 -13.549 Td [(forth)-346(in)-347(this)-346(agreement,)-371(you)-346(must)-346(obtain)-347(permission)-346(in)-346(writing)]TJ 0 -13.549 Td [(from)-161(both)-160(the)-161(Project)-160(Gutenberg)-161(Literary)-160(Archive)-161(Foundation)-160(and)]TJ 0 -13.549 Td [(Michael)-287(Hart,)-297(the)-287(owner)-287(of)-287(the)-287(Project)-287(Gutenberg)]TJ/F44 10.9091 Tf 219.853 0 Td [(")]TJ/F16 10.9091 Tf 13.824 0 Td [(trademark.)]TJ -233.677 -13.549 Td [(Contact)-250(the)-250(Foundation)-250(as)-250(set)-250(forth)-250(in)-250(Section)-250(3)-250(below.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
490 0 obj <<
/Type /Page
/Contents 491 0 R
/Resources 489 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 478 0 R
/Annots [ 481 0 R 492 0 R 493 0 R 487 0 R 488 0 R ]
>> endobj
481 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [294.674 420.963 327.401 430.673]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
492 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [46.771 407.403 327.401 417.156]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
493 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [46.771 393.854 201.593 403.607]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
487 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [272.441 284.001 294.87 293.721]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
488 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [213.735 79.971 254.644 87.454]
/Subtype /Link
/A << /S /GoTo /D (pglicense3) >>
>> endobj
494 0 obj <<
/D [490 0 R /XYZ 46.771 201.696 null]
>> endobj
495 0 obj <<
/D [490 0 R /XYZ 46.771 66.142 null]
>> endobj
489 0 obj <<
/Font << /F16 7 0 R /F44 439 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
502 0 obj <<
/Length 3465      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(90)-18252(Washo)-250(Religion)]TJ
0 g 0 G
/F16 13.1507 Tf 0 -30.759 Td [(1.F.)]TJ/F16 10.9091 Tf 0 -43.517 Td [(1.F.1.)]TJ 0 -27.775 Td [(Project)-1179(Gutenberg)-1179(volunteers)-1179(and)-1179(employees)-1179(expend)]TJ 0 -13.549 Td [(considerable)-684(effort)-684(to)-684(identify,)-792(do)-684(copyright)-684(research)-684(on,)]TJ 0 -13.549 Td [(transcribe)-411(and)-410(proofread)-411(public)-411(domain)-410(works)-411(in)-411(creating)-410(the)]TJ 0 -13.549 Td [(Project)-395(Gutenberg)]TJ/F44 10.9091 Tf 81.258 0 Td [(")]TJ/F16 10.9091 Tf 14.997 0 Td [(collection.)-684(Despite)-395(these)-394(efforts,)-431(Project)]TJ -96.255 -13.549 Td [(Gutenberg)]TJ/F44 10.9091 Tf 46.048 0 Td [(")]TJ/F16 10.9091 Tf 14.444 0 Td [(electronic)-344(works,)-368(and)-344(the)-344(medium)-344(on)-344(which)-344(they)]TJ -60.492 -13.55 Td [(may)-317(be)-316(stored,)-334(may)-317(contain)]TJ/F34 10.9091 Tf 126.832 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(Defects,)]TJ/F34 10.9091 Tf 36.044 0 Td [(\035)]TJ/F16 10.9091 Tf 8.299 0 Td [(such)-317(as,)-333(but)-317(not)-316(limited)]TJ -176.018 -13.549 Td [(to,)-274(incomplete,)-275(inaccurate)-269(or)-270(corrupt)-269(data,)-275(transcription)-269(errors,)-274(a)]TJ 0 -13.549 Td [(copyright)-235(or)-235(other)-234(intellectual)-235(property)-235(infringement,)-238(a)-234(defective)]TJ 0 -13.549 Td [(or)-210(damaged)-210(disk)-210(or)-211(other)-210(medium,)-218(a)-210(computer)-210(virus,)-218(or)-210(computer)]TJ 0 -13.549 Td [(codes)-250(that)-250(damage)-250(or)-250(cannot)-250(be)-250(read)-250(by)-250(your)-250(equipment.)]TJ 0 -41.336 Td [(1.F.2.)]TJ 0 -27.774 Td [(LIMITED)-451(WARRANTY,)-451(DISCLAIMER)-451(OF)-451(DAMAGES)]TJ/F34 10.9091 Tf 269.721 0 Td [(\024)]TJ/F16 10.9091 Tf -269.721 -13.549 Td [(Except)-473(for)-473(the)]TJ/F34 10.9091 Tf 71.832 0 Td [(\034)]TJ/F16 10.9091 Tf 4.843 0 Td [(Right)-473(of)-473(Replacement)-474(or)-473(Refund)]TJ/F34 10.9091 Tf 152.146 0 Td [(\035)]TJ/F16 10.9091 Tf 10.006 0 Td [(described)]TJ -238.827 -13.55 Td [(in)-550(paragraph)-550(1.F.3,)-625(the)-550(Project)-550(Gutenberg)-550(Literary)-549(Archive)]TJ 0 -13.549 Td [(Foundation,)-432(the)-395(owner)-396(of)-395(the)-396(Project)-395(Gutenberg)]TJ/F44 10.9091 Tf 218.673 0 Td [(")]TJ/F16 10.9091 Tf 15.004 0 Td [(trademark,)]TJ -233.677 -13.549 Td [(and)-805(any)-805(other)-806(party)-805(distributing)-805(a)-805(Project)-805(Gutenberg)]TJ/F44 10.9091 Tf 269.939 0 Td [(")]TJ/F16 10.9091 Tf -269.939 -13.549 Td [(electronic)-573(work)-572(under)-573(this)-572(agreement,)-653(disclaim)-573(all)-572(liability)]TJ 0 -13.549 Td [(to)-662(you)-663(for)-662(damages,)-766(costs)-662(and)-663(expenses,)-765(including)-662(legal)]TJ 0 -13.55 Td [(fees.)-1105(YOU)-534(AGREE)-535(THAT)-535(YOU)-534(HAVE)-535(NO)-534(REMEDIES)]TJ 0 -13.549 Td [(FOR)-645(NEGLIGENCE,)-645(STRICT)-645(LIABILITY,)-646(BREACH)-644(OF)]TJ 0 -13.549 Td [(WARRANTY)-812(OR)-811(BREACH)-811(OF)-812(CONTRACT)-811(EXCEPT)]TJ 0 -13.549 Td [(THOSE)-504(PROVIDED)-504(IN)-504(PARAGRAPH)-503(F3.)-1013(YOU)-503(AGREE)]TJ 0 -13.549 Td [(THAT)-423(THE)-424(FOUNDATION,)-424(THE)-423(TRADEMARK)-423(OWNER,)]TJ 0 -13.549 Td [(AND)-590(ANY)-590(DISTRIBUTOR)-590(UNDER)-590(THIS)-589(AGREEMENT)]TJ 0 -13.55 Td [(WILL)-941(NOT)-941(BE)-942(LIABLE)-941(TO)-941(YOU)-941(FOR)-941(ACTUAL,)]TJ 0 -13.549 Td [(DIRECT,)-592(INDIRECT,)-591(CONSEQUENTIAL,)-592(PUNITIVE)-591(OR)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
501 0 obj <<
/Type /Page
/Contents 502 0 R
/Resources 500 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 478 0 R
/Annots [ 499 0 R ]
>> endobj
499 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [108.03 226.354 180.072 236.074]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
503 0 obj <<
/D [501 0 R /XYZ 93.543 502.313 null]
>> endobj
504 0 obj <<
/D [501 0 R /XYZ 93.543 309.001 null]
>> endobj
500 0 obj <<
/Font << /F16 7 0 R /F44 439 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
508 0 obj <<
/Length 3109      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(91)]TJ
0 g 0 G
 0 -30.759 Td [(INCIDENTAL)-492(DAMAGES)-492(EVEN)-492(IF)-492(YOU)-492(GIVE)-491(NOTICE)]TJ 0 -13.549 Td [(OF)-250(THE)-250(POSSIBILITY)-250(OF)-250(SUCH)-250(DAMAGE.)]TJ 0 -35.704 Td [(1.F.3.)]TJ 0 -24.646 Td [(LIMITED)-421(RIGHT)-421(OF)-422(REPLACEMENT)-421(OR)-421(REFUND)]TJ/F34 10.9091 Tf 257.859 0 Td [(\024)]TJ/F16 10.9091 Tf 15.506 0 Td [(If)]TJ -273.365 -13.549 Td [(you)-434(discover)-434(a)-434(defect)-434(in)-434(this)-434(electronic)-434(work)-434(within)-434(90)-433(days)]TJ 0 -13.549 Td [(of)-335(receiving)-334(it,)-356(you)-335(can)-335(receive)-334(a)-335(refund)-335(of)-334(the)-335(money)-335(\050if)-334(any\051)]TJ 0 -13.549 Td [(you)-369(paid)-369(for)-369(it)-370(by)-369(sending)-369(a)-369(written)-369(explanation)-369(to)-369(the)-369(person)]TJ 0 -13.55 Td [(you)-430(received)-430(the)-431(work)-430(from.)-790(If)-431(you)-430(received)-430(the)-430(work)-430(on)-430(a)]TJ 0 -13.549 Td [(physical)-231(medium,)-236(you)-231(must)-231(return)-232(the)-231(medium)-232(with)-231(your)-231(written)]TJ 0 -13.549 Td [(explanation.)-706(The)-402(person)-402(or)-402(entity)-402(that)-402(provided)-402(you)-402(with)-401(the)]TJ 0 -13.549 Td [(defective)-301(work)-301(may)-301(elect)-300(to)-301(provide)-301(a)-301(replacement)-301(copy)-301(in)-300(lieu)]TJ 0 -13.549 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.55 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.549 Td [(opportunity)-226(to)-226(receive)-225(the)-226(work)-226(electronically)-225(in)-226(lieu)-226(of)-226(a)-225(refund.)]TJ 0 -13.549 Td [(If)-315(the)-315(second)-315(copy)-315(is)-315(also)-315(defective,)-331(you)-315(may)-315(demand)-315(a)-314(refund)]TJ 0 -13.549 Td [(in)-250(writing)-250(without)-250(further)-250(opportunities)-250(to)-250(fix)-250(the)-250(problem.)]TJ 0 -35.704 Td [(1.F.4.)]TJ 0 -24.646 Td [(Except)-618(for)-618(the)-618(limited)-618(right)-618(of)-618(replacement)-618(or)-618(refund)-618(set)]TJ 0 -13.549 Td [(forth)-485(in)-485(paragraph)-485(1.F.3,)-543(this)-485(work)-485(is)-485(provided)-485(to)-485(you)-484('AS-)]TJ 0 -13.549 Td [(IS,')-610(WITH)-610(NO)-610(OTHER)-610(WARRANTIES)-610(OF)-610(ANY)-610(KIND,)]TJ 0 -13.549 Td [(EXPRESS)-339(OR)-338(IMPLIED,)-339(INCLUDING)-339(BUT)-339(NOT)-338(LIMITED)]TJ 0 -13.55 Td [(TO)-401(WARRANTIES)-400(OF)-401(MERCHANTIBILITY)-401(OR)-400(FITNESS)]TJ 0 -13.549 Td [(FOR)-250(ANY)-250(PURPOSE.)]TJ 0 -35.704 Td [(1.F.5.)]TJ 0 -24.645 Td [(Some)-155(states)-155(do)-155(not)-155(allow)-155(disclaimers)-155(of)-155(certain)-155(implied)-154(warranties)]TJ 0 -13.55 Td [(or)-541(the)-540(exclusion)-541(or)-541(limitation)-541(of)-540(certain)-541(types)-541(of)-540(damages.)]TJ 0 -13.549 Td [(If)-587(any)-587(disclaimer)-587(or)-587(limitation)-587(set)-587(forth)-587(in)-587(this)-586(agreement)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
507 0 obj <<
/Type /Page
/Contents 508 0 R
/Resources 506 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 478 0 R
/Annots [ 505 0 R ]
>> endobj
505 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [87.045 205.409 158.378 215.129]
/Subtype /Link
/A << /S /GoTo /D (pglicense1F3) >>
>> endobj
497 0 obj <<
/D [507 0 R /XYZ 46.771 493.425 null]
>> endobj
509 0 obj <<
/D [507 0 R /XYZ 46.771 268.249 null]
>> endobj
510 0 obj <<
/D [507 0 R /XYZ 46.771 142.39 null]
>> endobj
506 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
516 0 obj <<
/Length 3326      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(92)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 Td [(violates)-405(the)-405(law)-405(of)-405(the)-405(state)-405(applicable)-405(to)-406(this)-405(agreement,)-443(the)]TJ 0 -13.549 Td [(agreement)-251(shall)-251(be)-250(interpreted)-251(to)-251(make)-251(the)-251(maximum)-250(disclaimer)]TJ 0 -13.549 Td [(or)-210(limitation)-211(permitted)-210(by)-211(the)-210(applicable)-211(state)-210(law.)-237(The)-210(invalidity)]TJ 0 -13.549 Td [(or)-297(unenforceability)-297(of)-297(any)-297(provision)-297(of)-297(this)-297(agreement)-297(shall)-296(not)]TJ 0 -13.55 Td [(void)-250(the)-250(remaining)-250(provisions.)]TJ 0 -34.869 Td [(1.F.6.)]TJ 0 -24.209 Td [(INDEMNITY)]TJ/F34 10.9091 Tf 69.759 0 Td [(\024)]TJ/F16 10.9091 Tf 18.872 0 Td [(You)-730(agree)-730(to)-730(indemnify)-730(and)-730(hold)-730(the)]TJ -88.631 -13.549 Td [(Foundation,)-504(the)-454(trademark)-453(owner,)-505(any)-453(agent)-454(or)-453(employee)-453(of)]TJ 0 -13.55 Td [(the)-213(Foundation,)-220(anyone)-213(providing)-213(copies)-213(of)-213(Project)-212(Gutenberg)]TJ/F44 10.9091 Tf 269.939 0 Td [(")]TJ/F16 10.9091 Tf -269.939 -13.549 Td [(electronic)-436(works)-436(in)-437(accordance)-436(with)-436(this)-436(agreement,)-483(and)-436(any)]TJ 0 -13.549 Td [(volunteers)-691(associated)-690(with)-691(the)-691(production,)-801(promotion)-690(and)]TJ 0 -13.549 Td [(distribution)-339(of)-338(Project)-339(Gutenberg)]TJ/F44 10.9091 Tf 147.433 0 Td [(")]TJ/F16 10.9091 Tf 14.384 0 Td [(electronic)-339(works,)-360(harmless)]TJ -161.817 -13.549 Td [(from)-330(all)-331(liability,)-350(costs)-330(and)-330(expenses,)-351(including)-330(legal)-330(fees,)-350(that)]TJ 0 -13.55 Td [(arise)-284(directly)-284(or)-284(indirectly)-284(from)-284(any)-284(of)-284(the)-284(following)-284(which)-283(you)]TJ 0 -13.549 Td [(do)-461(or)-461(cause)-461(to)-462(occur:)-672(\050a\051)-461(distribution)-461(of)-461(this)-461(or)-461(any)-461(Project)]TJ 0 -13.549 Td [(Gutenberg)]TJ/F44 10.9091 Tf 46.048 0 Td [(")]TJ/F16 10.9091 Tf 14.236 0 Td [(work,)-344(\050b\051)-325(alteration,)-344(modification,)-343(or)-325(additions)-325(or)]TJ -60.284 -13.549 Td [(deletions)-319(to)-319(any)-319(Project)-320(Gutenberg)]TJ/F44 10.9091 Tf 154.511 0 Td [(")]TJ/F16 10.9091 Tf 14.172 0 Td [(work,)-336(and)-320(\050c\051)-319(any)-319(Defect)]TJ -168.683 -13.549 Td [(you)-250(cause.)]TJ/F16 15.7808 Tf 0 -46.635 Td [(Section)-250(2.)]TJ/F16 13.1507 Tf 32.422 -45.398 Td [(Information)-260(about)-259(the)-260(Mission)-260(of)-260(Project)]TJ 73.695 -17.096 Td [(Gutenberg)]TJ/F44 13.1507 Tf 55.509 0 Td [(")]TJ/F16 10.9091 Tf -161.626 -26.391 Td [(Project)-400(Gutenberg)]TJ/F44 10.9091 Tf 81.319 0 Td [(")]TJ/F16 10.9091 Tf 15.057 0 Td [(is)-400(synonymous)-400(with)-401(the)-400(free)-400(distribution)]TJ -96.376 -13.549 Td [(of)-408(electronic)-409(works)-408(in)-408(formats)-408(readable)-409(by)-408(the)-408(widest)-408(variety)]TJ 0 -13.549 Td [(of)-514(computers)-513(including)-514(obsolete,)-580(old,)-579(middle-aged)-514(and)-513(new)]TJ 0 -13.55 Td [(computers.)-1070(It)-524(exists)-523(because)-523(of)-524(the)-523(efforts)-524(of)-523(hundreds)-523(of)]TJ 0 -13.549 Td [(volunteers)-250(and)-250(donations)-250(from)-250(people)-250(in)-250(all)-250(walks)-250(of)-250(life.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
515 0 obj <<
/Type /Page
/Contents 516 0 R
/Resources 514 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 478 0 R
>> endobj
517 0 obj <<
/D [515 0 R /XYZ 93.543 450.94 null]
>> endobj
518 0 obj <<
/D [515 0 R /XYZ 93.543 242.82 null]
>> endobj
514 0 obj <<
/Font << /F16 7 0 R /F34 45 0 R /F44 439 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
523 0 obj <<
/Length 3436      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(93)]TJ
0 g 0 G
 11.956 -30.759 Td [(Volunteers)-162(and)-163(financial)-162(support)-162(to)-163(provide)-162(volunteers)-162(with)-162(the)]TJ -11.956 -13.549 Td [(assistance)-198(they)-199(need,)-209(is)-198(critical)-198(to)-199(reaching)-198(Project)-198(Gutenberg)]TJ/F44 10.9091 Tf 263.732 0 Td [(")]TJ/F16 10.9091 Tf 10.691 0 Td [('s)]TJ -274.423 -13.549 Td [(goals)-309(and)-308(ensuring)-309(that)-309(the)-308(Project)-309(Gutenberg)]TJ/F44 10.9091 Tf 203.205 0 Td [(")]TJ/F16 10.9091 Tf 14.058 0 Td [(collection)-309(will)]TJ -217.263 -13.549 Td [(remain)-382(freely)-381(available)-382(for)-381(generations)-382(to)-382(come.)-644(In)-382(2001,)-414(the)]TJ 0 -13.55 Td [(Project)-350(Gutenberg)-351(Literary)-350(Archive)-350(Foundation)-351(was)-350(created)-350(to)]TJ 0 -13.549 Td [(provide)-302(a)-303(secure)-302(and)-302(permanent)-303(future)-302(for)-302(Project)-302(Gutenberg)]TJ/F44 10.9091 Tf 269.939 0 Td [(")]TJ/F16 10.9091 Tf -269.939 -13.549 Td [(and)-609(future)-609(generations.)-1327(To)-609(learn)-609(more)-609(about)-609(the)-609(Project)]TJ 0 -13.549 Td [(Gutenberg)-414(Literary)-414(Archive)-413(Foundation)-414(and)-414(how)-414(your)-413(efforts)]TJ 0 -13.549 Td [(and)-245(donations)-246(can)-245(help,)-246(see)-246(Sections)-245(3)-245(and)-246(4)-245(and)-245(the)-245(Foundation)]TJ 0 -13.55 Td [(web)-250(page)-250(at)-250(http://www.pglaf.org.)]TJ/F16 15.7808 Tf 0 -53.578 Td [(Section)-250(3.)]TJ/F16 13.1507 Tf 10.376 -52.34 Td [(Information)-253(about)-253(the)-253(Project)-253(Gutenberg)-254(Literary)]TJ 76.986 -17.096 Td [(Archive)-276(Foundation)]TJ/F16 10.9091 Tf -87.362 -30.22 Td [(The)-438(Project)-439(Gutenberg)-438(Literary)-438(Archive)-439(Foundation)-438(is)-438(a)-438(non)]TJ 0 -13.549 Td [(profit)-176(501\050c\051\0503\051)-176(educational)-176(corporation)-176(organized)-176(under)-176(the)-175(laws)]TJ 0 -13.55 Td [(of)-303(the)-304(state)-303(of)-304(Mississippi)-303(and)-303(granted)-304(tax)-303(exempt)-304(status)-303(by)-303(the)]TJ 0 -13.549 Td [(Internal)-319(Revenue)-319(Service.)-457(The)-319(Foundation's)-319(EIN)-319(or)-319(federal)-318(tax)]TJ 0 -13.549 Td [(identification)-179(number)-179(is)-178(64-6221541.)-227(Its)-178(501\050c\051\0503\051)-179(letter)-179(is)-178(posted)]TJ 0 -13.549 Td [(at)-549(http://www.gutenberg.org/fundraising/pglaf.)-1148(Contributions)]TJ 0 -13.549 Td [(to)-404(the)-403(Project)-404(Gutenberg)-404(Literary)-403(Archive)-404(Foundation)-404(are)-403(tax)]TJ 0 -13.55 Td [(deductible)-306(to)-306(the)-306(full)-307(extent)-306(permitted)-306(by)-306(U.S.)-306(federal)-306(laws)-306(and)]TJ 0 -13.549 Td [(your)-250(state's)-250(laws.)]TJ 11.956 -14.265 Td [(The)-214(Foundation's)-214(principal)-213(office)-214(is)-214(located)-214(at)-214(4557)-214(Melan)-213(Dr.)]TJ -11.956 -13.549 Td [(S.)-297(Fairbanks,)-309(AK,)-298(99712.,)-309(but)-297(its)-298(volunteers)-297(and)-297(employees)-297(are)]TJ 0 -13.549 Td [(scattered)-343(throughout)-343(numerous)-344(locations.)-529(Its)-343(business)-343(office)-343(is)]TJ 0 -13.55 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.549 Td [(596-1887,)-225(email)-218(business@pglaf.org.)-239(Email)-219(contact)-218(links)-218(and)-218(up)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
522 0 obj <<
/Type /Page
/Contents 523 0 R
/Resources 521 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 524 0 R
/Annots [ 511 0 R 512 0 R 513 0 R 519 0 R ]
>> endobj
511 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [208.573 407.414 214.028 417.123]
/Subtype /Link
/A << /S /GoTo /D (pglicense3) >>
>> endobj
512 0 obj <<
/Type /Annot
/BS << /Type /Border /S /U >> /H /I /C [0 1 1]
/Rect [235.133 407.414 240.587 417.123]
/Subtype /Link
/A << /S /GoTo /D (pglicense4) >>
>> endobj
513 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [101.6 393.854 193.717 403.574]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.pglaf.org) >> 
>> endobj
519 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [60.641 172.873 252.139 182.593]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/pglaf) >> 
>> endobj
498 0 obj <<
/D [522 0 R /XYZ 46.771 380.081 null]
>> endobj
521 0 obj <<
/Font << /F16 7 0 R /F44 439 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
528 0 obj <<
/Length 3069      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(94)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 0 -30.759 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.549 Td [(site)-250(and)-250(official)-250(page)-250(at)-250(http://www.pglaf.org)]TJ 11.956 -13.549 Td [(For)-250(additional)-250(contact)-250(information:)]TJ/F16 9.8629 Tf 7.681 -22.095 Td [(Dr.)-250(Gregory)-250(B.)-250(Newby)]TJ 0 -12.822 Td [(Chief)-250(Executive)-250(and)-250(Director)]TJ 0 -12.822 Td [(gbnewby@pglaf.org)]TJ/F16 15.7808 Tf -19.637 -58.864 Td [(Section)-250(4.)]TJ/F16 13.1507 Tf 26.999 -44.805 Td [(Information)-258(about)-258(Donations)-258(to)-258(the)-259(Project)]TJ 8.106 -17.096 Td [(Gutenberg)-261(Literary)-260(Archive)-261(Foundation)]TJ/F16 10.9091 Tf -35.105 -26.095 Td [(Project)-329(Gutenberg)]TJ/F44 10.9091 Tf 80.543 0 Td [(")]TJ/F16 10.9091 Tf 14.28 0 Td [(depends)-329(upon)-329(and)-329(cannot)-329(survive)-329(without)]TJ -94.823 -13.549 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.549 Td [(of)-334(increasing)-334(the)-334(number)-334(of)-334(public)-334(domain)-334(and)-334(licensed)-334(works)]TJ 0 -13.549 Td [(that)-192(can)-193(be)-192(freely)-193(distributed)-192(in)-192(machine)-193(readable)-192(form)-192(accessible)]TJ 0 -13.549 Td [(by)-261(the)-261(widest)-261(array)-261(of)-261(equipment)-261(including)-261(outdated)-261(equipment.)]TJ 0 -13.55 Td [(Many)-303(small)-302(donations)-303(\050$1)-303(to)-302($5,000\051)-303(are)-303(particularly)-302(important)]TJ 0 -13.549 Td [(to)-250(maintaining)-250(tax)-250(exempt)-250(status)-250(with)-250(the)-250(IRS.)]TJ 11.956 -13.549 Td [(The)-460(Foundation)-461(is)-460(committed)-461(to)-460(complying)-461(with)-460(the)-460(laws)]TJ -11.956 -13.549 Td [(regulating)-353(charities)-352(and)-353(charitable)-352(donations)-352(in)-353(all)-352(50)-353(states)-352(of)]TJ 0 -13.549 Td [(the)-430(United)-429(States.)-789(Compliance)-430(requirements)-429(are)-430(not)-429(uniform)]TJ 0 -13.55 Td [(and)-389(it)-389(takes)-389(a)-389(considerable)-389(effort,)-424(much)-389(paperwork)-389(and)-389(many)]TJ 0 -13.549 Td [(fees)-489(to)-489(meet)-489(and)-489(keep)-489(up)-489(with)-489(these)-489(requirements.)-967(We)-489(do)]TJ 0 -13.549 Td [(not)-396(solicit)-395(donations)-396(in)-396(locations)-396(where)-395(we)-396(have)-396(not)-395(received)]TJ 0 -13.549 Td [(written)-234(confirmation)-233(of)-234(compliance.)-244(To)-233(SEND)-234(DONATIONS)-233(or)]TJ 0 -13.549 Td [(determine)-309(the)-310(status)-309(of)-310(compliance)-309(for)-309(any)-310(particular)-309(state)-309(visit)]TJ 0 -13.55 Td [(http://www.gutenberg.org/fundraising/donate)]TJ 11.956 -13.549 Td [(While)-305(we)-304(cannot)-305(and)-304(do)-305(not)-305(solicit)-304(contributions)-305(from)-304(states)]TJ -11.956 -13.549 Td [(where)-323(we)-323(have)-322(not)-323(met)-323(the)-323(solicitation)-323(requirements,)-341(we)-322(know)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
527 0 obj <<
/Type /Page
/Contents 528 0 R
/Resources 526 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 524 0 R
/Annots [ 520 0 R 525 0 R ]
>> endobj
520 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [198.063 502.248 290.179 511.968]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.pglaf.org) >> 
>> endobj
525 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [93.543 90.862 291.707 100.582]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/donate) >> 
>> endobj
496 0 obj <<
/D [527 0 R /XYZ 93.543 420.153 null]
>> endobj
526 0 obj <<
/Font << /F16 7 0 R /F44 439 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
532 0 obj <<
/Length 3277      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 46.771 548.934 Td [(The)-250(Full)-250(Project)-250(Gutenberg)-250(License)-10393(95)]TJ
0 g 0 G
 0 -30.759 Td [(of)-366(no)-365(prohibition)-366(against)-366(accepting)-365(unsolicited)-366(donations)-365(from)]TJ 0 -13.549 Td [(donors)-250(in)-250(such)-250(states)-250(who)-250(approach)-250(us)-250(with)-250(offers)-250(to)-250(donate.)]TJ 11.956 -14.186 Td [(International)-237(donations)-237(are)-237(gratefully)-238(accepted,)-239(but)-237(we)-237(cannot)]TJ -11.956 -13.549 Td [(make)-533(any)-532(statements)-533(concerning)-533(tax)-532(treatment)-533(of)-532(donations)]TJ 0 -13.549 Td [(received)-256(from)-255(outside)-256(the)-255(United)-256(States.)-267(U.S.)-255(laws)-256(alone)-255(swamp)]TJ 0 -13.549 Td [(our)-250(small)-250(staff.)]TJ 11.956 -14.186 Td [(Please)-413(check)-413(the)-412(Project)-413(Gutenberg)-413(Web)-413(pages)-413(for)-412(current)]TJ -11.956 -13.549 Td [(donation)-467(methods)-467(and)-467(addresses.)-900(Donations)-467(are)-467(accepted)-466(in)]TJ 0 -13.549 Td [(a)-517(number)-516(of)-517(other)-517(ways)-517(including)-516(checks,)-584(online)-516(payments)]TJ 0 -13.55 Td [(and)-884(credit)-884(card)-885(donations.)-2152(To)-884(donate,)-1043(please)-884(visit:)]TJ 0 -13.549 Td [(http://www.gutenberg.org/fundraising/donate)]TJ/F16 15.7808 Tf 0 -52.862 Td [(Section)-250(5.)]TJ/F16 13.1507 Tf 12.158 -51.624 Td [(General)-254(Information)-253(About)-254(Project)-254(Gutenberg)]TJ/F44 13.1507 Tf 243.427 0 Td [(")]TJ/F16 13.1507 Tf -160.742 -17.096 Td [(electronic)-279(works.)]TJ/F16 10.9091 Tf -94.843 -29.823 Td [(Professor)-596(Michael)-597(S.)-596(Hart)-596(is)-596(the)-597(originator)-596(of)-596(the)-596(Project)]TJ 0 -13.549 Td [(Gutenberg)]TJ/F44 10.9091 Tf 46.048 0 Td [(")]TJ/F16 10.9091 Tf 13.755 0 Td [(concept)-281(of)-281(a)-281(library)-281(of)-281(electronic)-281(works)-281(that)-281(could)]TJ -59.803 -13.549 Td [(be)-436(freely)-436(shared)-436(with)-436(anyone.)-807(For)-436(thirty)-436(years,)-483(he)-435(produced)]TJ 0 -13.549 Td [(and)-357(distributed)-357(Project)-358(Gutenberg)]TJ/F44 10.9091 Tf 151.064 0 Td [(")]TJ/F16 10.9091 Tf 14.588 0 Td [(eBooks)-357(with)-357(only)-358(a)-357(loose)]TJ -165.652 -13.549 Td [(network)-250(of)-250(volunteer)-250(support.)]TJ 11.956 -14.186 Td [(Project)-379(Gutenberg)]TJ/F44 10.9091 Tf 81.091 0 Td [(")]TJ/F16 10.9091 Tf 14.829 0 Td [(eBooks)-379(are)-380(often)-379(created)-379(from)-380(several)]TJ -107.876 -13.549 Td [(printed)-248(editions,)-248(all)-248(of)-247(which)-248(are)-248(confirmed)-247(as)-248(Public)-248(Domain)-247(in)]TJ 0 -13.549 Td [(the)-303(U.S.)-302(unless)-303(a)-303(copyright)-303(notice)-302(is)-303(included.)-408(Thus,)-316(we)-303(do)-302(not)]TJ 0 -13.55 Td [(necessarily)-216(keep)-217(eBooks)-216(in)-216(compliance)-217(with)-216(any)-216(particular)-216(paper)]TJ 0 -13.549 Td [(edition.)]TJ 11.956 -14.185 Td [(Each)-355(eBook)-356(is)-355(in)-356(a)-355(subdirectory)-356(of)-355(the)-356(same)-355(number)-356(as)-355(the)]TJ -11.956 -13.55 Td [(eBook's)-266(eBook)-266(number,)-269(often)-266(in)-266(several)-266(formats)-266(including)-265(plain)]TJ 0 -13.549 Td [(vanilla)-250(ASCII,)-250(compressed)-250(\050zipped\051,)-250(HTML)-250(and)-250(others.)]TJ
0 g 0 G
0 g 0 G
ET
endstream
endobj
531 0 obj <<
/Type /Page
/Contents 532 0 R
/Resources 530 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 524 0 R
/Annots [ 529 0 R ]
>> endobj
529 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [46.771 379.032 244.935 388.752]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org/fundraising/donate) >> 
>> endobj
533 0 obj <<
/D [531 0 R /XYZ 46.771 365.577 null]
>> endobj
530 0 obj <<
/Font << /F16 7 0 R /F44 439 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
537 0 obj <<
/Length 1637      
>>
stream
0 g 0 G
BT
/F16 10.9091 Tf 93.543 548.934 Td [(96)-18252(Washo)-250(Religion)]TJ
0 g 0 G
 11.956 -30.759 Td [(Corrected)]TJ/F37 10.9091 Tf 45.766 0 Td [(editions)]TJ/F16 10.9091 Tf 37.301 0 Td [(of)-252(our)-252(eBooks)-253(replace)-252(the)-252(old)-253(fil)1(e)-253(and)-252(take)]TJ -95.023 -13.549 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.549 Td [(is)-367(renamed.)]TJ/F37 10.9091 Tf 58.126 0 Td [(Versions)]TJ/F16 10.9091 Tf 42.185 0 Td [(based)-367(on)-367(separate)-367(sources)-367(are)-367(treated)-367(as)]TJ -100.311 -13.549 Td [(new)-250(eBooks)-250(receiving)-250(new)-250(filenames)-250(and)-250(etext)-250(numbers.)]TJ 11.956 -13.55 Td [(Most)-416(people)-416(start)-416(at)-416(our)-416(Web)-416(site)-416(which)-416(has)-416(the)-416(main)-415(PG)]TJ -11.956 -13.549 Td [(search)-250(facility:)]TJ/F16 9.8629 Tf 19.637 -22.64 Td [(http://www.gutenberg.org)]TJ/F16 10.9091 Tf -7.681 -23.367 Td [(This)-1077(Web)-1077(site)-1078(includes)-1077(information)-1077(about)-1077(Project)]TJ -11.956 -13.549 Td [(Gutenberg)]TJ/F44 10.9091 Tf 46.048 0 Td [(")]TJ/F16 10.9091 Tf 10.691 0 Td [(,)-418(including)-384(how)-384(to)-384(make)-385(donations)-384(to)-384(the)-384(Project)]TJ -56.739 -13.549 Td [(Gutenberg)-397(Literary)-396(Archive)-397(Foundation,)-433(how)-396(to)-397(help)-396(produce)]TJ 0 -13.55 Td [(our)-230(new)-230(eBooks,)-234(and)-230(how)-230(to)-230(subscribe)-230(to)-230(our)-230(email)-230(newsletter)-229(to)]TJ 0 -13.549 Td [(hear)-250(about)-250(new)-250(eBooks.)]TJ
0 g 0 G
0 g 0 G
0 g 0 G
0 g 0 G
0 g 0 G
ET
endstream
endobj
536 0 obj <<
/Type /Page
/Contents 537 0 R
/Resources 535 0 R
/MediaBox [0 0 419.528 595.276]
/Parent 524 0 R
/Annots [ 534 0 R ]
>> endobj
534 0 obj <<
/Type /Annot
 /BS << /Type /Border /S /U >> /H /I /C [1 0.5 0.5] 
/Rect [113.18 425.639 215.636 434.427]
 /Subtype /Link /A << /Type /Action /S /URI /URI (http://www.gutenberg.org) >> 
>> endobj
535 0 obj <<
/Font << /F16 7 0 R /F37 75 0 R /F44 439 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
539 0 obj
[980]
endobj
540 0 obj <<
/Type /FontDescriptor
/FontName /Times-Roman
/Flags 34
/FontBBox [0 0 1000 0]
/Ascent 0
/CapHeight 0
/Descent 0
/ItalicAngle 0
/StemV 0
/XHeight 450
>> endobj
541 0 obj
[546]
endobj
542 0 obj <<
/Length1 5476
/Length 5476      
>>
stream