Newer
Older
13001
13002
13003
13004
13005
13006
13007
13008
13009
13010
13011
13012
13013
13014
13015
13016
13017
13018
13019
13020
13021
13022
13023
13024
13025
13026
13027
13028
13029
13030
13031
13032
13033
13034
13035
13036
13037
13038
13039
13040
13041
13042
13043
13044
13045
13046
13047
13048
13049
13050
13051
13052
13053
13054
13055
13056
13057
13058
13059
13060
13061
13062
13063
13064
13065
13066
13067
13068
13069
13070
13071
13072
13073
13074
13075
13076
13077
13078
13079
13080
13081
13082
13083
13084
13085
13086
13087
13088
13089
13090
13091
13092
13093
13094
13095
13096
13097
13098
13099
13100
13101
13102
13103
13104
13105
13106
13107
13108
13109
13110
13111
13112
13113
13114
13115
13116
13117
13118
13119
13120
13121
13122
13123
13124
13125
13126
13127
13128
13129
13130
13131
13132
13133
13134
13135
13136
13137
13138
13139
13140
13141
13142
13143
13144
13145
13146
13147
13148
13149
13150
13151
13152
13153
13154
13155
13156
13157
13158
13159
13160
13161
13162
13163
13164
13165
13166
13167
13168
13169
13170
13171
13172
13173
13174
13175
13176
13177
13178
13179
13180
13181
13182
13183
13184
13185
13186
13187
13188
13189
13190
13191
13192
13193
13194
13195
13196
13197
13198
13199
13200
13201
13202
13203
13204
13205
13206
13207
13208
13209
13210
13211
13212
13213
13214
13215
13216
13217
13218
13219
13220
13221
13222
13223
13224
13225
13226
13227
13228
13229
13230
13231
13232
13233
13234
13235
13236
13237
13238
13239
13240
13241
13242
13243
13244
13245
13246
13247
13248
13249
13250
13251
13252
13253
13254
13255
13256
13257
13258
13259
13260
13261
13262
13263
13264
13265
13266
13267
13268
13269
13270
13271
13272
13273
13274
13275
13276
13277
13278
13279
13280
13281
13282
13283
13284
13285
13286
13287
13288
13289
13290
13291
13292
13293
13294
13295
13296
13297
13298
13299
13300
13301
13302
13303
13304
13305
13306
13307
13308
13309
13310
13311
13312
13313
13314
13315
13316
13317
13318
13319
13320
13321
13322
13323
13324
13325
13326
13327
13328
13329
13330
13331
13332
13333
13334
13335
13336
13337
13338
13339
13340
13341
13342
13343
13344
13345
13346
13347
13348
13349
13350
13351
13352
13353
13354
13355
13356
13357
13358
13359
13360
13361
13362
13363
13364
13365
13366
13367
13368
13369
13370
13371
13372
13373
13374
13375
13376
13377
13378
13379
13380
13381
13382
13383
13384
13385
13386
13387
13388
13389
13390
13391
13392
13393
13394
13395
13396
13397
13398
13399
13400
13401
13402
13403
13404
13405
13406
13407
13408
13409
13410
13411
13412
13413
13414
13415
13416
13417
13418
13419
13420
13421
13422
13423
13424
13425
13426
13427
13428
13429
13430
13431
13432
13433
13434
13435
13436
13437
13438
13439
13440
13441
13442
13443
13444
13445
13446
13447
13448
13449
13450
13451
13452
13453
13454
13455
13456
13457
13458
13459
13460
13461
13462
13463
13464
13465
13466
13467
13468
13469
13470
13471
13472
13473
13474
13475
13476
13477
13478
13479
13480
13481
13482
13483
13484
13485
13486
13487
13488
13489
13490
13491
13492
13493
13494
13495
13496
13497
13498
13499
13500
13501
13502
13503
13504
13505
13506
13507
13508
13509
13510
13511
13512
13513
13514
13515
13516
13517
13518
13519
13520
13521
13522
13523
13524
13525
13526
13527
13528
13529
13530
13531
13532
13533
13534
13535
13536
13537
13538
13539
13540
13541
13542
13543
13544
13545
13546
13547
13548
13549
13550
13551
13552
13553
13554
13555
13556
13557
13558
13559
13560
13561
13562
13563
13564
13565
13566
13567
13568
13569
13570
13571
13572
13573
13574
13575
13576
13577
13578
13579
13580
13581
13582
13583
13584
13585
13586
13587
13588
13589
13590
13591
13592
13593
13594
13595
13596
13597
13598
13599
13600
13601
13602
13603
13604
13605
13606
13607
13608
13609
13610
13611
13612
13613
13614
13615
13616
13617
13618
13619
13620
13621
13622
13623
13624
13625
13626
13627
13628
13629
13630
13631
13632
13633
13634
13635
13636
13637
13638
13639
13640
13641
13642
13643
13644
13645
13646
13647
13648
13649
13650
13651
13652
13653
13654
13655
13656
13657
13658
13659
13660
13661
13662
13663
13664
13665
13666
13667
13668
13669
13670
13671
13672
13673
13674
13675
13676
13677
13678
13679
13680
13681
13682
13683
13684
13685
13686
13687
13688
13689
13690
13691
13692
13693
13694
13695
13696
13697
13698
13699
13700
13701
13702
13703
13704
13705
13706
13707
13708
13709
13710
13711
13712
13713
13714
13715
13716
13717
13718
13719
13720
13721
13722
13723
13724
13725
13726
13727
13728
13729
13730
13731
13732
13733
13734
13735
13736
13737
13738
13739
13740
13741
13742
13743
13744
13745
13746
13747
13748
13749
13750
13751
13752
13753
13754
13755
13756
13757
13758
13759
13760
13761
13762
13763
13764
13765
13766
13767
13768
13769
13770
13771
13772
13773
13774
13775
13776
13777
13778
13779
13780
13781
13782
13783
13784
13785
13786
13787
13788
13789
13790
13791
13792
13793
13794
13795
13796
13797
13798
13799
13800
13801
13802
13803
13804
13805
13806
13807
13808
13809
13810
13811
13812
13813
13814
13815
13816
13817
13818
13819
13820
13821
13822
13823
13824
13825
13826
13827
13828
13829
13830
13831
13832
13833
13834
13835
13836
13837
13838
13839
13840
13841
13842
13843
13844
13845
13846
13847
13848
13849
13850
13851
13852
13853
13854
13855
13856
13857
13858
13859
13860
13861
13862
13863
13864
13865
13866
13867
13868
13869
13870
13871
13872
13873
13874
13875
13876
13877
13878
13879
13880
13881
13882
13883
13884
13885
13886
13887
13888
13889
13890
13891
13892
13893
13894
13895
13896
13897
13898
13899
13900
13901
13902
13903
13904
13905
13906
13907
13908
13909
13910
13911
13912
13913
13914
13915
13916
13917
13918
13919
13920
13921
13922
13923
13924
13925
13926
13927
13928
13929
13930
13931
13932
13933
13934
13935
13936
13937
13938
13939
13940
13941
13942
13943
13944
13945
13946
13947
13948
13949
13950
13951
13952
13953
13954
13955
13956
13957
13958
13959
13960
13961
13962
13963
13964
13965
13966
13967
13968
13969
13970
13971
13972
13973
13974
13975
13976
13977
13978
13979
13980
13981
13982
13983
13984
13985
13986
13987
13988
13989
13990
13991
13992
13993
13994
13995
13996
13997
13998
13999
14000
"\n",
"\n",
"Paradox, 4, 39, 70\n",
"\n",
"\n",
"\n",
"Phenomenological description, 3, 6-8, 13-14, 54, 60-62, 70, 77-84, 96, 111\n",
"\n",
"\n",
"\n",
"Phenomenology, 6, 9, 60-62, 66, 67, 72, 78, 79\n",
"\n",
"\n",
"\n",
"Phillips, Gene, 4\n",
"\n",
"\n",
"\n",
"Philosophy, 17, 40, 66, 67, 75, 97.\n",
"\n",
" _See also_ Existentialism; Phenomenology\n",
"\n",
"\n",
"\n",
"Plato, 6, 37, 45, 67, 104\n",
"\n",
"\n",
"\n",
"Plutarch, 101\n",
"\n",
"\n",
"\n",
"Popper, Karl, 39, 104\n",
"\n",
"\n",
"\n",
"Practice, _see_ Humanistic nursing practice theory\n",
"\n",
"\n",
"\n",
"Presence, 3, 5, 6, 13, 15, 16, 27-29, 47, 56, 58, 72, 106.\n",
"\n",
" _See also_ Between, (the); Dialogue; Intersubjective; and Transaction\n",
"\n",
"\n",
"\n",
"Proust, Marcel, 6\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"Research, 51-63\n",
"\n",
"\n",
"\n",
"Responsibility, 3, 6, 16-17, 20, 28, 41, 53-55, 57, 63, 69, 70, 72, 110.\n",
"\n",
" _See also_ Choice; Confidentiality\n",
"\n",
"\n",
"\n",
"Rousseau, Jean-Jacques, 6\n",
"\n",
"\n",
"\n",
"Russell, Bertrand, 70, 104\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"Science, scientific, 3, 6, 7, 8, 15, 17, 35, 45, 52, 53, 58, 60, 66, 68,\n",
"\n",
" 70, 72, 85-87, 88, 90, 93, 111\n",
"\n",
"{129}\n",
"\n",
"\n",
"\n",
"Socrates, 38\n",
"\n",
"\n",
"\n",
"Space, 18-20, 34-35\n",
"\n",
"\n",
"\n",
"Subjective-objective, 27, 35-36, 52, 67, 79, 81, 93\n",
"\n",
"\n",
"\n",
"Synthesis, 72-74, 79, 82-84, 93, 95, 102, 103, 108, 111.\n",
"\n",
" _See also_ Complementary synthesis\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"Theory, _see_ Humanistic nursing practice theory\n",
"\n",
"\n",
"\n",
"Time, 18-20, 29, 33-34\n",
"\n",
"\n",
"\n",
"Transactions, 11, 12-13, 16-20, 21, 35-36.\n",
"\n",
" _See also_ Between, (the); Dialogue; Intersubjective; and Presence\n",
"\n",
"\n",
"\n",
"Trautman, Mary Jane, 87, 88\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"Uniqueness, 4, 7, 15, 23, 25, 26, 27, 32, 34, 35-36, 40, 45, 56, 68, 69,\n",
"\n",
" 72, 77, 111\n",
"\n",
"\n",
"\n",
"Value, 6, 16, 17, 18, 30, 39, 46-48, 54, 56-57, 69, 71, 77, 79, 85, 97,\n",
"\n",
" 98, 104, 105\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"Well-being, 12, 16, 36, 89, 92\n",
"\n",
"\n",
"\n",
"Whitehead, Alfred North, 6\n",
"\n",
"\n",
"\n",
"Wiesel, Elie, 7, 96\n",
"\n",
"\n",
"\n",
"Weymouth, Lilyan, 55\n",
"\n",
"\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Words, 8, 60-62, 73, 81, 98\n",
"\n",
"\n",
"\n",
"Wright, Edward A., 91\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"[Transcriber's Note: The following corrections have been made in this\n",
"\n",
"version.]\n",
"\n",
"\n",
"\n",
"Page iv\n",
"\n",
"'exhilirating' corrected to 'exhilarating': same exhilarating feeling\n",
"\n",
"'evalute' corrected to'evaluate': and evaluate.\n",
"\n",
"\n",
"\n",
"Page 11\n",
"\n",
"'sitution' corrected to 'situation': the human situation\n",
"\n",
"'appers' corrected to 'appears': nursing appears in\n",
"\n",
"\n",
"\n",
"Page 12\n",
"\n",
"'limtations' corrected to 'limitations': and limitations of\n",
"\n",
"\n",
"\n",
"Page 14\n",
"\n",
"'siuation' corrected to 'situation': now shared situation\n",
"\n",
"\n",
"\n",
"Page 15\n",
"\n",
"'wothout' corrected to 'without': goes without saying\n",
"\n",
"'echos' corrected to 'echoes': process echoes existential\n",
"\n",
"\n",
"\n",
"Page 18\n",
"\n",
"'wiscom' corrected to 'wisdom': of clinical wisdom\n",
"\n",
"'wourlds' corrected to 'worlds': lived nursing worlds\n",
"\n",
"\n",
"\n",
"Page 20\n",
"\n",
"'appraoch' corrected to 'approach': nursing approach is\n",
"\n",
"'cross-clincal' corrected to 'cross-clinical': genuine cross-clinical\n",
"\n",
"\n",
"\n",
"Page 21\n",
"\n",
"'clairty' corrected to 'clarity': gained in clarity\n",
"\n",
"'nusing' corrected to 'nursing': runs through nursing\n",
"\n",
"'conveyting' corrected to 'conveying': stream conveying the\n",
"\n",
"\n",
"\n",
"Page 22\n",
"\n",
"'languge' corrected to 'language': with our language\n",
"\n",
"'consitituent' corrected to 'constituent': component or constituent\n",
"\n",
"'relfecting' corrected to 'reflecting': Once while reflecting\n",
"\n",
"\n",
"\n",
"Page 23\n",
"\n",
"'dicionary' corrected to 'dictionary': the typical dictionary\n",
"\n",
"\n",
"\n",
"Page 25\n",
"\n",
"'ot' corrected to 'to': expects to give\n",
"\n",
"'reflectd' corrected to 'reflected': meeting is reflected\n",
"\n",
"\n",
"\n",
"Page 26\n",
"\n",
"'for for' corrected to 'for': have a capacity for\n",
"\n",
"'tor' corrected to 'for': necessary for everyday\n",
"\n",
"\n",
"\n",
"Page 27\n",
"\n",
"'objectivication' corrected to 'objectification': Through objectification\n",
"\n",
"'his' corrected to 'this': but this in\n",
"\n",
"\n",
"\n",
"Page 28\n",
"\n",
"'availbility' corrected to 'availability': and availability in\n",
"\n",
"\n",
"\n",
"Page 29\n",
"\n",
"'begin' corrected to 'being': modes of being\n",
"\n",
"'purposefull' corrected to 'purposeful': a purposeful call\n",
"\n",
"\n",
"\n",
"Page 30\n",
"\n",
"'communicaion' corrected to 'communication': nurse-patient communication\n",
"\n",
"\n",
"\n",
"Page 31\n",
"\n",
"'expecially' corrected to 'especially': staggering, especially so\n",
"\n",
"'Futhermore' corrected to 'Furthermore': Furthermore, in caring\n",
"\n",
"\n",
"\n",
"Page 33\n",
"\n",
"'occured' corrected to 'occurred': may have occurred\n",
"\n",
"'possiblities' corrected to 'possibilities': These possibilities may\n",
"\n",
"\n",
"\n",
"Page 35\n",
"\n",
"'exmination' corrected to 'examination': the examination turned\n",
"\n",
"\n",
"\n",
"Page 40\n",
"\n",
"'echos' corrected to 'echoes': world echoes its\n",
"\n",
"\n",
"\n",
"Page 41\n",
"\n",
"'childrens'' corrected to 'children's': their children's worlds\n",
"\n",
"'intial' corrected to 'initial': this initial home\n",
"\n",
"\n",
"\n",
"Page 42\n",
"\n",
"'errupt' corrected to 'erupt': it might erupt?\n",
"\n",
"'Ofen' corrected to 'Often': Often one saw\n",
"\n",
"\n",
"\n",
"Page 43\n",
"\n",
"'long-rememberd' corrected to 'long-remembered': long-remembered events\n",
"\n",
"'of of' corrected to 'of': times of feeling\n",
"\n",
"'there' correct to 'there are': there are multiple\n",
"\n",
"'give' corrected to 'gives': it gives satisfaction\n",
"\n",
"\n",
"\n",
"Page 47\n",
"\n",
"'contemporaires' corrected to 'contemporaries': with my contemporaries\n",
"\n",
"\n",
"\n",
"Page 51\n",
"\n",
"'necesssary' corrected to 'necessary': is necessary in\n",
"\n",
"'reasonbale' corrected to 'reasonable': both reasonable and\n",
"\n",
"\n",
"\n",
"Page 52\n",
"\n",
"'substanitated' corrected to 'substantiated': be substantiated fully\n",
"\n",
"\n",
"\n",
"Page 53\n",
"\n",
"'of' corrected to 'or': care or when\n",
"\n",
"\n",
"\n",
"Page 55\n",
"\n",
"'viewd' correct to 'viewed': is viewed as\n",
"\n",
"'profesion' corrected to 'profession': nursing profession. Utilizing\n",
"\n",
"'reponses' corrected to 'responses': struggling responses\n",
"\n",
"\n",
"\n",
"Page 57\n",
"\n",
"'knowlege' corrected to 'knowledge': dispersion of knowledge\n",
"\n",
"\n",
"\n",
"Page 59\n",
"\n",
"'clincial' corrected to 'clinical': As clinical supervisor\n",
"\n",
"'theapeutic' corrected to 'therapeutic': patients' therapeutic needs\n",
"\n",
"\n",
"\n",
"Page 60\n",
"\n",
"'civilzation' corrected to 'civilization': his civilization within\n",
"\n",
"\n",
"\n",
"Page 61\n",
"\n",
"'somethimes' corrected to 'sometimes': sometimes like a\n",
"\n",
"'us' corrected to 'use': and use of \"weasel\"\n",
"\n",
"\n",
"\n",
"Page 62\n",
"\n",
"'presitigious' corrected to 'prestigious': foreign prestigious terms\n",
"\n",
"'intial' corrected to 'initial': to initial aware\n",
"\n",
"\n",
"\n",
"Page 66\n",
"\n",
"'mehtodology' corrected to 'methodology': the methodology in\n",
"\n",
"'reexemaination' corrected to 'reexamination': available for reexamination,\n",
"\n",
"'phenomenologic' corrected to 'phenomenological': a phenomenological method\n",
"\n",
"\n",
"\n",
"Page 68\n",
"\n",
"'citical' corrected to 'critical': my critical powers\n",
"\n",
"\n",
"\n",
"Page 70\n",
"\n",
"'excietment' corrected to 'excitement': feelings of excitement\n",
"\n",
"'easilty' corrected to 'easily': not easily relinquished\n",
"\n",
"\n",
"\n",
"Page 71\n",
"\n",
"'clincal' corrected to 'clinical': struggle in clinical\n",
"\n",
"'reconsituting' corrected to 'reconstituting': of reconstituting with\n",
"\n",
"\n",
"\n",
"Page 72\n",
"\n",
"'assunder' corrected to 'asunder': bursts asunder\n",
"\n",
"\n",
"\n",
"Page 74\n",
"\n",
"'oscilating' corrected to 'oscillating': This oscillating, dialectical\n",
"\n",
"\n",
"\n",
"Page 78\n",
"\n",
"'the the' corrected to 'the': the approach has been\n",
"\n",
"'desciplines' corrected to 'disciplines': by different disciplines\n",
"\n",
"'deatils' corrected to 'details': more concrete details\n",
"\n",
"\n",
"\n",
"Page 81\n",
"\n",
"'perpectives' corrected to 'perspectives': their own perspectives\n",
"\n",
"'aslo' corrected to 'also': rather it also\n",
"\n",
"\n",
"\n",
"Page 82\n",
"\n",
"'a' corrected to 'as': angles as possible\n",
"\n",
"'expliction' corrected to 'explication': the explication of\n",
"\n",
"'chracteristics' corrected to 'characteristics': has other characteristics\n",
"\n",
"'convy' corrected to 'convey': may convey anger\n",
"\n",
"\n",
"\n",
"Page 83\n",
"\n",
"'empahty' corrected to 'empathy': Thus, empathy is\n",
"\n",
"\n",
"\n",
"Page 85\n",
"\n",
"'othe' corrected to 'other': and other forms\n",
"\n",
"\n",
"\n",
"Page 87\n",
"\n",
"'peparation' corrected to 'preparation': educational preparation\n",
"\n",
"'sceintific' corrected to 'scientific': with scientific courses\n",
"\n",
"'quanitification' corrected to 'quantification': strives for quantification\n",
"\n",
"\n",
"\n",
"Page 90 - footnote 11\n",
"\n",
"'Sceince' corrected to 'Science': Nursing Science\n",
"\n",
"\n",
"\n",
"Page 91\n",
"\n",
"'physcial' corrected to 'physical': of physical objects\n",
"\n",
"\n",
"\n",
"Page 93\n",
"\n",
"'responsses' corrected to 'responses': human responses to\n",
"\n",
"'it' corrected to 'is': It is possible\n",
"\n",
"\n",
"\n",
"Page 97\n",
"\n",
"'nusring' corrected to 'nursing': for nursing theory\n",
"\n",
"'veiwed' corrected to 'viewed': never viewed myself\n",
"\n",
"\n",
"\n",
"Page 100\n",
"\n",
"'opportunties' corrected to 'opportunities': therapeutic opportunities available\n",
"\n",
"\n",
"\n",
"Page 102\n",
"\n",
"'necesary' corrected to 'necessary': are necessary for\n",
"\n",
"'contributaries' corrected to 'contributories': of many contributories\n",
"\n",
"'Geothe' corrected to 'Goethe': Nietzsche and Goethe\n",
"\n",
"\n",
"\n",
"Page 104\n",
"\n",
"'comparision' corrected to 'comparison': comparison of it\n",
"\n",
"Footnote 9\n",
"\n",
"'Pbulishers' corrected to 'Publishers': Basic Books, Publishers\n",
"\n",
"\n",
"\n",
"Page 106\n",
"\n",
"'containted' corrected to 'contained': total group contained\n",
"\n",
"\n",
"\n",
"Page 110\n",
"\n",
"'nurse'' corrected to 'nurse's': a nurse's duality\n",
"\n",
"\n",
"\n",
"Page 111\n",
"\n",
"'nusing' corrected to 'nursing': Humanistic nursing practice\n",
"\n",
"\n",
"\n",
"Page 114\n",
"\n",
"''Sometimes' corrected to '\"Sometimes': I said, \"Sometimes\n",
"\n",
"\n",
"\n",
"Page 115\n",
"\n",
"'know' corrected to 'knew': if she knew\n",
"\n",
"'assunder' corrected to 'asunder': to burst asunder\n",
"\n",
"\n",
"\n",
"Page 117\n",
"\n",
"'encourged' corrected to 'encouraged': I encouraged patients'\n",
"\n",
"\n",
"\n",
"Page 118\n",
"\n",
"'therapeautic' corrected to 'therapeutic': individual therapeutic gains\n",
"\n",
"'aggreeably' corrected to 'agreeably': to me agreeably\n",
"\n",
"\n",
"\n",
"Page 121\n",
"\n",
"'mure' corrected to 'more': two or more\n",
"\n",
"\n",
"\n",
"Page 123\n",
"\n",
"'Hursing' corrected to 'Nursing': Zderad's _Humanistic Nursing_\n",
"\n",
"\n",
"\n",
"Page 124\n",
"\n",
"'Refelections' corrected to 'Reflections': Reflections on \"how\"\n",
"\n",
"'Dcruz' corrected to 'D'cruz': & D'cruz, J. V.\n",
"\n",
"\n",
"\n",
"Page 128\n",
"\n",
"'Nietzche' corrected to 'Nietzsche': Nietzsche, Frederick,]\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"***END OF THE PROJECT GUTENBERG EBOOK HUMANISTIC NURSING***\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"******* This file should be named 25020-8.txt or 25020-8.zip *******\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"This and all associated files of various formats will be found in:\n",
"\n",
"http://www.gutenberg.org/dirs/2/5/0/2/25020\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"Updated editions will replace the previous one--the old editions\n",
"\n",
"will be renamed.\n",
"\n",
"\n",
"\n",
"Creating the works from public domain print editions means that no\n",
"\n",
"one owns a United States copyright in these works, so the Foundation\n",
"\n",
"(and you!) can copy and distribute it in the United States without\n",
"\n",
"permission and without paying copyright royalties. Special rules,\n",
"\n",
"set forth in the General Terms of Use part of this license, apply to\n",
"\n",
"copying and distributing Project Gutenberg-tm electronic works to\n",
"\n",
"protect the PROJECT GUTENBERG-tm concept and trademark. Project\n",
"\n",
"Gutenberg is a registered trademark, and may not be used if you\n",
"\n",
"charge for the eBooks, unless you receive specific permission. If you\n",
"\n",
"do not charge anything for copies of this eBook, complying with the\n",
"\n",
"rules is very easy. You may use this eBook for nearly any purpose\n",
"\n",
"such as creation of derivative works, reports, performances and\n",
"\n",
"research. They may be modified and printed and given away--you may do\n",
"\n",
"practically ANYTHING with public domain eBooks. Redistribution is\n",
"\n",
"subject to the trademark license, especially commercial\n",
"\n",
"redistribution.\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"*** START: FULL LICENSE ***\n",
"\n",
"\n",
"\n",
"THE FULL PROJECT GUTENBERG LICENSE\n",
"\n",
"PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK\n",
"\n",
"\n",
"\n",
"To protect the Project Gutenberg-tm mission of promoting the free\n",
"\n",
"distribution of electronic works, by using or distributing this work\n",
"\n",
"(or any other work associated in any way with the phrase \"Project\n",
"\n",
"Gutenberg\"), you agree to comply with all the terms of the Full Project\n",
"\n",
"Gutenberg-tm License (available with this file or online at\n",
"\n",
"http://www.gutenberg.org/license).\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"Section 1. General Terms of Use and Redistributing Project Gutenberg-tm\n",
"\n",
"electronic works\n",
"\n",
"\n",
"\n",
"1.A. By reading or using any part of this Project Gutenberg-tm\n",
"\n",
"electronic work, you indicate that you have read, understand, agree to\n",
"\n",
"and accept all the terms of this license and intellectual property\n",
"\n",
"(trademark/copyright) agreement. If you do not agree to abide by all\n",
"\n",
"the terms of this agreement, you must cease using and return or destroy\n",
"\n",
"all copies of Project Gutenberg-tm electronic works in your possession.\n",
"\n",
"If you paid a fee for obtaining a copy of or access to a Project\n",
"\n",
"Gutenberg-tm electronic work and you do not agree to be bound by the\n",
"\n",
"terms of this agreement, you may obtain a refund from the person or\n",
"\n",
"entity to whom you paid the fee as set forth in paragraph 1.E.8.\n",
"\n",
"\n",
"\n",
"1.B. \"Project Gutenberg\" is a registered trademark. It may only be\n",
"\n",
"used on or associated in any way with an electronic work by people who\n",
"\n",
"agree to be bound by the terms of this agreement. There are a few\n",
"\n",
"things that you can do with most Project Gutenberg-tm electronic works\n",
"\n",
"even without complying with the full terms of this agreement. See\n",
"\n",
"paragraph 1.C below. There are a lot of things you can do with Project\n",
"\n",
"Gutenberg-tm electronic works if you follow the terms of this agreement\n",
"\n",
"and help preserve free future access to Project Gutenberg-tm electronic\n",
"\n",
"works. See paragraph 1.E below.\n",
"\n",
"\n",
"\n",
"1.C. The Project Gutenberg Literary Archive Foundation (\"the Foundation\"\n",
"\n",
"or PGLAF), owns a compilation copyright in the collection of Project\n",
"\n",
"Gutenberg-tm electronic works. Nearly all the individual works in the\n",
"\n",
"collection are in the public domain in the United States. If an\n",
"\n",
"individual work is in the public domain in the United States and you are\n",
"\n",
"located in the United States, we do not claim a right to prevent you from\n",
"\n",
"copying, distributing, performing, displaying or creating derivative\n",
"\n",
"works based on the work as long as all references to Project Gutenberg\n",
"\n",
"are removed. Of course, we hope that you will support the Project\n",
"\n",
"Gutenberg-tm mission of promoting free access to electronic works by\n",
"\n",
"freely sharing Project Gutenberg-tm works in compliance with the terms of\n",
"\n",
"this agreement for keeping the Project Gutenberg-tm name associated with\n",
"\n",
"the work. You can easily comply with the terms of this agreement by\n",
"\n",
"keeping this work in the same format with its attached full Project\n",
"\n",
"Gutenberg-tm License when you share it without charge with others.\n",
"\n",
"This particular work is one of the few copyrighted individual works\n",
"\n",
"included with the permission of the copyright holder. Information on\n",
"\n",
"the copyright owner for this particular work and the terms of use\n",
"\n",
"imposed by the copyright holder on this work are set forth at the\n",
"\n",
"beginning of this work.\n",
"\n",
"\n",
"\n",
"1.D. The copyright laws of the place where you are located also govern\n",
"\n",
"what you can do with this work. Copyright laws in most countries are in\n",
"\n",
"a constant state of change. If you are outside the United States, check\n",
"\n",
"the laws of your country in addition to the terms of this agreement\n",
"\n",
"before downloading, copying, displaying, performing, distributing or\n",
"\n",
"creating derivative works based on this work or any other Project\n",
"\n",
"Gutenberg-tm work. The Foundation makes no representations concerning\n",
"\n",
"the copyright status of any work in any country outside the United\n",
"\n",
"States.\n",
"\n",
"\n",
"\n",
"1.E. Unless you have removed all references to Project Gutenberg:\n",
"\n",
"\n",
"\n",
"1.E.1. The following sentence, with active links to, or other immediate\n",
"\n",
"access to, the full Project Gutenberg-tm License must appear prominently\n",
"\n",
"whenever any copy of a Project Gutenberg-tm work (any work on which the\n",
"\n",
"phrase \"Project Gutenberg\" appears, or with which the phrase \"Project\n",
"\n",
"Gutenberg\" is associated) is accessed, displayed, performed, viewed,\n",
"\n",
"copied or distributed:\n",
"\n",
"\n",
"\n",
"This eBook is for the use of anyone anywhere at no cost and with\n",
"\n",
"almost no restrictions whatsoever. You may copy it, give it away or\n",
"\n",
"re-use it under the terms of the Project Gutenberg License included\n",
"\n",
"with this eBook or online at www.gutenberg.org\n",
"\n",
"\n",
"\n",
"1.E.2. If an individual Project Gutenberg-tm electronic work is derived\n",
"\n",
"from the public domain (does not contain a notice indicating that it is\n",
"\n",
"posted with permission of the copyright holder), the work can be copied\n",
"\n",
"and distributed to anyone in the United States without paying any fees\n",
"\n",
"or charges. If you are redistributing or providing access to a work\n",
"\n",
"with the phrase \"Project Gutenberg\" associated with or appearing on the\n",
"\n",
"work, you must comply either with the requirements of paragraphs 1.E.1\n",
"\n",
"through 1.E.7 or obtain permission for the use of the work and the\n",
"\n",
"Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or\n",
"\n",
"1.E.9.\n",
"\n",
"\n",
"\n",
"1.E.3. If an individual Project Gutenberg-tm electronic work is posted\n",
"\n",
"with the permission of the copyright holder, your use and distribution\n",
"\n",
"must comply with both paragraphs 1.E.1 through 1.E.7 and any additional\n",
"\n",
"terms imposed by the copyright holder. Additional terms will be linked\n",
"\n",
"to the Project Gutenberg-tm License for all works posted with the\n",
"\n",
"permission of the copyright holder found at the beginning of this work.\n",
"\n",
"\n",
"\n",
"1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm\n",
"\n",
"License terms from this work, or any files containing a part of this\n",
"\n",
"work or any other work associated with Project Gutenberg-tm.\n",
"\n",
"\n",
"\n",
"1.E.5. Do not copy, display, perform, distribute or redistribute this\n",
"\n",
"electronic work, or any part of this electronic work, without\n",
"\n",
"prominently displaying the sentence set forth in paragraph 1.E.1 with\n",
"\n",
"active links or immediate access to the full terms of the Project\n",
"\n",
"Gutenberg-tm License.\n",
"\n",
"\n",
"\n",
"1.E.6. You may convert to and distribute this work in any binary,\n",
"\n",
"compressed, marked up, nonproprietary or proprietary form, including any\n",
"\n",
"word processing or hypertext form. However, if you provide access to or\n",
"\n",
"distribute copies of a Project Gutenberg-tm work in a format other than\n",
"\n",
"\"Plain Vanilla ASCII\" or other format used in the official version\n",
"\n",
"posted on the official Project Gutenberg-tm web site (www.gutenberg.org),\n",
"\n",
"you must, at no additional cost, fee or expense to the user, provide a\n",
"\n",
"copy, a means of exporting a copy, or a means of obtaining a copy upon\n",
"\n",
"request, of the work in its original \"Plain Vanilla ASCII\" or other\n",
"\n",
"form. Any alternate format must include the full Project Gutenberg-tm\n",
"\n",
"License as specified in paragraph 1.E.1.\n",
"\n",
"\n",
"\n",
"1.E.7. Do not charge a fee for access to, viewing, displaying,\n",
"\n",
"performing, copying or distributing any Project Gutenberg-tm works\n",
"\n",
"unless you comply with paragraph 1.E.8 or 1.E.9.\n",
"\n",
"\n",
"\n",
"1.E.8. You may charge a reasonable fee for copies of or providing\n",
"\n",
"access to or distributing Project Gutenberg-tm electronic works provided\n",
"\n",
"that\n",
"\n",
"\n",
"\n",
"- You pay a royalty fee of 20% of the gross profits you derive from\n",
"\n",
" the use of Project Gutenberg-tm works calculated using the method\n",
"\n",
" you already use to calculate your applicable taxes. The fee is\n",
"\n",
" owed to the owner of the Project Gutenberg-tm trademark, but he\n",
"\n",
" has agreed to donate royalties under this paragraph to the\n",
"\n",
" Project Gutenberg Literary Archive Foundation. Royalty payments\n",
"\n",
" must be paid within 60 days following each date on which you\n",
"\n",
" prepare (or are legally required to prepare) your periodic tax\n",
"\n",
" returns. Royalty payments should be clearly marked as such and\n",
"\n",
" sent to the Project Gutenberg Literary Archive Foundation at the\n",
"\n",
" address specified in Section 4, \"Information about donations to\n",
"\n",
" the Project Gutenberg Literary Archive Foundation.\"\n",
"\n",
"\n",
"\n",
"- You provide a full refund of any money paid by a user who notifies\n",
"\n",