From fe2bc86d3a9ec430c2374df7fa343852b082a329 Mon Sep 17 00:00:00 2001 From: "Maximilian S. Pollak" Date: Fri, 4 Jun 2021 16:14:57 +0200 Subject: [PATCH] Done until Error --- your-code/main.ipynb | 13268 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 13219 insertions(+), 49 deletions(-) diff --git a/your-code/main.ipynb b/your-code/main.ipynb index 557b5f5..39643cd 100644 --- a/your-code/main.ipynb +++ b/your-code/main.ipynb @@ -12,10 +12,14 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ + "import pandas\n", + "import numpy\n", + "import functools\n", + "\n", "# Import reduce from functools, numpy and pandas" ] }, @@ -32,7 +36,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ @@ -54,11 +58,11 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "prophet_cleaned = prophet[569:]" ] }, { @@ -70,11 +74,19 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['the\\nbeloved,']\n" + ] + } + ], "source": [ - "# your code here" + "print([prophet_cleaned[3]])" ] }, { @@ -88,10 +100,11 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ + "import string\n", "def reference(x):\n", " '''\n", " Input: A string\n", @@ -101,8 +114,14 @@ " Input: 'the{7}'\n", " Output: 'the'\n", " '''\n", - " \n", - " # your code here" + " letters = list(string.ascii_letters + \"\\n\")\n", + " output = \"\"\n", + " for i in x:\n", + " if i not in letters:\n", + " del i\n", + " else:\n", + " output = output + i\n", + " return output" ] }, { @@ -114,13 +133,27 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['the', 'chosen', 'and', 'the\\nbeloved', 'who', 'was', 'a', 'dawn', 'unto', 'his']\n" + ] + } + ], "source": [ - "# your code here" + "prophet_reference = list(map(reference, prophet_cleaned))\n", + "print(prophet_reference[:10])" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [] + }, { "cell_type": "markdown", "metadata": {}, @@ -130,21 +163,14 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 17, "metadata": {}, "outputs": [], "source": [ - "def line_break(x):\n", - " '''\n", - " Input: A string\n", - " Output: A list of strings split on the line break (\\n) character\n", - " \n", - " Example:\n", - " Input: 'the\\nbeloved'\n", - " Output: ['the', 'beloved']\n", - " '''\n", - " \n", - " # your code here" + "def remove_linebreak(x):\n", + " output = \"\"\n", + " y = x.splitlines()\n", + " print(y)" ] }, { @@ -156,11 +182,13086 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 21, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['the']\n", + "['chosen']\n", + "['and']\n", + "['the', 'beloved']\n", + "['who']\n", + "['was']\n", + "['a']\n", + "['dawn']\n", + "['unto']\n", + "['his']\n", + "['own', 'day']\n", + "['had']\n", + "['waited']\n", + "['twelve']\n", + "['years']\n", + "['in']\n", + "['the']\n", + "['city', 'of']\n", + "['Orphalese']\n", + "['for']\n", + "['his']\n", + "['ship']\n", + "['that']\n", + "['was']\n", + "['to', 'return']\n", + "['and']\n", + "['bear']\n", + "['him']\n", + "['back']\n", + "['to']\n", + "['the']\n", + "['isle']\n", + "['of', 'his']\n", + "['birth', '', 'And']\n", + "['in']\n", + "['the']\n", + "['twelfth']\n", + "['year']\n", + "['on']\n", + "['the']\n", + "['seventh', 'day']\n", + "['of']\n", + "['Ielool']\n", + "['the']\n", + "['month']\n", + "['of']\n", + "['reaping']\n", + "['he', 'climbed']\n", + "['the']\n", + "['hill']\n", + "['without']\n", + "['the']\n", + "['city']\n", + "['walls', 'and']\n", + "['looked']\n", + "['seaward']\n", + "['and']\n", + "['he']\n", + "['beheld']\n", + "['his', 'ship']\n", + "['coming']\n", + "['with']\n", + "['the']\n", + "['mist', '', 'Then']\n", + "['the']\n", + "['gates']\n", + "['of']\n", + "['his']\n", + "['heart']\n", + "['were']\n", + "['flung', 'open']\n", + "['and']\n", + "['his']\n", + "['joy']\n", + "['flew']\n", + "['far']\n", + "['over']\n", + "['the']\n", + "['sea', 'And']\n", + "['he']\n", + "['closed']\n", + "['his']\n", + "['eyes']\n", + "['and']\n", + "['prayed']\n", + "['in']\n", + "['the', 'silences']\n", + "['of']\n", + "['his']\n", + "['soul', '', '', '', 'But']\n", + "['as']\n", + "['he']\n", + "['descended']\n", + "['the']\n", + "['hill']\n", + "['a']\n", + "['sadness', 'came']\n", + "['upon']\n", + "['him']\n", + "['and']\n", + "['he']\n", + "['thought']\n", + "['in']\n", + "['his', 'heart', '', 'How']\n", + "['shall']\n", + "['I']\n", + "['go']\n", + "['in']\n", + "['peace']\n", + "['and']\n", + "['without', 'sorrow']\n", + "['Nay']\n", + "['not']\n", + "['without']\n", + "['a']\n", + "['wound']\n", + "['in']\n", + "['the', 'spirit']\n", + "['shall']\n", + "['I']\n", + "['leave']\n", + "['this']\n", + "['city']\n", + "['Long', 'were']\n", + "['the']\n", + "['days']\n", + "['of']\n", + "['pain']\n", + "['I']\n", + "['have']\n", + "['spent', 'within']\n", + "['its']\n", + "['walls']\n", + "['and']\n", + "['long']\n", + "['were']\n", + "['the', 'nights']\n", + "['of']\n", + "['aloneness']\n", + "['and']\n", + "['who']\n", + "['can']\n", + "['depart', 'from']\n", + "['his']\n", + "['pain']\n", + "['and']\n", + "['his']\n", + "['aloneness']\n", + "['without', 'regret', '', 'Too']\n", + "['many']\n", + "['fragments']\n", + "['of']\n", + "['the']\n", + "['spirit']\n", + "['have']\n", + "['I', 'scattered']\n", + "['in']\n", + "['these']\n", + "['streets']\n", + "['and']\n", + "['too']\n", + "['many', 'are']\n", + "['the']\n", + "['children']\n", + "['of']\n", + "['my']\n", + "['longing']\n", + "['that']\n", + "['walk', 'naked']\n", + "['among']\n", + "['these']\n", + "['hills']\n", + "['and']\n", + "['I']\n", + "['cannot', 'withdraw']\n", + "['from']\n", + "['them']\n", + "['without']\n", + "['a']\n", + "['burden']\n", + "['and', 'an']\n", + "['ache', '', 'It']\n", + "['is']\n", + "['not']\n", + "['a']\n", + "['garment']\n", + "['I']\n", + "['cast']\n", + "['off']\n", + "['this', 'day']\n", + "['but']\n", + "['a']\n", + "['skin']\n", + "['that']\n", + "['I']\n", + "['tear']\n", + "['with']\n", + "['my']\n", + "['own', 'hands', '', 'Nor']\n", + "['is']\n", + "['it']\n", + "['a']\n", + "['thought']\n", + "['I']\n", + "['leave']\n", + "['behind']\n", + "['me', 'but']\n", + "['a']\n", + "['heart']\n", + "['made']\n", + "['sweet']\n", + "['with']\n", + "['hunger']\n", + "['and', 'with']\n", + "['thirst', '', '', '', 'Yet']\n", + "['I']\n", + "['cannot']\n", + "['tarry']\n", + "['longer', '', 'The']\n", + "['sea']\n", + "['that']\n", + "['calls']\n", + "['all']\n", + "['things']\n", + "['unto']\n", + "['her', 'calls']\n", + "['me']\n", + "['and']\n", + "['I']\n", + "['must']\n", + "['embark', '', 'For']\n", + "['to']\n", + "['stay']\n", + "['though']\n", + "['the']\n", + "['hours']\n", + "['burn']\n", + "['in', 'the']\n", + "['night']\n", + "['is']\n", + "['to']\n", + "['freeze']\n", + "['and']\n", + "['crystallize', 'and']\n", + "['be']\n", + "['bound']\n", + "['in']\n", + "['a']\n", + "['mould', '', 'Fain']\n", + "['would']\n", + "['I']\n", + "['take']\n", + "['with']\n", + "['me']\n", + "['all']\n", + "['that']\n", + "['is', 'here']\n", + "['But']\n", + "['how']\n", + "['shall']\n", + "['I', '', 'A']\n", + "['voice']\n", + "['cannot']\n", + "['carry']\n", + "['the']\n", + "['tongue']\n", + "['and', 'the']\n", + "['lips']\n", + "['that']\n", + "['gave']\n", + "['it']\n", + "['wings']\n", + "['Alone', 'must']\n", + "['it']\n", + "['seek']\n", + "['the']\n", + "['ether', '', 'And']\n", + "['alone']\n", + "['and']\n", + "['without']\n", + "['his']\n", + "['nest']\n", + "['shall']\n", + "['the', 'eagle']\n", + "['fly']\n", + "['across']\n", + "['the']\n", + "['sun', '', '', '', 'Now']\n", + "['when']\n", + "['he']\n", + "['reached']\n", + "['the']\n", + "['foot']\n", + "['of']\n", + "['the', 'hill']\n", + "['he']\n", + "['turned']\n", + "['again']\n", + "['towards']\n", + "['the']\n", + "['sea', 'and']\n", + "['he']\n", + "['saw']\n", + "['his']\n", + "['ship']\n", + "['approaching']\n", + "['the', 'harbour']\n", + "['and']\n", + "['upon']\n", + "['her']\n", + "['prow']\n", + "['the']\n", + "['mariners', 'the']\n", + "['men']\n", + "['of']\n", + "['his']\n", + "['own']\n", + "['land', '', 'And']\n", + "['his']\n", + "['soul']\n", + "['cried']\n", + "['out']\n", + "['to']\n", + "['them']\n", + "['and']\n", + "['he', 'said', '', 'Sons']\n", + "['of']\n", + "['my']\n", + "['ancient']\n", + "['mother']\n", + "['you']\n", + "['riders']\n", + "['of', 'the']\n", + "['tides', '', 'How']\n", + "['often']\n", + "['have']\n", + "['you']\n", + "['sailed']\n", + "['in']\n", + "['my']\n", + "['dreams', 'And']\n", + "['now']\n", + "['you']\n", + "['come']\n", + "['in']\n", + "['my']\n", + "['awakening']\n", + "['which', 'is']\n", + "['my']\n", + "['deeper']\n", + "['dream', '', 'Ready']\n", + "['am']\n", + "['I']\n", + "['to']\n", + "['go']\n", + "['and']\n", + "['my']\n", + "['eagerness']\n", + "['with', 'sails']\n", + "['full']\n", + "['set']\n", + "['awaits']\n", + "['the']\n", + "['wind', '', 'Only']\n", + "['another']\n", + "['breath']\n", + "['will']\n", + "['I']\n", + "['breathe']\n", + "['in', 'this']\n", + "['still']\n", + "['air']\n", + "['only']\n", + "['another']\n", + "['loving']\n", + "['look', 'cast']\n", + "['backward', '', 'And']\n", + "['then']\n", + "['I']\n", + "['shall']\n", + "['stand']\n", + "['among']\n", + "['you']\n", + "['a', 'seafarer']\n", + "['among']\n", + "['seafarers']\n", + "['And']\n", + "['you', 'vast']\n", + "['sea']\n", + "['sleepless']\n", + "['mother', '', 'Who']\n", + "['alone']\n", + "['are']\n", + "['peace']\n", + "['and']\n", + "['freedom']\n", + "['to']\n", + "['the', 'river']\n", + "['and']\n", + "['the']\n", + "['stream', '', 'Only']\n", + "['another']\n", + "['winding']\n", + "['will']\n", + "['this']\n", + "['stream', 'make']\n", + "['only']\n", + "['another']\n", + "['murmur']\n", + "['in']\n", + "['this']\n", + "['glade', '', 'And']\n", + "['then']\n", + "['shall']\n", + "['I']\n", + "['come']\n", + "['to']\n", + "['you']\n", + "['a', 'boundless']\n", + "['drop']\n", + "['to']\n", + "['a']\n", + "['boundless']\n", + "['ocean', '', '', '', 'And']\n", + "['as']\n", + "['he']\n", + "['walked']\n", + "['he']\n", + "['saw']\n", + "['from']\n", + "['afar']\n", + "['men', 'and']\n", + "['women']\n", + "['leaving']\n", + "['their']\n", + "['fields']\n", + "['and']\n", + "['their', 'vineyards']\n", + "['and']\n", + "['hastening']\n", + "['towards']\n", + "['the']\n", + "['city', 'gates', '', 'And']\n", + "['he']\n", + "['heard']\n", + "['their']\n", + "['voices']\n", + "['calling']\n", + "['his', 'name']\n", + "['and']\n", + "['shouting']\n", + "['from']\n", + "['field']\n", + "['to']\n", + "['field', 'telling']\n", + "['one']\n", + "['another']\n", + "['of']\n", + "['the']\n", + "['coming']\n", + "['of']\n", + "['his', 'ship', '', 'And']\n", + "['he']\n", + "['said']\n", + "['to']\n", + "['himself', '', 'Shall']\n", + "['the']\n", + "['day']\n", + "['of']\n", + "['parting']\n", + "['be']\n", + "['the']\n", + "['day']\n", + "['of', 'gathering', '', 'And']\n", + "['shall']\n", + "['it']\n", + "['be']\n", + "['said']\n", + "['that']\n", + "['my']\n", + "['eve']\n", + "['was']\n", + "['in', 'truth']\n", + "['my']\n", + "['dawn', '', 'And']\n", + "['what']\n", + "['shall']\n", + "['I']\n", + "['give']\n", + "['unto']\n", + "['him']\n", + "['who']\n", + "['has', 'left']\n", + "['his']\n", + "['plough']\n", + "['in']\n", + "['midfurrow']\n", + "['or']\n", + "['to', 'him']\n", + "['who']\n", + "['has']\n", + "['stopped']\n", + "['the']\n", + "['wheel']\n", + "['of']\n", + "['his', 'winepress']\n", + "['Shall']\n", + "['my']\n", + "['heart']\n", + "['become']\n", + "['a', 'tree']\n", + "['heavyladen']\n", + "['with']\n", + "['fruit']\n", + "['that']\n", + "['I']\n", + "['may', 'gather']\n", + "['and']\n", + "['give']\n", + "['unto']\n", + "['them', '', 'And']\n", + "['shall']\n", + "['my']\n", + "['desires']\n", + "['flow']\n", + "['like']\n", + "['a', 'fountain']\n", + "['that']\n", + "['I']\n", + "['may']\n", + "['fill']\n", + "['their']\n", + "['cups', '', 'Am']\n", + "['I']\n", + "['a']\n", + "['harp']\n", + "['that']\n", + "['the']\n", + "['hand']\n", + "['of']\n", + "['the']\n", + "['mighty', 'may']\n", + "['touch']\n", + "['me']\n", + "['or']\n", + "['a']\n", + "['flute']\n", + "['that']\n", + "['his']\n", + "['breath', 'may']\n", + "['pass']\n", + "['through']\n", + "['me', '', 'A']\n", + "['seeker']\n", + "['of']\n", + "['silences']\n", + "['am']\n", + "['I']\n", + "['and']\n", + "['what', 'treasure']\n", + "['have']\n", + "['I']\n", + "['found']\n", + "['in']\n", + "['silences']\n", + "['that']\n", + "['I', 'may']\n", + "['dispense']\n", + "['with']\n", + "['confidence', '', 'If']\n", + "['this']\n", + "['is']\n", + "['my']\n", + "['day']\n", + "['of']\n", + "['harvest']\n", + "['in']\n", + "['what', 'fields']\n", + "['have']\n", + "['I']\n", + "['sowed']\n", + "['the']\n", + "['seed']\n", + "['and']\n", + "['in', 'what']\n", + "['unremembered']\n", + "['seasons', '', 'If']\n", + "['this']\n", + "['indeed']\n", + "['be']\n", + "['the']\n", + "['hour']\n", + "['in']\n", + "['which']\n", + "['I', 'lift']\n", + "['up']\n", + "['my']\n", + "['lantern']\n", + "['it']\n", + "['is']\n", + "['not']\n", + "['my']\n", + "['flame', 'that']\n", + "['shall']\n", + "['burn']\n", + "['therein', '', 'Empty']\n", + "['and']\n", + "['dark']\n", + "['shall']\n", + "['I']\n", + "['raise']\n", + "['my']\n", + "['lantern', '', 'And']\n", + "['the']\n", + "['guardian']\n", + "['of']\n", + "['the']\n", + "['night']\n", + "['shall']\n", + "['fill', 'it']\n", + "['with']\n", + "['oil']\n", + "['and']\n", + "['he']\n", + "['shall']\n", + "['light']\n", + "['it']\n", + "['also', '', '', '', 'These']\n", + "['things']\n", + "['he']\n", + "['said']\n", + "['in']\n", + "['words']\n", + "['But']\n", + "['much', 'in']\n", + "['his']\n", + "['heart']\n", + "['remained']\n", + "['unsaid']\n", + "['For']\n", + "['he', 'himself']\n", + "['could']\n", + "['not']\n", + "['speak']\n", + "['his']\n", + "['deeper', 'secret', '', '', '', 'Illustration']\n", + "['', '', 'And']\n", + "['when']\n", + "['he']\n", + "['entered']\n", + "['into']\n", + "['the']\n", + "['city']\n", + "['all', 'the']\n", + "['people']\n", + "['came']\n", + "['to']\n", + "['meet']\n", + "['him']\n", + "['and']\n", + "['they', 'were']\n", + "['crying']\n", + "['out']\n", + "['to']\n", + "['him']\n", + "['as']\n", + "['with']\n", + "['one', 'voice', '', 'And']\n", + "['the']\n", + "['elders']\n", + "['of']\n", + "['the']\n", + "['city']\n", + "['stood']\n", + "['forth', 'and']\n", + "['said', '', 'Go']\n", + "['not']\n", + "['yet']\n", + "['away']\n", + "['from']\n", + "['us', '', 'A']\n", + "['noontide']\n", + "['have']\n", + "['you']\n", + "['been']\n", + "['in']\n", + "['our', 'twilight']\n", + "['and']\n", + "['your']\n", + "['youth']\n", + "['has']\n", + "['given']\n", + "['us', 'dreams']\n", + "['to']\n", + "['dream', '', 'No']\n", + "['stranger']\n", + "['are']\n", + "['you']\n", + "['among']\n", + "['us']\n", + "['nor', 'a']\n", + "['guest']\n", + "['but']\n", + "['our']\n", + "['son']\n", + "['and']\n", + "['our']\n", + "['dearly', 'beloved', '', 'Suffer']\n", + "['not']\n", + "['yet']\n", + "['our']\n", + "['eyes']\n", + "['to']\n", + "['hunger']\n", + "['for', 'your']\n", + "['face', '', '', '', 'And']\n", + "['the']\n", + "['priests']\n", + "['and']\n", + "['the']\n", + "['priestesses']\n", + "['said', 'unto']\n", + "['him', '', 'Let']\n", + "['not']\n", + "['the']\n", + "['waves']\n", + "['of']\n", + "['the']\n", + "['sea']\n", + "['separate']\n", + "['us', 'now']\n", + "['and']\n", + "['the']\n", + "['years']\n", + "['you']\n", + "['have']\n", + "['spent']\n", + "['in']\n", + "['our', 'midst']\n", + "['become']\n", + "['a']\n", + "['memory', '', 'You']\n", + "['have']\n", + "['walked']\n", + "['among']\n", + "['us']\n", + "['a']\n", + "['spirit', 'and']\n", + "['your']\n", + "['shadow']\n", + "['has']\n", + "['been']\n", + "['a']\n", + "['light', 'upon']\n", + "['our']\n", + "['faces', '', 'Much']\n", + "['have']\n", + "['we']\n", + "['loved']\n", + "['you']\n", + "['But']\n", + "['speechless', 'was']\n", + "['our']\n", + "['love']\n", + "['and']\n", + "['with']\n", + "['veils']\n", + "['has']\n", + "['it']\n", + "['been', 'veiled', '', 'Yet']\n", + "['now']\n", + "['it']\n", + "['cries']\n", + "['aloud']\n", + "['unto']\n", + "['you']\n", + "['and', 'would']\n", + "['stand']\n", + "['revealed']\n", + "['before']\n", + "['you', '', 'And']\n", + "['ever']\n", + "['has']\n", + "['it']\n", + "['been']\n", + "['that']\n", + "['love']\n", + "['knows', 'not']\n", + "['its']\n", + "['own']\n", + "['depth']\n", + "['until']\n", + "['the']\n", + "['hour']\n", + "['of', 'separation', '', '', '', 'And']\n", + "['others']\n", + "['came']\n", + "['also']\n", + "['and']\n", + "['entreated']\n", + "['him', 'But']\n", + "['he']\n", + "['answered']\n", + "['them']\n", + "['not']\n", + "['He']\n", + "['only']\n", + "['bent', 'his']\n", + "['head']\n", + "['and']\n", + "['those']\n", + "['who']\n", + "['stood']\n", + "['near']\n", + "['saw', 'his']\n", + "['tears']\n", + "['falling']\n", + "['upon']\n", + "['his']\n", + "['breast', '', 'And']\n", + "['he']\n", + "['and']\n", + "['the']\n", + "['people']\n", + "['proceeded']\n", + "['towards', 'the']\n", + "['great']\n", + "['square']\n", + "['before']\n", + "['the']\n", + "['temple', '', 'And']\n", + "['there']\n", + "['came']\n", + "['out']\n", + "['of']\n", + "['the']\n", + "['sanctuary']\n", + "['a', 'woman']\n", + "['whose']\n", + "['name']\n", + "['was']\n", + "['Almitra']\n", + "['And']\n", + "['she', 'was']\n", + "['a']\n", + "['seeress', '', 'And']\n", + "['he']\n", + "['looked']\n", + "['upon']\n", + "['her']\n", + "['with']\n", + "['exceeding', 'tenderness']\n", + "['for']\n", + "['it']\n", + "['was']\n", + "['she']\n", + "['who']\n", + "['had']\n", + "['first', 'sought']\n", + "['and']\n", + "['believed']\n", + "['in']\n", + "['him']\n", + "['when']\n", + "['he']\n", + "['had', 'been']\n", + "['but']\n", + "['a']\n", + "['day']\n", + "['in']\n", + "['their']\n", + "['city']\n", + "['And', 'she']\n", + "['hailed']\n", + "['him']\n", + "['saying', '', 'Prophet']\n", + "['of']\n", + "['God']\n", + "['in']\n", + "['quest']\n", + "['of']\n", + "['the', 'uttermost']\n", + "['long']\n", + "['have']\n", + "['you']\n", + "['searched']\n", + "['the', 'distances']\n", + "['for']\n", + "['your']\n", + "['ship', '', 'And']\n", + "['now']\n", + "['your']\n", + "['ship']\n", + "['has']\n", + "['come']\n", + "['and']\n", + "['you']\n", + "['must', 'needs']\n", + "['go', '', 'Deep']\n", + "['is']\n", + "['your']\n", + "['longing']\n", + "['for']\n", + "['the']\n", + "['land']\n", + "['of', 'your']\n", + "['memories']\n", + "['and']\n", + "['the']\n", + "['dwelling']\n", + "['place', 'of']\n", + "['your']\n", + "['greater']\n", + "['desires']\n", + "['and']\n", + "['our']\n", + "['love', 'would']\n", + "['not']\n", + "['bind']\n", + "['you']\n", + "['nor']\n", + "['our']\n", + "['needs']\n", + "['hold', 'you', '', 'Yet']\n", + "['this']\n", + "['we']\n", + "['ask']\n", + "['ere']\n", + "['you']\n", + "['leave']\n", + "['us']\n", + "['that', 'you']\n", + "['speak']\n", + "['to']\n", + "['us']\n", + "['and']\n", + "['give']\n", + "['us']\n", + "['of']\n", + "['your', 'truth', '', 'And']\n", + "['we']\n", + "['will']\n", + "['give']\n", + "['it']\n", + "['unto']\n", + "['our']\n", + "['children', 'and']\n", + "['they']\n", + "['unto']\n", + "['their']\n", + "['children']\n", + "['and']\n", + "['it', 'shall']\n", + "['not']\n", + "['perish', '', 'In']\n", + "['your']\n", + "['aloneness']\n", + "['you']\n", + "['have']\n", + "['watched']\n", + "['with', 'our']\n", + "['days']\n", + "['and']\n", + "['in']\n", + "['your']\n", + "['wakefulness']\n", + "['you', 'have']\n", + "['listened']\n", + "['to']\n", + "['the']\n", + "['weeping']\n", + "['and']\n", + "['the', 'laughter']\n", + "['of']\n", + "['our']\n", + "['sleep', '', 'Now']\n", + "['therefore']\n", + "['disclose']\n", + "['us']\n", + "['to']\n", + "['ourselves', 'and']\n", + "['tell']\n", + "['us']\n", + "['all']\n", + "['that']\n", + "['has']\n", + "['been']\n", + "['shown', 'you']\n", + "['of']\n", + "['that']\n", + "['which']\n", + "['is']\n", + "['between']\n", + "['birth']\n", + "['and', 'death', '', '', '', 'And']\n", + "['he']\n", + "['answered', '', 'People']\n", + "['of']\n", + "['Orphalese']\n", + "['of']\n", + "['what']\n", + "['can']\n", + "['I', 'speak']\n", + "['save']\n", + "['of']\n", + "['that']\n", + "['which']\n", + "['is']\n", + "['even']\n", + "['now', 'moving']\n", + "['within']\n", + "['your']\n", + "['souls', '']\n", + "['', '', 'Then']\n", + "['said']\n", + "['Almitra']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of', 'Love', '', 'And']\n", + "['he']\n", + "['raised']\n", + "['his']\n", + "['head']\n", + "['and']\n", + "['looked']\n", + "['upon', 'the']\n", + "['people']\n", + "['and']\n", + "['there']\n", + "['fell']\n", + "['a']\n", + "['stillness', 'upon']\n", + "['them']\n", + "['And']\n", + "['with']\n", + "['a']\n", + "['great']\n", + "['voice']\n", + "['he', 'said', '', 'When']\n", + "['love']\n", + "['beckons']\n", + "['to']\n", + "['you']\n", + "['follow']\n", + "['him', '', 'Though']\n", + "['his']\n", + "['ways']\n", + "['are']\n", + "['hard']\n", + "['and']\n", + "['steep', '', 'And']\n", + "['when']\n", + "['his']\n", + "['wings']\n", + "['enfold']\n", + "['you']\n", + "['yield']\n", + "['to', 'him', '', 'Though']\n", + "['the']\n", + "['sword']\n", + "['hidden']\n", + "['among']\n", + "['his', 'pinions']\n", + "['may']\n", + "['wound']\n", + "['you', '', 'And']\n", + "['when']\n", + "['he']\n", + "['speaks']\n", + "['to']\n", + "['you']\n", + "['believe']\n", + "['in', 'him', '', 'Though']\n", + "['his']\n", + "['voice']\n", + "['may']\n", + "['shatter']\n", + "['your']\n", + "['dreams', 'as']\n", + "['the']\n", + "['north']\n", + "['wind']\n", + "['lays']\n", + "['waste']\n", + "['the']\n", + "['garden', '', 'For']\n", + "['even']\n", + "['as']\n", + "['love']\n", + "['crowns']\n", + "['you']\n", + "['so']\n", + "['shall', 'he']\n", + "['crucify']\n", + "['you']\n", + "['Even']\n", + "['as']\n", + "['he']\n", + "['is']\n", + "['for']\n", + "['your', 'growth']\n", + "['so']\n", + "['is']\n", + "['he']\n", + "['for']\n", + "['your']\n", + "['pruning', '', 'Even']\n", + "['as']\n", + "['he']\n", + "['ascends']\n", + "['to']\n", + "['your']\n", + "['height']\n", + "['and', 'caresses']\n", + "['your']\n", + "['tenderest']\n", + "['branches', 'that']\n", + "['quiver']\n", + "['in']\n", + "['the']\n", + "['sun', '', 'So']\n", + "['shall']\n", + "['he']\n", + "['descend']\n", + "['to']\n", + "['your']\n", + "['roots']\n", + "['and', 'shake']\n", + "['them']\n", + "['in']\n", + "['their']\n", + "['clinging']\n", + "['to']\n", + "['the', 'earth', '', '', '', 'Like']\n", + "['sheaves']\n", + "['of']\n", + "['corn']\n", + "['he']\n", + "['gathers']\n", + "['you']\n", + "['unto', 'himself', '', 'He']\n", + "['threshes']\n", + "['you']\n", + "['to']\n", + "['make']\n", + "['you']\n", + "['naked', '', 'He']\n", + "['sifts']\n", + "['you']\n", + "['to']\n", + "['free']\n", + "['you']\n", + "['from']\n", + "['your', 'husks', '', 'He']\n", + "['grinds']\n", + "['you']\n", + "['to']\n", + "['whiteness', '', 'He']\n", + "['kneads']\n", + "['you']\n", + "['until']\n", + "['you']\n", + "['are']\n", + "['pliant', '', 'And']\n", + "['then']\n", + "['he']\n", + "['assigns']\n", + "['you']\n", + "['to']\n", + "['his']\n", + "['sacred', 'fire']\n", + "['that']\n", + "['you']\n", + "['may']\n", + "['become']\n", + "['sacred']\n", + "['bread', 'for']\n", + "['Gods']\n", + "['sacred']\n", + "['feast', '', '', '', 'All']\n", + "['these']\n", + "['things']\n", + "['shall']\n", + "['love']\n", + "['do']\n", + "['unto']\n", + "['you', 'that']\n", + "['you']\n", + "['may']\n", + "['know']\n", + "['the']\n", + "['secrets']\n", + "['of']\n", + "['your', 'heart']\n", + "['and']\n", + "['in']\n", + "['that']\n", + "['knowledge']\n", + "['become']\n", + "['a', 'fragment']\n", + "['of']\n", + "['Lifes']\n", + "['heart', '', 'But']\n", + "['if']\n", + "['in']\n", + "['your']\n", + "['fear']\n", + "['you']\n", + "['would']\n", + "['seek']\n", + "['only', 'loves']\n", + "['peace']\n", + "['and']\n", + "['loves']\n", + "['pleasure', '', 'Then']\n", + "['it']\n", + "['is']\n", + "['better']\n", + "['for']\n", + "['you']\n", + "['that']\n", + "['you', 'cover']\n", + "['your']\n", + "['nakedness']\n", + "['and']\n", + "['pass']\n", + "['out']\n", + "['of', 'loves']\n", + "['threshingfloor', '', 'Into']\n", + "['the']\n", + "['seasonless']\n", + "['world']\n", + "['where']\n", + "['you', 'shall']\n", + "['laugh']\n", + "['but']\n", + "['not']\n", + "['all']\n", + "['of']\n", + "['your', 'laughter']\n", + "['and']\n", + "['weep']\n", + "['but']\n", + "['not']\n", + "['all']\n", + "['of']\n", + "['your', 'tears', '', '', '', 'Love']\n", + "['gives']\n", + "['naught']\n", + "['but']\n", + "['itself']\n", + "['and']\n", + "['takes', 'naught']\n", + "['but']\n", + "['from']\n", + "['itself', '', 'Love']\n", + "['possesses']\n", + "['not']\n", + "['nor']\n", + "['would']\n", + "['it']\n", + "['be', 'possessed', '', 'For']\n", + "['love']\n", + "['is']\n", + "['sufficient']\n", + "['unto']\n", + "['love', '', 'When']\n", + "['you']\n", + "['love']\n", + "['you']\n", + "['should']\n", + "['not']\n", + "['say']\n", + "['God', 'is']\n", + "['in']\n", + "['my']\n", + "['heart']\n", + "['but']\n", + "['rather']\n", + "['I']\n", + "['am']\n", + "['in', 'the']\n", + "['heart']\n", + "['of']\n", + "['God', '', 'And']\n", + "['think']\n", + "['not']\n", + "['you']\n", + "['can']\n", + "['direct']\n", + "['the']\n", + "['course', 'of']\n", + "['love']\n", + "['for']\n", + "['love']\n", + "['if']\n", + "['it']\n", + "['finds']\n", + "['you', 'worthy']\n", + "['directs']\n", + "['your']\n", + "['course', '', 'Love']\n", + "['has']\n", + "['no']\n", + "['other']\n", + "['desire']\n", + "['but']\n", + "['to']\n", + "['fulfil', 'itself', '', 'But']\n", + "['if']\n", + "['you']\n", + "['love']\n", + "['and']\n", + "['must']\n", + "['needs']\n", + "['have', 'desires']\n", + "['let']\n", + "['these']\n", + "['be']\n", + "['your']\n", + "['desires', '', 'To']\n", + "['melt']\n", + "['and']\n", + "['be']\n", + "['like']\n", + "['a']\n", + "['running']\n", + "['brook']\n", + "['that', 'sings']\n", + "['its']\n", + "['melody']\n", + "['to']\n", + "['the']\n", + "['night']\n", + "['To', 'know']\n", + "['the']\n", + "['pain']\n", + "['of']\n", + "['too']\n", + "['much']\n", + "['tenderness', '', 'To']\n", + "['be']\n", + "['wounded']\n", + "['by']\n", + "['your']\n", + "['own']\n", + "['understanding', 'of']\n", + "['love', '', 'And']\n", + "['to']\n", + "['bleed']\n", + "['willingly']\n", + "['and']\n", + "['joyfully', '', 'To']\n", + "['wake']\n", + "['at']\n", + "['dawn']\n", + "['with']\n", + "['a']\n", + "['winged']\n", + "['heart']\n", + "['and', 'give']\n", + "['thanks']\n", + "['for']\n", + "['another']\n", + "['day']\n", + "['of']\n", + "['loving', '', 'To']\n", + "['rest']\n", + "['at']\n", + "['the']\n", + "['noon']\n", + "['hour']\n", + "['and']\n", + "['meditate', 'loves']\n", + "['ecstacy', '', 'To']\n", + "['return']\n", + "['home']\n", + "['at']\n", + "['eventide']\n", + "['with', 'gratitude', '', 'And']\n", + "['then']\n", + "['to']\n", + "['sleep']\n", + "['with']\n", + "['a']\n", + "['prayer']\n", + "['for', 'the']\n", + "['beloved']\n", + "['in']\n", + "['your']\n", + "['heart']\n", + "['and']\n", + "['a']\n", + "['song']\n", + "['of', 'praise']\n", + "['upon']\n", + "['your']\n", + "['lips', '', 'Illustration']\n", + "['', '']\n", + "['', '', 'Then']\n", + "['Almitra']\n", + "['spoke']\n", + "['again']\n", + "['and']\n", + "['said', 'And']\n", + "['what']\n", + "['of']\n", + "['Marriage']\n", + "['master', '', 'And']\n", + "['he']\n", + "['answered']\n", + "['saying', '', 'You']\n", + "['were']\n", + "['born']\n", + "['together']\n", + "['and']\n", + "['together']\n", + "['you', 'shall']\n", + "['be']\n", + "['forevermore', '', 'You']\n", + "['shall']\n", + "['be']\n", + "['together']\n", + "['when']\n", + "['the']\n", + "['white', 'wings']\n", + "['of']\n", + "['death']\n", + "['scatter']\n", + "['your']\n", + "['days', '', 'Aye']\n", + "['you']\n", + "['shall']\n", + "['be']\n", + "['together']\n", + "['even']\n", + "['in']\n", + "['the', 'silent']\n", + "['memory']\n", + "['of']\n", + "['God', '', 'But']\n", + "['let']\n", + "['there']\n", + "['be']\n", + "['spaces']\n", + "['in']\n", + "['your', 'togetherness', '', 'And']\n", + "['let']\n", + "['the']\n", + "['winds']\n", + "['of']\n", + "['the']\n", + "['heavens']\n", + "['dance', 'between']\n", + "['you', '', '', '', 'Love']\n", + "['one']\n", + "['another']\n", + "['but']\n", + "['make']\n", + "['not']\n", + "['a']\n", + "['bond']\n", + "['of', 'love', '', 'Let']\n", + "['it']\n", + "['rather']\n", + "['be']\n", + "['a']\n", + "['moving']\n", + "['sea']\n", + "['between', 'the']\n", + "['shores']\n", + "['of']\n", + "['your']\n", + "['souls', '', 'Fill']\n", + "['each']\n", + "['others']\n", + "['cup']\n", + "['but']\n", + "['drink']\n", + "['not']\n", + "['from', 'one']\n", + "['cup', '', 'Give']\n", + "['one']\n", + "['another']\n", + "['of']\n", + "['your']\n", + "['bread']\n", + "['but']\n", + "['eat', 'not']\n", + "['from']\n", + "['the']\n", + "['same']\n", + "['loaf']\n", + "['Sing']\n", + "['and', 'dance']\n", + "['together']\n", + "['and']\n", + "['be']\n", + "['joyous']\n", + "['but']\n", + "['let', 'each']\n", + "['one']\n", + "['of']\n", + "['you']\n", + "['be']\n", + "['alone', '', 'Even']\n", + "['as']\n", + "['the']\n", + "['strings']\n", + "['of']\n", + "['a']\n", + "['lute']\n", + "['are']\n", + "['alone', 'though']\n", + "['they']\n", + "['quiver']\n", + "['with']\n", + "['the']\n", + "['same']\n", + "['music', '', '', '', 'Give']\n", + "['your']\n", + "['hearts']\n", + "['but']\n", + "['not']\n", + "['into']\n", + "['each', 'others']\n", + "['keeping', '', 'For']\n", + "['only']\n", + "['the']\n", + "['hand']\n", + "['of']\n", + "['Life']\n", + "['can']\n", + "['contain', 'your']\n", + "['hearts', '', 'And']\n", + "['stand']\n", + "['together']\n", + "['yet']\n", + "['not']\n", + "['too']\n", + "['near', 'together', '', 'For']\n", + "['the']\n", + "['pillars']\n", + "['of']\n", + "['the']\n", + "['temple']\n", + "['stand', 'apart', '', 'And']\n", + "['the']\n", + "['oak']\n", + "['tree']\n", + "['and']\n", + "['the']\n", + "['cypress']\n", + "['grow', 'not']\n", + "['in']\n", + "['each']\n", + "['others']\n", + "['shadow', '', 'Illustration']\n", + "['', '']\n", + "['', '', 'And']\n", + "['a']\n", + "['woman']\n", + "['who']\n", + "['held']\n", + "['a']\n", + "['babe', 'against']\n", + "['her']\n", + "['bosom']\n", + "['said']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of', 'Children', '', 'And']\n", + "['he']\n", + "['said', '', 'Your']\n", + "['children']\n", + "['are']\n", + "['not']\n", + "['your']\n", + "['children', '', 'They']\n", + "['are']\n", + "['the']\n", + "['sons']\n", + "['and']\n", + "['daughters']\n", + "['of', 'Lifes']\n", + "['longing']\n", + "['for']\n", + "['itself', '', 'They']\n", + "['come']\n", + "['through']\n", + "['you']\n", + "['but']\n", + "['not']\n", + "['from']\n", + "['you', '', 'And']\n", + "['though']\n", + "['they']\n", + "['are']\n", + "['with']\n", + "['you']\n", + "['yet']\n", + "['they', 'belong']\n", + "['not']\n", + "['to']\n", + "['you', '', '', '', 'You']\n", + "['may']\n", + "['give']\n", + "['them']\n", + "['your']\n", + "['love']\n", + "['but']\n", + "['not']\n", + "['your', 'thoughts', '', 'For']\n", + "['they']\n", + "['have']\n", + "['their']\n", + "['own']\n", + "['thoughts', '', 'You']\n", + "['may']\n", + "['house']\n", + "['their']\n", + "['bodies']\n", + "['but']\n", + "['not']\n", + "['their', 'souls', '', 'For']\n", + "['their']\n", + "['souls']\n", + "['dwell']\n", + "['in']\n", + "['the']\n", + "['house']\n", + "['of', 'tomorrow']\n", + "['which']\n", + "['you']\n", + "['cannot']\n", + "['visit']\n", + "['not', 'even']\n", + "['in']\n", + "['your']\n", + "['dreams', '', 'You']\n", + "['may']\n", + "['strive']\n", + "['to']\n", + "['be']\n", + "['like']\n", + "['them']\n", + "['but']\n", + "['seek', 'not']\n", + "['to']\n", + "['make']\n", + "['them']\n", + "['like']\n", + "['you']\n", + "['For', 'life']\n", + "['goes']\n", + "['not']\n", + "['backward']\n", + "['nor']\n", + "['tarries']\n", + "['with', 'yesterday', '', 'You']\n", + "['are']\n", + "['the']\n", + "['bows']\n", + "['from']\n", + "['which']\n", + "['your', 'children']\n", + "['as']\n", + "['living']\n", + "['arrows']\n", + "['are']\n", + "['sent', 'forth', '', 'The']\n", + "['archer']\n", + "['sees']\n", + "['the']\n", + "['mark']\n", + "['upon']\n", + "['the']\n", + "['path', 'of']\n", + "['the']\n", + "['infinite']\n", + "['and']\n", + "['He']\n", + "['bends']\n", + "['you']\n", + "['with', 'His']\n", + "['might']\n", + "['that']\n", + "['His']\n", + "['arrows']\n", + "['may']\n", + "['go']\n", + "['swift', 'and']\n", + "['far', '', 'Let']\n", + "['your']\n", + "['bending']\n", + "['in']\n", + "['the']\n", + "['Archers']\n", + "['hand']\n", + "['be', 'for']\n", + "['gladness', '', 'For']\n", + "['even']\n", + "['as']\n", + "['he']\n", + "['loves']\n", + "['the']\n", + "['arrow']\n", + "['that', 'flies']\n", + "['so']\n", + "['He']\n", + "['loves']\n", + "['also']\n", + "['the']\n", + "['bow']\n", + "['that']\n", + "['is', 'stable', '']\n", + "['', '', 'Then']\n", + "['said']\n", + "['a']\n", + "['rich']\n", + "['man']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of', 'Giving', '', 'And']\n", + "['he']\n", + "['answered', '', 'You']\n", + "['give']\n", + "['but']\n", + "['little']\n", + "['when']\n", + "['you']\n", + "['give']\n", + "['of', 'your']\n", + "['possessions', '', 'It']\n", + "['is']\n", + "['when']\n", + "['you']\n", + "['give']\n", + "['of']\n", + "['yourself']\n", + "['that']\n", + "['you', 'truly']\n", + "['give', '', 'For']\n", + "['what']\n", + "['are']\n", + "['your']\n", + "['possessions']\n", + "['but']\n", + "['things', 'you']\n", + "['keep']\n", + "['and']\n", + "['guard']\n", + "['for']\n", + "['fear']\n", + "['you']\n", + "['may']\n", + "['need', 'them']\n", + "['tomorrow', '', 'And']\n", + "['tomorrow']\n", + "['what']\n", + "['shall']\n", + "['tomorrow']\n", + "['bring', 'to']\n", + "['the']\n", + "['overprudent']\n", + "['dog']\n", + "['burying']\n", + "['bones', 'in']\n", + "['the']\n", + "['trackless']\n", + "['sand']\n", + "['as']\n", + "['he']\n", + "['follows']\n", + "['the', 'pilgrims']\n", + "['to']\n", + "['the']\n", + "['holy']\n", + "['city', '', 'And']\n", + "['what']\n", + "['is']\n", + "['fear']\n", + "['of']\n", + "['need']\n", + "['but']\n", + "['need', 'itself', '', 'Is']\n", + "['not']\n", + "['dread']\n", + "['of']\n", + "['thirst']\n", + "['when']\n", + "['your']\n", + "['well']\n", + "['is', 'full']\n", + "['the']\n", + "['thirst']\n", + "['that']\n", + "['is']\n", + "['unquenchable', '', 'There']\n", + "['are']\n", + "['those']\n", + "['who']\n", + "['give']\n", + "['little']\n", + "['of']\n", + "['the', 'much']\n", + "['which']\n", + "['they']\n", + "['haveand']\n", + "['they']\n", + "['give', 'it']\n", + "['for']\n", + "['recognition']\n", + "['and']\n", + "['their']\n", + "['hidden', 'desire']\n", + "['makes']\n", + "['their']\n", + "['gifts']\n", + "['unwholesome', '', 'And']\n", + "['there']\n", + "['are']\n", + "['those']\n", + "['who']\n", + "['have']\n", + "['little']\n", + "['and', 'give']\n", + "['it']\n", + "['all', '', 'These']\n", + "['are']\n", + "['the']\n", + "['believers']\n", + "['in']\n", + "['life']\n", + "['and', 'the']\n", + "['bounty']\n", + "['of']\n", + "['life']\n", + "['and']\n", + "['their']\n", + "['coffer']\n", + "['is', 'never']\n", + "['empty', '', 'There']\n", + "['are']\n", + "['those']\n", + "['who']\n", + "['give']\n", + "['with']\n", + "['joy']\n", + "['and', 'that']\n", + "['joy']\n", + "['is']\n", + "['their']\n", + "['reward', '', 'And']\n", + "['there']\n", + "['are']\n", + "['those']\n", + "['who']\n", + "['give']\n", + "['with']\n", + "['pain', 'and']\n", + "['that']\n", + "['pain']\n", + "['is']\n", + "['their']\n", + "['baptism', '', 'And']\n", + "['there']\n", + "['are']\n", + "['those']\n", + "['who']\n", + "['give']\n", + "['and']\n", + "['know', 'not']\n", + "['pain']\n", + "['in']\n", + "['giving']\n", + "['nor']\n", + "['do']\n", + "['they']\n", + "['seek', 'joy']\n", + "['nor']\n", + "['give']\n", + "['with']\n", + "['mindfulness']\n", + "['of', 'virtue', '', 'They']\n", + "['give']\n", + "['as']\n", + "['in']\n", + "['yonder']\n", + "['valley']\n", + "['the']\n", + "['myrtle', 'breathes']\n", + "['its']\n", + "['fragrance']\n", + "['into']\n", + "['space', '', 'Through']\n", + "['the']\n", + "['hands']\n", + "['of']\n", + "['such']\n", + "['as']\n", + "['these']\n", + "['God', 'speaks']\n", + "['and']\n", + "['from']\n", + "['behind']\n", + "['their']\n", + "['eyes']\n", + "['He', 'smiles']\n", + "['upon']\n", + "['the']\n", + "['earth', '', 'Illustration']\n", + "['', '', 'It']\n", + "['is']\n", + "['well']\n", + "['to']\n", + "['give']\n", + "['when']\n", + "['asked']\n", + "['but']\n", + "['it', 'is']\n", + "['better']\n", + "['to']\n", + "['give']\n", + "['unasked']\n", + "['through', 'understanding', '', 'And']\n", + "['to']\n", + "['the']\n", + "['openhanded']\n", + "['the']\n", + "['search']\n", + "['for', 'one']\n", + "['who']\n", + "['shall']\n", + "['receive']\n", + "['is']\n", + "['joy']\n", + "['greater', 'than']\n", + "['giving', '', 'And']\n", + "['is']\n", + "['there']\n", + "['aught']\n", + "['you']\n", + "['would']\n", + "['withhold', '', 'All']\n", + "['you']\n", + "['have']\n", + "['shall']\n", + "['some']\n", + "['day']\n", + "['be']\n", + "['given', '', 'Therefore']\n", + "['give']\n", + "['now']\n", + "['that']\n", + "['the']\n", + "['season', 'of']\n", + "['giving']\n", + "['may']\n", + "['be']\n", + "['yours']\n", + "['and']\n", + "['not']\n", + "['your', 'inheritors', '', 'You']\n", + "['often']\n", + "['say']\n", + "['I']\n", + "['would']\n", + "['give']\n", + "['but']\n", + "['only', 'to']\n", + "['the']\n", + "['deserving', '', 'The']\n", + "['trees']\n", + "['in']\n", + "['your']\n", + "['orchard']\n", + "['say']\n", + "['not']\n", + "['so', 'nor']\n", + "['the']\n", + "['flocks']\n", + "['in']\n", + "['your']\n", + "['pasture', '', 'They']\n", + "['give']\n", + "['that']\n", + "['they']\n", + "['may']\n", + "['live']\n", + "['for']\n", + "['to', 'withhold']\n", + "['is']\n", + "['to']\n", + "['perish', '', 'Surely']\n", + "['he']\n", + "['who']\n", + "['is']\n", + "['worthy']\n", + "['to']\n", + "['receive']\n", + "['his', 'days']\n", + "['and']\n", + "['his']\n", + "['nights']\n", + "['is']\n", + "['worthy']\n", + "['of']\n", + "['all', 'else']\n", + "['from']\n", + "['you', '', 'And']\n", + "['he']\n", + "['who']\n", + "['has']\n", + "['deserved']\n", + "['to']\n", + "['drink']\n", + "['from', 'the']\n", + "['ocean']\n", + "['of']\n", + "['life']\n", + "['deserves']\n", + "['to']\n", + "['fill']\n", + "['his', 'cup']\n", + "['from']\n", + "['your']\n", + "['little']\n", + "['stream', '', 'And']\n", + "['what']\n", + "['desert']\n", + "['greater']\n", + "['shall']\n", + "['there']\n", + "['be', 'than']\n", + "['that']\n", + "['which']\n", + "['lies']\n", + "['in']\n", + "['the']\n", + "['courage', 'and']\n", + "['the']\n", + "['confidence']\n", + "['nay']\n", + "['the']\n", + "['charity']\n", + "['of', 'receiving', '', 'And']\n", + "['who']\n", + "['are']\n", + "['you']\n", + "['that']\n", + "['men']\n", + "['should']\n", + "['rend', 'their']\n", + "['bosom']\n", + "['and']\n", + "['unveil']\n", + "['their']\n", + "['pride', 'that']\n", + "['you']\n", + "['may']\n", + "['see']\n", + "['their']\n", + "['worth']\n", + "['naked']\n", + "['and', 'their']\n", + "['pride']\n", + "['unabashed', '', 'See']\n", + "['first']\n", + "['that']\n", + "['you']\n", + "['yourself']\n", + "['deserve']\n", + "['to', 'be']\n", + "['a']\n", + "['giver']\n", + "['and']\n", + "['an']\n", + "['instrument']\n", + "['of']\n", + "['giving', '', 'For']\n", + "['in']\n", + "['truth']\n", + "['it']\n", + "['is']\n", + "['life']\n", + "['that']\n", + "['gives']\n", + "['unto', 'lifewhile']\n", + "['you']\n", + "['who']\n", + "['deem']\n", + "['yourself']\n", + "['a', 'giver']\n", + "['are']\n", + "['but']\n", + "['a']\n", + "['witness', '', 'And']\n", + "['you']\n", + "['receiversand']\n", + "['you']\n", + "['are', 'all']\n", + "['receiversassume']\n", + "['no']\n", + "['weight']\n", + "['of', 'gratitude']\n", + "['lest']\n", + "['you']\n", + "['lay']\n", + "['a']\n", + "['yoke']\n", + "['upon', 'yourself']\n", + "['and']\n", + "['upon']\n", + "['him']\n", + "['who']\n", + "['gives', '', 'Rather']\n", + "['rise']\n", + "['together']\n", + "['with']\n", + "['the']\n", + "['giver']\n", + "['on', 'his']\n", + "['gifts']\n", + "['as']\n", + "['on']\n", + "['wings', '', 'For']\n", + "['to']\n", + "['be']\n", + "['overmindful']\n", + "['of']\n", + "['your']\n", + "['debt']\n", + "['is', 'ito']\n", + "['doubt']\n", + "['his']\n", + "['generosity']\n", + "['who']\n", + "['has']\n", + "['the', 'freehearted']\n", + "['earth']\n", + "['for']\n", + "['mother']\n", + "['and']\n", + "['God', 'for']\n", + "['father', '', 'Illustration']\n", + "['', '']\n", + "['', '', 'Then']\n", + "['an']\n", + "['old']\n", + "['man']\n", + "['a']\n", + "['keeper']\n", + "['of']\n", + "['an', 'inn']\n", + "['said']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of']\n", + "['Eating']\n", + "['and', 'Drinking', '', 'And']\n", + "['he']\n", + "['said', '', 'Would']\n", + "['that']\n", + "['you']\n", + "['could']\n", + "['live']\n", + "['on']\n", + "['the', 'fragrance']\n", + "['of']\n", + "['the']\n", + "['earth']\n", + "['and']\n", + "['like']\n", + "['an']\n", + "['air', 'plant']\n", + "['be']\n", + "['sustained']\n", + "['by']\n", + "['the']\n", + "['light', '', 'But']\n", + "['since']\n", + "['you']\n", + "['must']\n", + "['kill']\n", + "['to']\n", + "['eat']\n", + "['and']\n", + "['rob', 'the']\n", + "['newly']\n", + "['born']\n", + "['of']\n", + "['its']\n", + "['mothers']\n", + "['milk']\n", + "['to', 'quench']\n", + "['your']\n", + "['thirst']\n", + "['let']\n", + "['it']\n", + "['then']\n", + "['be']\n", + "['an', 'act']\n", + "['of']\n", + "['worship', '', 'And']\n", + "['let']\n", + "['your']\n", + "['board']\n", + "['stand']\n", + "['an']\n", + "['altar']\n", + "['on', 'which']\n", + "['the']\n", + "['pure']\n", + "['and']\n", + "['the']\n", + "['innocent']\n", + "['of', 'forest']\n", + "['and']\n", + "['plain']\n", + "['are']\n", + "['sacrificed']\n", + "['for']\n", + "['that', 'which']\n", + "['is']\n", + "['purer']\n", + "['and']\n", + "['still']\n", + "['more']\n", + "['innocent', 'in']\n", + "['man', '', '', '', 'When']\n", + "['you']\n", + "['kill']\n", + "['a']\n", + "['beast']\n", + "['say']\n", + "['to']\n", + "['him']\n", + "['in']\n", + "['your', 'heart', '', 'By']\n", + "['the']\n", + "['same']\n", + "['power']\n", + "['that']\n", + "['slays']\n", + "['you']\n", + "['I']\n", + "['too', 'am']\n", + "['slain']\n", + "['and']\n", + "['I']\n", + "['too']\n", + "['shall']\n", + "['be']\n", + "['consumed', 'For']\n", + "['the']\n", + "['law']\n", + "['that']\n", + "['delivered']\n", + "['you']\n", + "['into', 'my']\n", + "['hand']\n", + "['shall']\n", + "['deliver']\n", + "['me']\n", + "['into']\n", + "['a']\n", + "['mightier', 'hand', '', 'Your']\n", + "['blood']\n", + "['and']\n", + "['my']\n", + "['blood']\n", + "['is']\n", + "['naught']\n", + "['but', 'the']\n", + "['sap']\n", + "['that']\n", + "['feeds']\n", + "['the']\n", + "['tree']\n", + "['of']\n", + "['heaven', '', '', '', 'And']\n", + "['when']\n", + "['you']\n", + "['crush']\n", + "['an']\n", + "['apple']\n", + "['with']\n", + "['your', 'teeth']\n", + "['say']\n", + "['to']\n", + "['it']\n", + "['in']\n", + "['your']\n", + "['heart', '', 'Your']\n", + "['seeds']\n", + "['shall']\n", + "['live']\n", + "['in']\n", + "['my']\n", + "['body', '', 'And']\n", + "['the']\n", + "['buds']\n", + "['of']\n", + "['your']\n", + "['tomorrow']\n", + "['shall', 'blossom']\n", + "['in']\n", + "['my']\n", + "['heart', '', 'And']\n", + "['your']\n", + "['fragrance']\n", + "['shall']\n", + "['be']\n", + "['my']\n", + "['breath', 'And']\n", + "['together']\n", + "['we']\n", + "['shall']\n", + "['rejoice']\n", + "['through', 'all']\n", + "['the']\n", + "['seasons', '', '', '', 'And']\n", + "['in']\n", + "['the']\n", + "['autumn']\n", + "['when']\n", + "['you']\n", + "['gather', 'the']\n", + "['grapes']\n", + "['of']\n", + "['your']\n", + "['vineyards']\n", + "['for']\n", + "['the', 'winepress']\n", + "['say']\n", + "['in']\n", + "['your']\n", + "['heart', '', 'I']\n", + "['too']\n", + "['am']\n", + "['a']\n", + "['vineyard']\n", + "['and']\n", + "['my']\n", + "['fruit']\n", + "['shall', 'be']\n", + "['gathered']\n", + "['for']\n", + "['the']\n", + "['winepress', '', 'And']\n", + "['like']\n", + "['new']\n", + "['wine']\n", + "['I']\n", + "['shall']\n", + "['be']\n", + "['kept']\n", + "['in', 'eternal']\n", + "['vessels', '', 'And']\n", + "['in']\n", + "['winter']\n", + "['when']\n", + "['you']\n", + "['draw']\n", + "['the']\n", + "['wine', 'let']\n", + "['there']\n", + "['be']\n", + "['in']\n", + "['your']\n", + "['heart']\n", + "['a']\n", + "['song', 'for']\n", + "['each']\n", + "['cup', '', 'And']\n", + "['let']\n", + "['there']\n", + "['be']\n", + "['in']\n", + "['the']\n", + "['song']\n", + "['a', 'remembrance']\n", + "['for']\n", + "['the']\n", + "['autumn']\n", + "['days']\n", + "['and']\n", + "['for', 'the']\n", + "['vineyard']\n", + "['and']\n", + "['for']\n", + "['the']\n", + "['winepress', '', '', '', '']\n", + "['Then']\n", + "['a']\n", + "['ploughman']\n", + "['said']\n", + "['Speak', 'to']\n", + "['us']\n", + "['of']\n", + "['Work', '', 'And']\n", + "['he']\n", + "['answered']\n", + "['saying', '', 'You']\n", + "['work']\n", + "['that']\n", + "['you']\n", + "['may']\n", + "['keep']\n", + "['pace']\n", + "['with']\n", + "['the', 'earth']\n", + "['and']\n", + "['the']\n", + "['soul']\n", + "['of']\n", + "['the']\n", + "['earth', '', 'For']\n", + "['to']\n", + "['be']\n", + "['idle']\n", + "['is']\n", + "['to']\n", + "['become']\n", + "['a']\n", + "['stranger', 'unto']\n", + "['the']\n", + "['seasons']\n", + "['and']\n", + "['to']\n", + "['step']\n", + "['out']\n", + "['of', 'lifes']\n", + "['procession']\n", + "['that']\n", + "['marches']\n", + "['in', 'majesty']\n", + "['and']\n", + "['proud']\n", + "['submission']\n", + "['towards']\n", + "['the', 'infinite', '', 'When']\n", + "['you']\n", + "['work']\n", + "['you']\n", + "['are']\n", + "['a']\n", + "['flute']\n", + "['through', 'whose']\n", + "['heart']\n", + "['the']\n", + "['whispering']\n", + "['of']\n", + "['the']\n", + "['hours', 'turns']\n", + "['to']\n", + "['music', '', 'Which']\n", + "['of']\n", + "['you']\n", + "['would']\n", + "['be']\n", + "['a']\n", + "['reed']\n", + "['dumb']\n", + "['and', 'silent']\n", + "['when']\n", + "['all']\n", + "['else']\n", + "['sings']\n", + "['together']\n", + "['in', 'unison', '', 'Always']\n", + "['you']\n", + "['have']\n", + "['been']\n", + "['told']\n", + "['that']\n", + "['work']\n", + "['is']\n", + "['a', 'curse']\n", + "['and']\n", + "['labour']\n", + "['a']\n", + "['misfortune', '', 'But']\n", + "['I']\n", + "['say']\n", + "['to']\n", + "['you']\n", + "['that']\n", + "['when']\n", + "['you']\n", + "['work']\n", + "['you', 'fulfil']\n", + "['a']\n", + "['part']\n", + "['of']\n", + "['earths']\n", + "['furthest']\n", + "['dream', 'assigned']\n", + "['to']\n", + "['you']\n", + "['when']\n", + "['that']\n", + "['dream']\n", + "['was', 'born', '', 'And']\n", + "['in']\n", + "['keeping']\n", + "['yourself']\n", + "['with']\n", + "['labour']\n", + "['you', 'are']\n", + "['in']\n", + "['truth']\n", + "['loving']\n", + "['life', '', 'And']\n", + "['to']\n", + "['love']\n", + "['life']\n", + "['through']\n", + "['labour']\n", + "['is']\n", + "['to']\n", + "['be', 'intimate']\n", + "['with']\n", + "['lifes']\n", + "['inmost']\n", + "['secret', '', '', '', 'But']\n", + "['if']\n", + "['you']\n", + "['in']\n", + "['your']\n", + "['pain']\n", + "['call']\n", + "['birth']\n", + "['an', 'affliction']\n", + "['and']\n", + "['the']\n", + "['support']\n", + "['of']\n", + "['the']\n", + "['flesh', 'a']\n", + "['curse']\n", + "['written']\n", + "['upon']\n", + "['your']\n", + "['brow']\n", + "['then']\n", + "['I', 'answer']\n", + "['that']\n", + "['naught']\n", + "['but']\n", + "['the']\n", + "['sweat']\n", + "['of', 'your']\n", + "['brow']\n", + "['shall']\n", + "['wash']\n", + "['away']\n", + "['that']\n", + "['which']\n", + "['is', 'written', '', 'You']\n", + "['have']\n", + "['been']\n", + "['told']\n", + "['also']\n", + "['that']\n", + "['life']\n", + "['is', 'darkness']\n", + "['and']\n", + "['in']\n", + "['your']\n", + "['weariness']\n", + "['you']\n", + "['echo', 'what']\n", + "['was']\n", + "['said']\n", + "['by']\n", + "['the']\n", + "['weary', '', 'And']\n", + "['I']\n", + "['say']\n", + "['that']\n", + "['life']\n", + "['is']\n", + "['indeed']\n", + "['darkness', 'save']\n", + "['when']\n", + "['there']\n", + "['is']\n", + "['urge', '', 'And']\n", + "['all']\n", + "['urge']\n", + "['is']\n", + "['blind']\n", + "['save']\n", + "['when']\n", + "['there']\n", + "['is', 'knowledge', '', 'And']\n", + "['all']\n", + "['knowledge']\n", + "['is']\n", + "['vain']\n", + "['save']\n", + "['when', 'there']\n", + "['is']\n", + "['work', '', 'And']\n", + "['all']\n", + "['work']\n", + "['is']\n", + "['empty']\n", + "['save']\n", + "['when']\n", + "['there']\n", + "['is', 'love', '', 'And']\n", + "['when']\n", + "['you']\n", + "['work']\n", + "['with']\n", + "['love']\n", + "['you']\n", + "['bind', 'yourself']\n", + "['to']\n", + "['yourself']\n", + "['and']\n", + "['to']\n", + "['one', 'another']\n", + "['and']\n", + "['to']\n", + "['God', '', '', '', 'And']\n", + "['what']\n", + "['is']\n", + "['it']\n", + "['to']\n", + "['work']\n", + "['with']\n", + "['love', '', 'It']\n", + "['is']\n", + "['to']\n", + "['weave']\n", + "['the']\n", + "['cloth']\n", + "['with']\n", + "['threads', 'drawn']\n", + "['from']\n", + "['your']\n", + "['heart']\n", + "['even']\n", + "['as']\n", + "['if']\n", + "['your', 'beloved']\n", + "['were']\n", + "['to']\n", + "['wear']\n", + "['that']\n", + "['cloth', '', 'It']\n", + "['is']\n", + "['to']\n", + "['build']\n", + "['a']\n", + "['house']\n", + "['with']\n", + "['affection', 'even']\n", + "['as']\n", + "['if']\n", + "['your']\n", + "['beloved']\n", + "['were']\n", + "['to']\n", + "['dwell']\n", + "['in', 'that']\n", + "['house', '', 'It']\n", + "['is']\n", + "['to']\n", + "['sow']\n", + "['seeds']\n", + "['with']\n", + "['tenderness']\n", + "['and', 'reap']\n", + "['the']\n", + "['harvest']\n", + "['with']\n", + "['joy']\n", + "['even']\n", + "['as']\n", + "['if', 'your']\n", + "['beloved']\n", + "['were']\n", + "['to']\n", + "['eat']\n", + "['the']\n", + "['fruit', '', 'It']\n", + "['is']\n", + "['to']\n", + "['charge']\n", + "['all']\n", + "['things']\n", + "['you']\n", + "['fashion', 'with']\n", + "['a']\n", + "['breath']\n", + "['of']\n", + "['your']\n", + "['own']\n", + "['spirit', '', 'And']\n", + "['to']\n", + "['know']\n", + "['that']\n", + "['all']\n", + "['the']\n", + "['blessed']\n", + "['dead', 'are']\n", + "['standing']\n", + "['about']\n", + "['you']\n", + "['and']\n", + "['watching', '', 'Often']\n", + "['have']\n", + "['I']\n", + "['heard']\n", + "['you']\n", + "['say']\n", + "['as']\n", + "['if', 'speaking']\n", + "['in']\n", + "['sleep']\n", + "['He']\n", + "['who']\n", + "['works']\n", + "['in', 'marble']\n", + "['and']\n", + "['finds']\n", + "['the']\n", + "['shape']\n", + "['of']\n", + "['his']\n", + "['own', 'soul']\n", + "['in']\n", + "['the']\n", + "['stone']\n", + "['is']\n", + "['nobler']\n", + "['than']\n", + "['he']\n", + "['who', 'ploughs']\n", + "['the']\n", + "['soil']\n", + "['And']\n", + "['he']\n", + "['who']\n", + "['seizes', 'the']\n", + "['rainbow']\n", + "['to']\n", + "['lay']\n", + "['it']\n", + "['on']\n", + "['a']\n", + "['cloth']\n", + "['in']\n", + "['the', 'likeness']\n", + "['of']\n", + "['man']\n", + "['is']\n", + "['more']\n", + "['than']\n", + "['he']\n", + "['who', 'makes']\n", + "['the']\n", + "['sandals']\n", + "['for']\n", + "['our']\n", + "['feet', '', 'But']\n", + "['I']\n", + "['say']\n", + "['not']\n", + "['in']\n", + "['sleep']\n", + "['but']\n", + "['in']\n", + "['the', 'overwakefulness']\n", + "['of']\n", + "['noontide']\n", + "['that']\n", + "['the', 'wind']\n", + "['speaks']\n", + "['not']\n", + "['more']\n", + "['sweetly']\n", + "['to']\n", + "['the', 'giant']\n", + "['oaks']\n", + "['than']\n", + "['to']\n", + "['the']\n", + "['least']\n", + "['of']\n", + "['all']\n", + "['the', 'blades']\n", + "['of']\n", + "['grass', '', 'And']\n", + "['he']\n", + "['alone']\n", + "['is']\n", + "['great']\n", + "['who']\n", + "['turns']\n", + "['the', 'voice']\n", + "['of']\n", + "['the']\n", + "['wind']\n", + "['into']\n", + "['a']\n", + "['song']\n", + "['made', 'sweeter']\n", + "['by']\n", + "['his']\n", + "['own']\n", + "['loving', '', '', '', 'Work']\n", + "['is']\n", + "['love']\n", + "['made']\n", + "['visible', '', 'And']\n", + "['if']\n", + "['you']\n", + "['cannot']\n", + "['work']\n", + "['with']\n", + "['love']\n", + "['but', 'only']\n", + "['with']\n", + "['distaste']\n", + "['it']\n", + "['is']\n", + "['better']\n", + "['that', 'you']\n", + "['should']\n", + "['leave']\n", + "['your']\n", + "['work']\n", + "['and']\n", + "['sit']\n", + "['at', 'the']\n", + "['gate']\n", + "['of']\n", + "['the']\n", + "['temple']\n", + "['and']\n", + "['take']\n", + "['alms']\n", + "['of', 'those']\n", + "['who']\n", + "['work']\n", + "['with']\n", + "['joy', '', 'For']\n", + "['if']\n", + "['you']\n", + "['bake']\n", + "['bread']\n", + "['with']\n", + "['indifference', 'you']\n", + "['bake']\n", + "['a']\n", + "['bitter']\n", + "['bread']\n", + "['that']\n", + "['feeds']\n", + "['but', 'half']\n", + "['mans']\n", + "['hunger', '', 'And']\n", + "['if']\n", + "['you']\n", + "['grudge']\n", + "['the']\n", + "['crushing']\n", + "['of']\n", + "['the', 'grapes']\n", + "['your']\n", + "['grudge']\n", + "['distils']\n", + "['a']\n", + "['poison']\n", + "['in', 'the']\n", + "['wine']\n", + "['And']\n", + "['if']\n", + "['you']\n", + "['sing']\n", + "['though']\n", + "['as', 'angels']\n", + "['and']\n", + "['love']\n", + "['not']\n", + "['the']\n", + "['singing']\n", + "['you', 'muffle']\n", + "['mans']\n", + "['ears']\n", + "['to']\n", + "['the']\n", + "['voices']\n", + "['of']\n", + "['the', 'day']\n", + "['and']\n", + "['the']\n", + "['voices']\n", + "['of']\n", + "['the']\n", + "['night', '']\n", + "['', '', 'Then']\n", + "['a']\n", + "['woman']\n", + "['said']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of', 'Joy']\n", + "['and']\n", + "['Sorrow', '', 'And']\n", + "['he']\n", + "['answered', '', 'Your']\n", + "['joy']\n", + "['is']\n", + "['your']\n", + "['sorrow']\n", + "['unmasked', '', 'And']\n", + "['the']\n", + "['selfsame']\n", + "['well']\n", + "['from']\n", + "['which']\n", + "['your', 'laughter']\n", + "['rises']\n", + "['was']\n", + "['oftentimes']\n", + "['filled', 'with']\n", + "['your']\n", + "['tears', '', 'And']\n", + "['how']\n", + "['else']\n", + "['can']\n", + "['it']\n", + "['be', '', 'The']\n", + "['deeper']\n", + "['that']\n", + "['sorrow']\n", + "['carves']\n", + "['into']\n", + "['your', 'being']\n", + "['the']\n", + "['more']\n", + "['joy']\n", + "['you']\n", + "['can']\n", + "['contain', '', 'Is']\n", + "['not']\n", + "['the']\n", + "['cup']\n", + "['that']\n", + "['holds']\n", + "['your']\n", + "['wine']\n", + "['the', 'very']\n", + "['cup']\n", + "['that']\n", + "['was']\n", + "['burned']\n", + "['in']\n", + "['the']\n", + "['potters', 'oven', '', 'And']\n", + "['is']\n", + "['not']\n", + "['the']\n", + "['lute']\n", + "['that']\n", + "['soothes']\n", + "['your', 'spirit']\n", + "['the']\n", + "['very']\n", + "['wood']\n", + "['that']\n", + "['was']\n", + "['hollowed', 'with']\n", + "['knives', '', 'When']\n", + "['you']\n", + "['are']\n", + "['joyous']\n", + "['look']\n", + "['deep']\n", + "['into']\n", + "['your', 'heart']\n", + "['and']\n", + "['you']\n", + "['shall']\n", + "['find']\n", + "['it']\n", + "['is']\n", + "['only', 'that']\n", + "['which']\n", + "['has']\n", + "['given']\n", + "['you']\n", + "['sorrow']\n", + "['that']\n", + "['is', 'giving']\n", + "['you']\n", + "['joy', '', 'When']\n", + "['you']\n", + "['are']\n", + "['sorrowful']\n", + "['look']\n", + "['again']\n", + "['in', 'your']\n", + "['heart']\n", + "['and']\n", + "['you']\n", + "['shall']\n", + "['see']\n", + "['that', 'in']\n", + "['truth']\n", + "['you']\n", + "['are']\n", + "['weeping']\n", + "['for']\n", + "['that']\n", + "['which', 'has']\n", + "['been']\n", + "['your']\n", + "['delight', '', '', '', 'Some']\n", + "['of']\n", + "['you']\n", + "['say']\n", + "['Joy']\n", + "['is']\n", + "['greater']\n", + "['than', 'sorrow']\n", + "['and']\n", + "['others']\n", + "['say']\n", + "['Nay']\n", + "['sorrow']\n", + "['is', 'the']\n", + "['greater', '', 'But']\n", + "['I']\n", + "['say']\n", + "['unto']\n", + "['you']\n", + "['they']\n", + "['are', 'inseparable', '', 'Together']\n", + "['they']\n", + "['come']\n", + "['and']\n", + "['when']\n", + "['one']\n", + "['sits', 'alone']\n", + "['with']\n", + "['you']\n", + "['at']\n", + "['your']\n", + "['board']\n", + "['remember', 'that']\n", + "['the']\n", + "['other']\n", + "['is']\n", + "['asleep']\n", + "['upon']\n", + "['your']\n", + "['bed', '', 'Verily']\n", + "['you']\n", + "['are']\n", + "['suspended']\n", + "['like']\n", + "['scales', 'between']\n", + "['your']\n", + "['sorrow']\n", + "['and']\n", + "['your']\n", + "['joy', '', 'Only']\n", + "['when']\n", + "['you']\n", + "['are']\n", + "['empty']\n", + "['are']\n", + "['you']\n", + "['at', 'standstill']\n", + "['and']\n", + "['balanced', '', 'When']\n", + "['the']\n", + "['treasurekeeper']\n", + "['lifts']\n", + "['you']\n", + "['to', 'weigh']\n", + "['his']\n", + "['gold']\n", + "['and']\n", + "['his']\n", + "['silver']\n", + "['needs', 'must']\n", + "['your']\n", + "['joy']\n", + "['or']\n", + "['your']\n", + "['sorrow']\n", + "['rise']\n", + "['or', 'fall', '']\n", + "['', '', 'Then']\n", + "['a']\n", + "['mason']\n", + "['came']\n", + "['forth']\n", + "['and']\n", + "['said', 'Speak']\n", + "['to']\n", + "['us']\n", + "['of']\n", + "['Houses', '', 'And']\n", + "['he']\n", + "['answered']\n", + "['and']\n", + "['said', '', 'Build']\n", + "['of']\n", + "['your']\n", + "['imaginings']\n", + "['a']\n", + "['bower']\n", + "['in']\n", + "['the', 'wilderness']\n", + "['ere']\n", + "['you']\n", + "['build']\n", + "['a']\n", + "['house']\n", + "['within', 'the']\n", + "['city']\n", + "['walls', '', 'For']\n", + "['even']\n", + "['as']\n", + "['you']\n", + "['have']\n", + "['homecomings']\n", + "['in', 'your']\n", + "['twilight']\n", + "['so']\n", + "['has']\n", + "['the']\n", + "['wanderer']\n", + "['in', 'you']\n", + "['the']\n", + "['ever']\n", + "['distant']\n", + "['and']\n", + "['alone', '', 'Your']\n", + "['house']\n", + "['is']\n", + "['your']\n", + "['larger']\n", + "['body', '', 'It']\n", + "['grows']\n", + "['in']\n", + "['the']\n", + "['sun']\n", + "['and']\n", + "['sleeps']\n", + "['in']\n", + "['the', 'stillness']\n", + "['of']\n", + "['the']\n", + "['night']\n", + "['and']\n", + "['it']\n", + "['is']\n", + "['not', 'dreamless']\n", + "['Does']\n", + "['not']\n", + "['your']\n", + "['house']\n", + "['dream', 'and']\n", + "['dreaming']\n", + "['leave']\n", + "['the']\n", + "['city']\n", + "['for']\n", + "['grove', 'or']\n", + "['hilltop', '', 'Would']\n", + "['that']\n", + "['I']\n", + "['could']\n", + "['gather']\n", + "['your']\n", + "['houses', 'into']\n", + "['my']\n", + "['hand']\n", + "['and']\n", + "['like']\n", + "['a']\n", + "['sower']\n", + "['scatter', 'them']\n", + "['in']\n", + "['forest']\n", + "['and']\n", + "['meadow', '', 'Would']\n", + "['the']\n", + "['valleys']\n", + "['were']\n", + "['your']\n", + "['streets']\n", + "['and', 'the']\n", + "['green']\n", + "['paths']\n", + "['your']\n", + "['alleys']\n", + "['that']\n", + "['you', 'might']\n", + "['seek']\n", + "['one']\n", + "['another']\n", + "['through', 'vineyards']\n", + "['and']\n", + "['come']\n", + "['with']\n", + "['the']\n", + "['fragrance', 'of']\n", + "['the']\n", + "['earth']\n", + "['in']\n", + "['your']\n", + "['garments', '', 'But']\n", + "['these']\n", + "['things']\n", + "['are']\n", + "['not']\n", + "['yet']\n", + "['to']\n", + "['be', '', 'In']\n", + "['their']\n", + "['fear']\n", + "['your']\n", + "['forefathers']\n", + "['gathered', 'you']\n", + "['too']\n", + "['near']\n", + "['together']\n", + "['And']\n", + "['that']\n", + "['fear', 'shall']\n", + "['endure']\n", + "['a']\n", + "['little']\n", + "['longer']\n", + "['A']\n", + "['little', 'longer']\n", + "['shall']\n", + "['your']\n", + "['city']\n", + "['walls']\n", + "['separate', 'your']\n", + "['hearths']\n", + "['from']\n", + "['your']\n", + "['fields', '', '', '', 'And']\n", + "['tell']\n", + "['me']\n", + "['people']\n", + "['of']\n", + "['Orphalese']\n", + "['what', 'have']\n", + "['you']\n", + "['in']\n", + "['these']\n", + "['houses']\n", + "['And']\n", + "['what']\n", + "['is']\n", + "['it', 'you']\n", + "['guard']\n", + "['with']\n", + "['fastened']\n", + "['doors', '', 'Have']\n", + "['you']\n", + "['peace']\n", + "['the']\n", + "['quiet']\n", + "['urge']\n", + "['that', 'reveals']\n", + "['your']\n", + "['power', '', 'Have']\n", + "['you']\n", + "['remembrances']\n", + "['the']\n", + "['glimmering', 'arches']\n", + "['that']\n", + "['span']\n", + "['the']\n", + "['summits']\n", + "['of']\n", + "['the', 'mind', '', 'Have']\n", + "['you']\n", + "['beauty']\n", + "['that']\n", + "['leads']\n", + "['the']\n", + "['heart', 'from']\n", + "['things']\n", + "['fashioned']\n", + "['of']\n", + "['wood']\n", + "['and']\n", + "['stone', 'to']\n", + "['the']\n", + "['holy']\n", + "['mountain', '', 'Tell']\n", + "['me']\n", + "['have']\n", + "['you']\n", + "['these']\n", + "['in']\n", + "['your']\n", + "['houses', '', 'Or']\n", + "['have']\n", + "['you']\n", + "['only']\n", + "['comfort']\n", + "['and']\n", + "['the']\n", + "['lust', 'for']\n", + "['comfort']\n", + "['that']\n", + "['stealthy']\n", + "['thing']\n", + "['that', 'enters']\n", + "['the']\n", + "['house']\n", + "['a']\n", + "['guest']\n", + "['and']\n", + "['then', 'becomes']\n", + "['a']\n", + "['host']\n", + "['and']\n", + "['then']\n", + "['a']\n", + "['master', '', '', '', 'Ay']\n", + "['and']\n", + "['it']\n", + "['becomes']\n", + "['a']\n", + "['tamer']\n", + "['and']\n", + "['with', 'hook']\n", + "['and']\n", + "['scourge']\n", + "['makes']\n", + "['puppets']\n", + "['of']\n", + "['your', 'larger']\n", + "['desires', '', 'Though']\n", + "['its']\n", + "['hands']\n", + "['are']\n", + "['silken']\n", + "['its']\n", + "['heart', 'is']\n", + "['of']\n", + "['iron', '', 'It']\n", + "['lulls']\n", + "['you']\n", + "['to']\n", + "['sleep']\n", + "['only']\n", + "['to']\n", + "['stand']\n", + "['by', 'your']\n", + "['bed']\n", + "['and']\n", + "['jeer']\n", + "['at']\n", + "['the']\n", + "['dignity']\n", + "['of']\n", + "['the', 'flesh', '', 'It']\n", + "['makes']\n", + "['mock']\n", + "['of']\n", + "['your']\n", + "['sound']\n", + "['senses']\n", + "['and', 'lays']\n", + "['them']\n", + "['in']\n", + "['thistledown']\n", + "['like']\n", + "['fragile', 'vessels', '', 'Verily']\n", + "['the']\n", + "['lust']\n", + "['for']\n", + "['comfort']\n", + "['murders', 'the']\n", + "['passion']\n", + "['of']\n", + "['the']\n", + "['soul']\n", + "['and']\n", + "['then']\n", + "['walks', 'grinning']\n", + "['in']\n", + "['the']\n", + "['funeral', '', 'But']\n", + "['you']\n", + "['children']\n", + "['of']\n", + "['space']\n", + "['you']\n", + "['restless', 'in']\n", + "['rest']\n", + "['you']\n", + "['shall']\n", + "['not']\n", + "['be']\n", + "['trapped']\n", + "['nor', 'tamed', '', 'Your']\n", + "['house']\n", + "['shall']\n", + "['be']\n", + "['not']\n", + "['an']\n", + "['anchor']\n", + "['but']\n", + "['a', 'mast', '', 'It']\n", + "['shall']\n", + "['not']\n", + "['be']\n", + "['a']\n", + "['glistening']\n", + "['film']\n", + "['that', 'covers']\n", + "['a']\n", + "['wound']\n", + "['but']\n", + "['an']\n", + "['eyelid']\n", + "['that', 'guards']\n", + "['the']\n", + "['eye', '', 'You']\n", + "['shall']\n", + "['not']\n", + "['fold']\n", + "['your']\n", + "['wings']\n", + "['that']\n", + "['you', 'may']\n", + "['pass']\n", + "['through']\n", + "['doors']\n", + "['nor']\n", + "['bend']\n", + "['your', 'heads']\n", + "['that']\n", + "['they']\n", + "['strike']\n", + "['not']\n", + "['against']\n", + "['a', 'ceiling']\n", + "['nor']\n", + "['fear']\n", + "['to']\n", + "['breathe']\n", + "['lest']\n", + "['walls', 'should']\n", + "['crack']\n", + "['and']\n", + "['fall']\n", + "['down', '', 'You']\n", + "['shall']\n", + "['not']\n", + "['dwell']\n", + "['in']\n", + "['tombs']\n", + "['made']\n", + "['by']\n", + "['the', 'dead']\n", + "['for']\n", + "['the']\n", + "['living', '', 'And']\n", + "['though']\n", + "['of']\n", + "['magnificence']\n", + "['and', 'splendour']\n", + "['your']\n", + "['house']\n", + "['shall']\n", + "['not']\n", + "['hold', 'your']\n", + "['secret']\n", + "['nor']\n", + "['shelter']\n", + "['your']\n", + "['longing', '', 'For']\n", + "['that']\n", + "['which']\n", + "['is']\n", + "['boundless']\n", + "['in']\n", + "['you', 'abides']\n", + "['in']\n", + "['the']\n", + "['mansion']\n", + "['of']\n", + "['the']\n", + "['sky']\n", + "['whose', 'door']\n", + "['is']\n", + "['the']\n", + "['morning']\n", + "['mist']\n", + "['and']\n", + "['whose', 'windows']\n", + "['are']\n", + "['the']\n", + "['songs']\n", + "['and']\n", + "['the']\n", + "['silences', 'of']\n", + "['night', '']\n", + "['', '', 'And']\n", + "['the']\n", + "['weaver']\n", + "['said']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of', 'Clothes', '', 'And']\n", + "['he']\n", + "['answered', '', 'Your']\n", + "['clothes']\n", + "['conceal']\n", + "['much']\n", + "['of']\n", + "['your', 'beauty']\n", + "['yet']\n", + "['they']\n", + "['hide']\n", + "['not']\n", + "['the', 'unbeautiful', '', 'And']\n", + "['though']\n", + "['you']\n", + "['seek']\n", + "['in']\n", + "['garments']\n", + "['the', 'freedom']\n", + "['of']\n", + "['privacy']\n", + "['you']\n", + "['may']\n", + "['find']\n", + "['in']\n", + "['them', 'a']\n", + "['harness']\n", + "['and']\n", + "['a']\n", + "['chain', '', 'Would']\n", + "['that']\n", + "['you']\n", + "['could']\n", + "['meet']\n", + "['the']\n", + "['sun']\n", + "['and', 'the']\n", + "['wind']\n", + "['with']\n", + "['more']\n", + "['of']\n", + "['your']\n", + "['skin']\n", + "['and']\n", + "['less', 'of']\n", + "['your']\n", + "['raiment', '', 'For']\n", + "['the']\n", + "['breath']\n", + "['of']\n", + "['life']\n", + "['is']\n", + "['in']\n", + "['the', 'sunlight']\n", + "['and']\n", + "['the']\n", + "['hand']\n", + "['of']\n", + "['life']\n", + "['is']\n", + "['in']\n", + "['the', 'wind', '', 'Some']\n", + "['of']\n", + "['you']\n", + "['say']\n", + "['It']\n", + "['is']\n", + "['the']\n", + "['north']\n", + "['wind', 'who']\n", + "['has']\n", + "['woven']\n", + "['the']\n", + "['clothes']\n", + "['we']\n", + "['wear', '', 'And']\n", + "['I']\n", + "['say']\n", + "['Ay']\n", + "['it']\n", + "['was']\n", + "['the']\n", + "['north']\n", + "['wind', '', 'But']\n", + "['shame']\n", + "['was']\n", + "['his']\n", + "['loom']\n", + "['and']\n", + "['the', 'softening']\n", + "['of']\n", + "['the']\n", + "['sinews']\n", + "['was']\n", + "['his']\n", + "['thread', '', 'And']\n", + "['when']\n", + "['his']\n", + "['work']\n", + "['was']\n", + "['done']\n", + "['he']\n", + "['laughed']\n", + "['in', 'the']\n", + "['forest']\n", + "['Forget']\n", + "['not']\n", + "['that']\n", + "['modesty', 'is']\n", + "['for']\n", + "['a']\n", + "['shield']\n", + "['against']\n", + "['the']\n", + "['eye']\n", + "['of']\n", + "['the', 'unclean', '', 'And']\n", + "['when']\n", + "['the']\n", + "['unclean']\n", + "['shall']\n", + "['be']\n", + "['no']\n", + "['more', 'what']\n", + "['were']\n", + "['modesty']\n", + "['but']\n", + "['a']\n", + "['fetter']\n", + "['and']\n", + "['a', 'fouling']\n", + "['of']\n", + "['the']\n", + "['mind', '', 'And']\n", + "['forget']\n", + "['not']\n", + "['that']\n", + "['the']\n", + "['earth']\n", + "['delights', 'to']\n", + "['feel']\n", + "['your']\n", + "['bare']\n", + "['feet']\n", + "['and']\n", + "['the']\n", + "['winds', 'long']\n", + "['to']\n", + "['play']\n", + "['with']\n", + "['your']\n", + "['hair', '']\n", + "['', '', 'And']\n", + "['a']\n", + "['merchant']\n", + "['said']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of', 'Buying']\n", + "['and']\n", + "['Selling', '', 'And']\n", + "['he']\n", + "['answered']\n", + "['and']\n", + "['said', '', 'To']\n", + "['you']\n", + "['the']\n", + "['earth']\n", + "['yields']\n", + "['her']\n", + "['fruit']\n", + "['and', 'you']\n", + "['shall']\n", + "['not']\n", + "['want']\n", + "['if']\n", + "['you']\n", + "['but']\n", + "['know']\n", + "['how', 'to']\n", + "['fill']\n", + "['your']\n", + "['hands', '', 'It']\n", + "['is']\n", + "['in']\n", + "['exchanging']\n", + "['the']\n", + "['gifts']\n", + "['of']\n", + "['the', 'earth']\n", + "['that']\n", + "['you']\n", + "['shall']\n", + "['find']\n", + "['abundance']\n", + "['and', 'be']\n", + "['satisfied', '', 'Yet']\n", + "['unless']\n", + "['the']\n", + "['exchange']\n", + "['be']\n", + "['in']\n", + "['love']\n", + "['and', 'kindly']\n", + "['justice']\n", + "['it']\n", + "['will']\n", + "['but']\n", + "['lead']\n", + "['some']\n", + "['to', 'greed']\n", + "['and']\n", + "['others']\n", + "['to']\n", + "['hunger', '', 'When']\n", + "['in']\n", + "['the']\n", + "['market']\n", + "['place']\n", + "['you']\n", + "['toilers']\n", + "['of', 'the']\n", + "['sea']\n", + "['and']\n", + "['fields']\n", + "['and']\n", + "['vineyards']\n", + "['meet', 'the']\n", + "['weavers']\n", + "['and']\n", + "['the']\n", + "['potters']\n", + "['and']\n", + "['the', 'gatherers']\n", + "['of']\n", + "['spices', '', 'Invoke']\n", + "['then']\n", + "['the']\n", + "['master']\n", + "['spirit']\n", + "['of']\n", + "['the', 'earth']\n", + "['to']\n", + "['come']\n", + "['into']\n", + "['your']\n", + "['midst']\n", + "['and', 'sanctify']\n", + "['the']\n", + "['scales']\n", + "['and']\n", + "['the']\n", + "['reckoning', 'that']\n", + "['weighs']\n", + "['value']\n", + "['against']\n", + "['value']\n", + "['And', 'suffer']\n", + "['not']\n", + "['the']\n", + "['barrenhanded']\n", + "['to']\n", + "['take', 'part']\n", + "['in']\n", + "['your']\n", + "['transactions']\n", + "['who']\n", + "['would', 'sell']\n", + "['their']\n", + "['words']\n", + "['for']\n", + "['your']\n", + "['labour', '', 'To']\n", + "['such']\n", + "['men']\n", + "['you']\n", + "['should']\n", + "['say', '', 'Come']\n", + "['with']\n", + "['us']\n", + "['to']\n", + "['the']\n", + "['field']\n", + "['or']\n", + "['go']\n", + "['with', 'our']\n", + "['brothers']\n", + "['to']\n", + "['the']\n", + "['sea']\n", + "['and']\n", + "['cast']\n", + "['your', 'net', '', 'For']\n", + "['the']\n", + "['land']\n", + "['and']\n", + "['the']\n", + "['sea']\n", + "['shall']\n", + "['be', 'bountiful']\n", + "['to']\n", + "['you']\n", + "['even']\n", + "['as']\n", + "['to']\n", + "['us', '', '', '', 'And']\n", + "['if']\n", + "['there']\n", + "['come']\n", + "['the']\n", + "['singers']\n", + "['and']\n", + "['the', 'dancers']\n", + "['and']\n", + "['the']\n", + "['flute']\n", + "['playersbuy']\n", + "['of', 'their']\n", + "['gifts']\n", + "['also', '', 'For']\n", + "['they']\n", + "['too']\n", + "['are']\n", + "['gatherers']\n", + "['of']\n", + "['fruit']\n", + "['and', 'frankincense']\n", + "['and']\n", + "['that']\n", + "['which']\n", + "['they']\n", + "['bring', 'though']\n", + "['fashioned']\n", + "['of']\n", + "['dreams']\n", + "['is']\n", + "['raiment', 'and']\n", + "['food']\n", + "['for']\n", + "['your']\n", + "['soul', '', 'And']\n", + "['before']\n", + "['you']\n", + "['leave']\n", + "['the']\n", + "['market']\n", + "['place', 'see']\n", + "['that']\n", + "['no']\n", + "['one']\n", + "['has']\n", + "['gone']\n", + "['his']\n", + "['way']\n", + "['with', 'empty']\n", + "['hands', '', 'For']\n", + "['the']\n", + "['master']\n", + "['spirit']\n", + "['of']\n", + "['the']\n", + "['earth']\n", + "['shall', 'not']\n", + "['sleep']\n", + "['peacefully']\n", + "['upon']\n", + "['the']\n", + "['wind', 'till']\n", + "['the']\n", + "['needs']\n", + "['of']\n", + "['the']\n", + "['least']\n", + "['of']\n", + "['you']\n", + "['are', 'satisfied', '']\n", + "['', '', 'Then']\n", + "['one']\n", + "['of']\n", + "['the']\n", + "['judges']\n", + "['of']\n", + "['the']\n", + "['city', 'stood']\n", + "['forth']\n", + "['and']\n", + "['said']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of', 'Crime']\n", + "['and']\n", + "['Punishment', '', 'And']\n", + "['he']\n", + "['answered']\n", + "['saying', '', 'It']\n", + "['is']\n", + "['when']\n", + "['your']\n", + "['spirit']\n", + "['goes']\n", + "['wandering', 'upon']\n", + "['the']\n", + "['wind', '', 'That']\n", + "['you']\n", + "['alone']\n", + "['and']\n", + "['unguarded']\n", + "['commit', 'a']\n", + "['wrong']\n", + "['unto']\n", + "['others']\n", + "['and']\n", + "['therefore']\n", + "['unto', 'yourself', '', 'And']\n", + "['for']\n", + "['that']\n", + "['wrong']\n", + "['committed']\n", + "['must']\n", + "['you', 'knock']\n", + "['and']\n", + "['wait']\n", + "['a']\n", + "['while']\n", + "['unheeded']\n", + "['at']\n", + "['the', 'gate']\n", + "['of']\n", + "['the']\n", + "['blessed', '', 'Like']\n", + "['the']\n", + "['ocean']\n", + "['is']\n", + "['your']\n", + "['godself', '', 'It']\n", + "['remains']\n", + "['for']\n", + "['ever']\n", + "['undefiled', '', 'And']\n", + "['like']\n", + "['the']\n", + "['ether']\n", + "['it']\n", + "['lifts']\n", + "['but']\n", + "['the', 'winged', '', 'Even']\n", + "['like']\n", + "['the']\n", + "['sun']\n", + "['is']\n", + "['your']\n", + "['godself', '', 'It']\n", + "['knows']\n", + "['not']\n", + "['the']\n", + "['ways']\n", + "['of']\n", + "['the']\n", + "['mole']\n", + "['nor', 'seeks']\n", + "['it']\n", + "['the']\n", + "['holes']\n", + "['of']\n", + "['the']\n", + "['serpent', 'But']\n", + "['your']\n", + "['godself']\n", + "['dwells']\n", + "['not']\n", + "['alone', 'in']\n", + "['your']\n", + "['being', '', 'Much']\n", + "['in']\n", + "['you']\n", + "['is']\n", + "['still']\n", + "['man']\n", + "['and']\n", + "['much']\n", + "['in', 'you']\n", + "['is']\n", + "['not']\n", + "['yet']\n", + "['man', '', 'But']\n", + "['a']\n", + "['shapeless']\n", + "['pigmy']\n", + "['that']\n", + "['walks']\n", + "['asleep', 'in']\n", + "['the']\n", + "['mist']\n", + "['searching']\n", + "['for']\n", + "['its']\n", + "['own', 'awakening', '', 'And']\n", + "['of']\n", + "['the']\n", + "['man']\n", + "['in']\n", + "['you']\n", + "['would']\n", + "['I']\n", + "['now']\n", + "['speak', '', 'For']\n", + "['it']\n", + "['is']\n", + "['he']\n", + "['and']\n", + "['not']\n", + "['your']\n", + "['godself']\n", + "['nor', 'the']\n", + "['pigmy']\n", + "['in']\n", + "['the']\n", + "['mist']\n", + "['that']\n", + "['knows']\n", + "['crime', 'and']\n", + "['the']\n", + "['punishment']\n", + "['of']\n", + "['crime', '', '', '', 'Oftentimes']\n", + "['have']\n", + "['I']\n", + "['heard']\n", + "['you']\n", + "['speak']\n", + "['of']\n", + "['one', 'who']\n", + "['commits']\n", + "['a']\n", + "['wrong']\n", + "['as']\n", + "['though']\n", + "['he']\n", + "['were', 'not']\n", + "['one']\n", + "['of']\n", + "['you']\n", + "['but']\n", + "['a']\n", + "['stranger']\n", + "['unto']\n", + "['you', 'and']\n", + "['an']\n", + "['intruder']\n", + "['upon']\n", + "['your']\n", + "['world', '', 'But']\n", + "['I']\n", + "['say']\n", + "['that']\n", + "['even']\n", + "['as']\n", + "['the']\n", + "['holy']\n", + "['and']\n", + "['the', 'righteous']\n", + "['cannot']\n", + "['rise']\n", + "['beyond']\n", + "['the']\n", + "['highest', 'which']\n", + "['is']\n", + "['in']\n", + "['each']\n", + "['one']\n", + "['of']\n", + "['you', '', 'So']\n", + "['the']\n", + "['wicked']\n", + "['and']\n", + "['the']\n", + "['weak']\n", + "['cannot']\n", + "['fall', 'lower']\n", + "['than']\n", + "['the']\n", + "['lowest']\n", + "['which']\n", + "['is']\n", + "['in']\n", + "['you', 'also', '', 'And']\n", + "['as']\n", + "['a']\n", + "['single']\n", + "['leaf']\n", + "['turns']\n", + "['not']\n", + "['yellow', 'but']\n", + "['with']\n", + "['the']\n", + "['silent']\n", + "['knowledge']\n", + "['of']\n", + "['the', 'whole']\n", + "['tree']\n", + "['So']\n", + "['the']\n", + "['wrongdoer']\n", + "['cannot', 'do']\n", + "['wrong']\n", + "['without']\n", + "['the']\n", + "['hidden']\n", + "['will']\n", + "['of']\n", + "['you', 'all', '', 'Like']\n", + "['a']\n", + "['procession']\n", + "['you']\n", + "['walk']\n", + "['together', 'towards']\n", + "['your']\n", + "['godself', '', 'Illustration']\n", + "['', '', 'You']\n", + "['are']\n", + "['the']\n", + "['way']\n", + "['and']\n", + "['the']\n", + "['wayfarers', '', 'And']\n", + "['when']\n", + "['one']\n", + "['of']\n", + "['you']\n", + "['falls']\n", + "['down']\n", + "['he']\n", + "['falls', 'for']\n", + "['those']\n", + "['behind']\n", + "['him']\n", + "['a']\n", + "['caution']\n", + "['against', 'the']\n", + "['stumbling']\n", + "['stone', '', 'Ay']\n", + "['and']\n", + "['he']\n", + "['falls']\n", + "['for']\n", + "['those']\n", + "['ahead']\n", + "['of']\n", + "['him', 'who']\n", + "['though']\n", + "['faster']\n", + "['and']\n", + "['surer']\n", + "['of']\n", + "['foot']\n", + "['yet', 'removed']\n", + "['not']\n", + "['the']\n", + "['stumbling']\n", + "['stone', '', 'And']\n", + "['this']\n", + "['also']\n", + "['though']\n", + "['the']\n", + "['word']\n", + "['lie']\n", + "['heavy', 'upon']\n", + "['your']\n", + "['hearts', '', 'The']\n", + "['murdered']\n", + "['is']\n", + "['not']\n", + "['unaccountable']\n", + "['for', 'his']\n", + "['own']\n", + "['murder', '', 'And']\n", + "['the']\n", + "['robbed']\n", + "['is']\n", + "['not']\n", + "['blameless']\n", + "['in']\n", + "['being', 'robbed', '', 'The']\n", + "['righteous']\n", + "['is']\n", + "['not']\n", + "['innocent']\n", + "['of']\n", + "['the', 'deeds']\n", + "['of']\n", + "['the']\n", + "['wicked', '', 'And']\n", + "['the']\n", + "['whitehanded']\n", + "['is']\n", + "['not']\n", + "['clean']\n", + "['in']\n", + "['the', 'doings']\n", + "['of']\n", + "['the']\n", + "['felon', '', 'Yea']\n", + "['the']\n", + "['guilty']\n", + "['is']\n", + "['oftentimes']\n", + "['the']\n", + "['victim', 'of']\n", + "['the']\n", + "['injured', '', 'And']\n", + "['still']\n", + "['more']\n", + "['often']\n", + "['the']\n", + "['condemned']\n", + "['is', 'the']\n", + "['burden']\n", + "['bearer']\n", + "['for']\n", + "['the']\n", + "['guiltless', 'and']\n", + "['unblamed', '', 'You']\n", + "['cannot']\n", + "['separate']\n", + "['the']\n", + "['just']\n", + "['from']\n", + "['the', 'unjust']\n", + "['and']\n", + "['the']\n", + "['good']\n", + "['from']\n", + "['the']\n", + "['wicked', '', 'For']\n", + "['they']\n", + "['stand']\n", + "['together']\n", + "['before']\n", + "['the']\n", + "['face', 'of']\n", + "['the']\n", + "['sun']\n", + "['even']\n", + "['as']\n", + "['the']\n", + "['black']\n", + "['thread']\n", + "['and', 'the']\n", + "['white']\n", + "['are']\n", + "['woven']\n", + "['together', '', 'And']\n", + "['when']\n", + "['the']\n", + "['black']\n", + "['thread']\n", + "['breaks']\n", + "['the', 'weaver']\n", + "['shall']\n", + "['look']\n", + "['into']\n", + "['the']\n", + "['whole']\n", + "['cloth', 'and']\n", + "['he']\n", + "['shall']\n", + "['examine']\n", + "['the']\n", + "['loom']\n", + "['also', '', '', '', 'If']\n", + "['any']\n", + "['of']\n", + "['you']\n", + "['would']\n", + "['bring']\n", + "['to']\n", + "['judgment', 'the']\n", + "['unfaithful']\n", + "['wife', '', 'Let']\n", + "['him']\n", + "['also']\n", + "['weigh']\n", + "['the']\n", + "['heart']\n", + "['of']\n", + "['her', 'husband']\n", + "['in']\n", + "['scales']\n", + "['and']\n", + "['measure']\n", + "['his']\n", + "['soul', 'with']\n", + "['measurements', '', 'And']\n", + "['let']\n", + "['him']\n", + "['who']\n", + "['would']\n", + "['lash']\n", + "['the']\n", + "['offender', 'look']\n", + "['unto']\n", + "['the']\n", + "['spirit']\n", + "['of']\n", + "['the']\n", + "['offended', '', 'And']\n", + "['if']\n", + "['any']\n", + "['of']\n", + "['you']\n", + "['would']\n", + "['punish']\n", + "['in']\n", + "['the', 'name']\n", + "['of']\n", + "['righteousness']\n", + "['and']\n", + "['lay']\n", + "['the']\n", + "['ax', 'unto']\n", + "['the']\n", + "['evil']\n", + "['tree']\n", + "['let']\n", + "['him']\n", + "['see']\n", + "['to']\n", + "['its', 'roots', '', 'And']\n", + "['verily']\n", + "['he']\n", + "['will']\n", + "['find']\n", + "['the']\n", + "['roots']\n", + "['of']\n", + "['the', 'good']\n", + "['and']\n", + "['the']\n", + "['bad']\n", + "['the']\n", + "['fruitful']\n", + "['and']\n", + "['the', 'fruitless']\n", + "['all']\n", + "['entwined']\n", + "['together']\n", + "['in', 'the']\n", + "['silent']\n", + "['heart']\n", + "['of']\n", + "['the']\n", + "['earth', '', 'And']\n", + "['you']\n", + "['judges']\n", + "['who']\n", + "['would']\n", + "['be']\n", + "['just', '', 'What']\n", + "['judgment']\n", + "['pronounce']\n", + "['you']\n", + "['upon']\n", + "['him', 'who']\n", + "['though']\n", + "['honest']\n", + "['in']\n", + "['the']\n", + "['flesh']\n", + "['yet']\n", + "['is']\n", + "['a', 'thief']\n", + "['in']\n", + "['spirit', '', 'What']\n", + "['penalty']\n", + "['lay']\n", + "['you']\n", + "['upon']\n", + "['him']\n", + "['who']\n", + "['slays', 'in']\n", + "['the']\n", + "['flesh']\n", + "['yet']\n", + "['is']\n", + "['himself']\n", + "['slain']\n", + "['in']\n", + "['the', 'spirit', '', 'And']\n", + "['how']\n", + "['prosecute']\n", + "['you']\n", + "['him']\n", + "['who']\n", + "['in']\n", + "['action', 'is']\n", + "['a']\n", + "['deceiver']\n", + "['and']\n", + "['an']\n", + "['oppressor', '', 'Yet']\n", + "['who']\n", + "['also']\n", + "['is']\n", + "['aggrieved']\n", + "['and']\n", + "['outraged', '', '', '', 'And']\n", + "['how']\n", + "['shall']\n", + "['you']\n", + "['punish']\n", + "['those']\n", + "['whose', 'remorse']\n", + "['is']\n", + "['already']\n", + "['greater']\n", + "['than']\n", + "['their', 'misdeeds', '', 'Is']\n", + "['not']\n", + "['remorse']\n", + "['the']\n", + "['justice']\n", + "['which']\n", + "['is', 'administered']\n", + "['by']\n", + "['that']\n", + "['very']\n", + "['law']\n", + "['which']\n", + "['you', 'would']\n", + "['fain']\n", + "['serve', '', 'Yet']\n", + "['you']\n", + "['cannot']\n", + "['lay']\n", + "['remorse']\n", + "['upon']\n", + "['the', 'innocent']\n", + "['nor']\n", + "['lift']\n", + "['it']\n", + "['from']\n", + "['the']\n", + "['heart']\n", + "['of', 'the']\n", + "['guilty', '', 'Unbidden']\n", + "['shall']\n", + "['it']\n", + "['call']\n", + "['in']\n", + "['the']\n", + "['night', 'that']\n", + "['men']\n", + "['may']\n", + "['wake']\n", + "['and']\n", + "['gaze']\n", + "['upon', 'themselves']\n", + "['And']\n", + "['you']\n", + "['who']\n", + "['would', 'understand']\n", + "['justice']\n", + "['how']\n", + "['shall']\n", + "['you']\n", + "['unless', 'you']\n", + "['look']\n", + "['upon']\n", + "['all']\n", + "['deeds']\n", + "['in']\n", + "['the']\n", + "['fullness', 'of']\n", + "['light', '', 'Only']\n", + "['then']\n", + "['shall']\n", + "['you']\n", + "['know']\n", + "['that']\n", + "['the']\n", + "['erect', 'and']\n", + "['the']\n", + "['fallen']\n", + "['are']\n", + "['but']\n", + "['one']\n", + "['man']\n", + "['standing', 'in']\n", + "['twilight']\n", + "['between']\n", + "['the']\n", + "['night']\n", + "['of']\n", + "['his', 'pigmyself']\n", + "['and']\n", + "['the']\n", + "['day']\n", + "['of']\n", + "['his']\n", + "['godself', 'And']\n", + "['that']\n", + "['the']\n", + "['cornerstone']\n", + "['of']\n", + "['the']\n", + "['temple', 'is']\n", + "['not']\n", + "['higher']\n", + "['than']\n", + "['the']\n", + "['lowest']\n", + "['stone']\n", + "['in', 'its']\n", + "['foundation', '']\n", + "['', '', 'Then']\n", + "['a']\n", + "['lawyer']\n", + "['said']\n", + "['But']\n", + "['what']\n", + "['of']\n", + "['our', 'Laws']\n", + "['master', '', 'And']\n", + "['he']\n", + "['answered', '', 'You']\n", + "['delight']\n", + "['in']\n", + "['laying']\n", + "['down']\n", + "['laws', '', 'Yet']\n", + "['you']\n", + "['delight']\n", + "['more']\n", + "['in']\n", + "['breaking']\n", + "['them', '', 'Like']\n", + "['children']\n", + "['playing']\n", + "['by']\n", + "['the']\n", + "['ocean']\n", + "['who', 'build']\n", + "['sandtowers']\n", + "['with']\n", + "['constancy']\n", + "['and', 'then']\n", + "['destroy']\n", + "['them']\n", + "['with']\n", + "['laughter', '', 'But']\n", + "['while']\n", + "['you']\n", + "['build']\n", + "['your']\n", + "['sandtowers']\n", + "['the', 'ocean']\n", + "['brings']\n", + "['more']\n", + "['sand']\n", + "['to']\n", + "['the']\n", + "['shore', '', 'And']\n", + "['when']\n", + "['you']\n", + "['destroy']\n", + "['them']\n", + "['the']\n", + "['ocean', 'laughs']\n", + "['with']\n", + "['you', '', 'Verily']\n", + "['the']\n", + "['ocean']\n", + "['laughs']\n", + "['always']\n", + "['with']\n", + "['the', 'innocent', '', 'But']\n", + "['what']\n", + "['of']\n", + "['those']\n", + "['to']\n", + "['whom']\n", + "['life']\n", + "['is']\n", + "['not', 'an']\n", + "['ocean']\n", + "['and']\n", + "['manmade']\n", + "['laws']\n", + "['are']\n", + "['not', 'sandtowers', '', 'But']\n", + "['to']\n", + "['whom']\n", + "['life']\n", + "['is']\n", + "['a']\n", + "['rock']\n", + "['and']\n", + "['the']\n", + "['law', 'a']\n", + "['chisel']\n", + "['with']\n", + "['which']\n", + "['they']\n", + "['would']\n", + "['carve']\n", + "['it', 'in']\n", + "['their']\n", + "['own']\n", + "['likeness']\n", + "['What']\n", + "['of']\n", + "['the', 'cripple']\n", + "['who']\n", + "['hates']\n", + "['dancers', '', 'What']\n", + "['of']\n", + "['the']\n", + "['ox']\n", + "['who']\n", + "['loves']\n", + "['his']\n", + "['yoke']\n", + "['and', 'deems']\n", + "['the']\n", + "['elk']\n", + "['and']\n", + "['deer']\n", + "['of']\n", + "['the']\n", + "['forest', 'stray']\n", + "['and']\n", + "['vagrant']\n", + "['things', '', 'What']\n", + "['of']\n", + "['the']\n", + "['old']\n", + "['serpent']\n", + "['who']\n", + "['cannot']\n", + "['shed', 'his']\n", + "['skin']\n", + "['and']\n", + "['calls']\n", + "['all']\n", + "['others']\n", + "['naked']\n", + "['and', 'shameless', '', 'And']\n", + "['of']\n", + "['him']\n", + "['who']\n", + "['comes']\n", + "['early']\n", + "['to']\n", + "['the', 'weddingfeast']\n", + "['and']\n", + "['when']\n", + "['overfed']\n", + "['and', 'tired']\n", + "['goes']\n", + "['his']\n", + "['way']\n", + "['saying']\n", + "['that']\n", + "['all', 'feasts']\n", + "['are']\n", + "['violation']\n", + "['and']\n", + "['all']\n", + "['feasters', 'lawbreakers', '', '', '', 'What']\n", + "['shall']\n", + "['I']\n", + "['say']\n", + "['of']\n", + "['these']\n", + "['save']\n", + "['that', 'they']\n", + "['too']\n", + "['stand']\n", + "['in']\n", + "['the']\n", + "['sunlight']\n", + "['but']\n", + "['with', 'their']\n", + "['backs']\n", + "['to']\n", + "['the']\n", + "['sun', '', 'They']\n", + "['see']\n", + "['only']\n", + "['their']\n", + "['shadows']\n", + "['and']\n", + "['their', 'shadows']\n", + "['are']\n", + "['their']\n", + "['laws', '', 'And']\n", + "['what']\n", + "['is']\n", + "['the']\n", + "['sun']\n", + "['to']\n", + "['them']\n", + "['but']\n", + "['a']\n", + "['caster', 'of']\n", + "['shadows', '', 'And']\n", + "['what']\n", + "['is']\n", + "['it']\n", + "['to']\n", + "['acknowledge']\n", + "['the', 'laws']\n", + "['but']\n", + "['to']\n", + "['stoop']\n", + "['down']\n", + "['and']\n", + "['trace']\n", + "['their', 'shadows']\n", + "['upon']\n", + "['the']\n", + "['earth', '', 'But']\n", + "['you']\n", + "['who']\n", + "['walk']\n", + "['facing']\n", + "['the']\n", + "['sun']\n", + "['what', 'images']\n", + "['drawn']\n", + "['on']\n", + "['the']\n", + "['earth']\n", + "['can']\n", + "['hold', 'you', '', 'You']\n", + "['who']\n", + "['travel']\n", + "['with']\n", + "['the']\n", + "['wind']\n", + "['what', 'weathervane']\n", + "['shall']\n", + "['direct']\n", + "['your']\n", + "['course', '', 'What']\n", + "['mans']\n", + "['law']\n", + "['shall']\n", + "['bind']\n", + "['you']\n", + "['if']\n", + "['you', 'break']\n", + "['your']\n", + "['yoke']\n", + "['but']\n", + "['upon']\n", + "['no']\n", + "['mans']\n", + "['prison', 'door', '', 'What']\n", + "['laws']\n", + "['shall']\n", + "['you']\n", + "['fear']\n", + "['if']\n", + "['you']\n", + "['dance', 'but']\n", + "['stumble']\n", + "['against']\n", + "['no']\n", + "['mans']\n", + "['iron', 'chains', '', 'And']\n", + "['who']\n", + "['is']\n", + "['he']\n", + "['that']\n", + "['shall']\n", + "['bring']\n", + "['you']\n", + "['to', 'judgment']\n", + "['if']\n", + "['you']\n", + "['tear']\n", + "['off']\n", + "['your']\n", + "['garment', 'yet']\n", + "['leave']\n", + "['it']\n", + "['in']\n", + "['no']\n", + "['mans']\n", + "['path', '', '', '', 'People']\n", + "['of']\n", + "['Orphalese']\n", + "['you']\n", + "['can']\n", + "['muffle']\n", + "['the', 'drum']\n", + "['and']\n", + "['you']\n", + "['can']\n", + "['loosen']\n", + "['the']\n", + "['strings', 'of']\n", + "['the']\n", + "['lyre']\n", + "['but']\n", + "['who']\n", + "['shall']\n", + "['command']\n", + "['the', 'skylark']\n", + "['not']\n", + "['to']\n", + "['sing', '']\n", + "['', '', 'And']\n", + "['an']\n", + "['orator']\n", + "['said']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of', 'Freedom', '', 'And']\n", + "['he']\n", + "['answered', '', 'At']\n", + "['the']\n", + "['city']\n", + "['gate']\n", + "['and']\n", + "['by']\n", + "['your']\n", + "['fireside', 'I']\n", + "['have']\n", + "['seen']\n", + "['you']\n", + "['prostrate']\n", + "['yourself']\n", + "['and', 'worship']\n", + "['your']\n", + "['own']\n", + "['freedom', '', 'Even']\n", + "['as']\n", + "['slaves']\n", + "['humble']\n", + "['themselves']\n", + "['before', 'a']\n", + "['tyrant']\n", + "['and']\n", + "['praise']\n", + "['him']\n", + "['though']\n", + "['he']\n", + "['slays', 'them', '', 'Ay']\n", + "['in']\n", + "['the']\n", + "['grove']\n", + "['of']\n", + "['the']\n", + "['temple']\n", + "['and']\n", + "['in', 'the']\n", + "['shadow']\n", + "['of']\n", + "['the']\n", + "['citadel']\n", + "['I']\n", + "['have']\n", + "['seen', 'the']\n", + "['freest']\n", + "['among']\n", + "['you']\n", + "['wear']\n", + "['their']\n", + "['freedom', 'as']\n", + "['a']\n", + "['yoke']\n", + "['and']\n", + "['a']\n", + "['handcuff', '', 'And']\n", + "['my']\n", + "['heart']\n", + "['bled']\n", + "['within']\n", + "['me']\n", + "['for']\n", + "['you', 'can']\n", + "['only']\n", + "['be']\n", + "['free']\n", + "['when']\n", + "['even']\n", + "['the']\n", + "['desire', 'of']\n", + "['seeking']\n", + "['freedom']\n", + "['becomes']\n", + "['a']\n", + "['harness', 'to']\n", + "['you']\n", + "['and']\n", + "['when']\n", + "['you']\n", + "['cease']\n", + "['to']\n", + "['speak']\n", + "['of', 'freedom']\n", + "['as']\n", + "['a']\n", + "['goal']\n", + "['and']\n", + "['a']\n", + "['fulfilment', '', 'You']\n", + "['shall']\n", + "['be']\n", + "['free']\n", + "['indeed']\n", + "['when']\n", + "['your', 'days']\n", + "['are']\n", + "['not']\n", + "['without']\n", + "['a']\n", + "['care']\n", + "['nor']\n", + "['your', 'nights']\n", + "['without']\n", + "['a']\n", + "['want']\n", + "['and']\n", + "['a']\n", + "['grief', '', 'But']\n", + "['rather']\n", + "['when']\n", + "['these']\n", + "['things']\n", + "['girdle']\n", + "['your', 'life']\n", + "['and']\n", + "['yet']\n", + "['you']\n", + "['rise']\n", + "['above']\n", + "['them']\n", + "['naked', 'and']\n", + "['unbound', '', '', '', 'And']\n", + "['how']\n", + "['shall']\n", + "['you']\n", + "['rise']\n", + "['beyond']\n", + "['your']\n", + "['days', 'and']\n", + "['nights']\n", + "['unless']\n", + "['you']\n", + "['break']\n", + "['the', 'chains']\n", + "['which']\n", + "['you']\n", + "['at']\n", + "['the']\n", + "['dawn']\n", + "['of']\n", + "['your', 'understanding']\n", + "['have']\n", + "['fastened']\n", + "['around']\n", + "['your', 'noon']\n", + "['hour', '', 'In']\n", + "['truth']\n", + "['that']\n", + "['which']\n", + "['you']\n", + "['call']\n", + "['freedom']\n", + "['is', 'the']\n", + "['strongest']\n", + "['of']\n", + "['these']\n", + "['chains']\n", + "['though', 'its']\n", + "['links']\n", + "['glitter']\n", + "['in']\n", + "['the']\n", + "['sun']\n", + "['and']\n", + "['dazzle', 'your']\n", + "['eyes', '', 'And']\n", + "['what']\n", + "['is']\n", + "['it']\n", + "['but']\n", + "['fragments']\n", + "['of']\n", + "['your', 'own']\n", + "['self']\n", + "['you']\n", + "['would']\n", + "['discard']\n", + "['that']\n", + "['you']\n", + "['may', 'become']\n", + "['free', '', 'If']\n", + "['it']\n", + "['is']\n", + "['an']\n", + "['unjust']\n", + "['law']\n", + "['you']\n", + "['would', 'abolish']\n", + "['that']\n", + "['law']\n", + "['was']\n", + "['written']\n", + "['with']\n", + "['your', 'own']\n", + "['hand']\n", + "['upon']\n", + "['your']\n", + "['own']\n", + "['forehead', '', 'You']\n", + "['cannot']\n", + "['erase']\n", + "['it']\n", + "['by']\n", + "['burning']\n", + "['your']\n", + "['law', 'books']\n", + "['nor']\n", + "['by']\n", + "['washing']\n", + "['the']\n", + "['foreheads']\n", + "['of', 'your']\n", + "['judges']\n", + "['though']\n", + "['you']\n", + "['pour']\n", + "['the']\n", + "['sea', 'upon']\n", + "['them', '', 'And']\n", + "['if']\n", + "['it']\n", + "['is']\n", + "['a']\n", + "['despot']\n", + "['you']\n", + "['would', 'dethrone']\n", + "['see']\n", + "['first']\n", + "['that']\n", + "['his']\n", + "['throne', 'erected']\n", + "['within']\n", + "['you']\n", + "['is']\n", + "['destroyed', '', 'For']\n", + "['how']\n", + "['can']\n", + "['a']\n", + "['tyrant']\n", + "['rule']\n", + "['the']\n", + "['free']\n", + "['and', 'the']\n", + "['proud']\n", + "['but']\n", + "['for']\n", + "['a']\n", + "['tyranny']\n", + "['in']\n", + "['their', 'own']\n", + "['freedom']\n", + "['and']\n", + "['a']\n", + "['shame']\n", + "['in']\n", + "['their']\n", + "['own', 'pride', '', 'And']\n", + "['if']\n", + "['it']\n", + "['is']\n", + "['a']\n", + "['care']\n", + "['you']\n", + "['would']\n", + "['cast']\n", + "['off', 'that']\n", + "['cart']\n", + "['has']\n", + "['been']\n", + "['chosen']\n", + "['by']\n", + "['you']\n", + "['rather', 'than']\n", + "['imposed']\n", + "['upon']\n", + "['you', '', 'And']\n", + "['if']\n", + "['it']\n", + "['is']\n", + "['a']\n", + "['fear']\n", + "['you']\n", + "['would']\n", + "['dispel', 'the']\n", + "['seat']\n", + "['of']\n", + "['that']\n", + "['fear']\n", + "['is']\n", + "['in']\n", + "['your']\n", + "['heart', 'and']\n", + "['not']\n", + "['in']\n", + "['the']\n", + "['hand']\n", + "['of']\n", + "['the']\n", + "['feared', '', '', '', 'Verily']\n", + "['all']\n", + "['things']\n", + "['move']\n", + "['within']\n", + "['your']\n", + "['being', 'in']\n", + "['constant']\n", + "['half']\n", + "['embrace']\n", + "['the']\n", + "['desired', 'and']\n", + "['the']\n", + "['dreaded']\n", + "['the']\n", + "['repugnant']\n", + "['and']\n", + "['the', 'cherished']\n", + "['the']\n", + "['pursued']\n", + "['and']\n", + "['that']\n", + "['which', 'you']\n", + "['would']\n", + "['escape', '', 'These']\n", + "['things']\n", + "['move']\n", + "['within']\n", + "['you']\n", + "['as']\n", + "['lights', 'and']\n", + "['shadows']\n", + "['in']\n", + "['pairs']\n", + "['that']\n", + "['cling', '', 'And']\n", + "['when']\n", + "['the']\n", + "['shadow']\n", + "['fades']\n", + "['and']\n", + "['is']\n", + "['no', 'more']\n", + "['the']\n", + "['light']\n", + "['that']\n", + "['lingers']\n", + "['becomes']\n", + "['a', 'shadow']\n", + "['to']\n", + "['another']\n", + "['light', '', 'And']\n", + "['thus']\n", + "['your']\n", + "['freedom']\n", + "['when']\n", + "['it']\n", + "['loses']\n", + "['its', 'fetters']\n", + "['becomes']\n", + "['itself']\n", + "['the']\n", + "['fetter']\n", + "['of']\n", + "['a', 'greater']\n", + "['freedom', '']\n", + "['', '', 'And']\n", + "['the']\n", + "['priestess']\n", + "['spoke']\n", + "['again', 'and']\n", + "['said']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of']\n", + "['Reason']\n", + "['and', 'Passion', '', 'And']\n", + "['he']\n", + "['answered']\n", + "['saying', '', 'Your']\n", + "['soul']\n", + "['is']\n", + "['oftentimes']\n", + "['a']\n", + "['battlefield', 'upon']\n", + "['which']\n", + "['your']\n", + "['reason']\n", + "['and']\n", + "['your']\n", + "['judgment', 'wage']\n", + "['war']\n", + "['against']\n", + "['your']\n", + "['passion']\n", + "['and']\n", + "['your', 'appetite', '', 'Would']\n", + "['that']\n", + "['I']\n", + "['could']\n", + "['be']\n", + "['the']\n", + "['peacemaker']\n", + "['in', 'your']\n", + "['soul']\n", + "['that']\n", + "['I']\n", + "['might']\n", + "['turn']\n", + "['the']\n", + "['discord', 'and']\n", + "['the']\n", + "['rivalry']\n", + "['of']\n", + "['your']\n", + "['elements']\n", + "['into', 'oneness']\n", + "['and']\n", + "['melody', '', 'But']\n", + "['how']\n", + "['shall']\n", + "['I']\n", + "['unless']\n", + "['you']\n", + "['yourselves', 'be']\n", + "['also']\n", + "['the']\n", + "['peacemakers']\n", + "['nay']\n", + "['the']\n", + "['lovers', 'of']\n", + "['all']\n", + "['your']\n", + "['elements', '', 'Your']\n", + "['reason']\n", + "['and']\n", + "['your']\n", + "['passion']\n", + "['are']\n", + "['the', 'rudder']\n", + "['and']\n", + "['the']\n", + "['sails']\n", + "['of']\n", + "['your']\n", + "['seafaring', 'soul', '', 'If']\n", + "['either']\n", + "['your']\n", + "['sails']\n", + "['or']\n", + "['your']\n", + "['rudder']\n", + "['be', 'broken']\n", + "['you']\n", + "['can']\n", + "['but']\n", + "['toss']\n", + "['and']\n", + "['drift', 'or']\n", + "['else']\n", + "['be']\n", + "['held']\n", + "['at']\n", + "['a']\n", + "['standstill']\n", + "['in', 'midseas']\n", + "['For']\n", + "['reason']\n", + "['ruling']\n", + "['alone', 'is']\n", + "['a']\n", + "['force']\n", + "['confining']\n", + "['and']\n", + "['passion', 'unattended']\n", + "['is']\n", + "['a']\n", + "['flame']\n", + "['that']\n", + "['burns']\n", + "['to']\n", + "['its', 'own']\n", + "['destruction', '', 'Therefore']\n", + "['let']\n", + "['your']\n", + "['soul']\n", + "['exalt']\n", + "['your', 'reason']\n", + "['to']\n", + "['the']\n", + "['height']\n", + "['of']\n", + "['passion']\n", + "['that']\n", + "['it', 'may']\n", + "['sing', '', 'And']\n", + "['let']\n", + "['it']\n", + "['direct']\n", + "['your']\n", + "['passion']\n", + "['with', 'reason']\n", + "['that']\n", + "['your']\n", + "['passion']\n", + "['may']\n", + "['live', 'through']\n", + "['its']\n", + "['own']\n", + "['daily']\n", + "['resurrection', 'and']\n", + "['like']\n", + "['the']\n", + "['phoenix']\n", + "['rise']\n", + "['above']\n", + "['its']\n", + "['own', 'ashes', '', '', '', 'I']\n", + "['would']\n", + "['have']\n", + "['you']\n", + "['consider']\n", + "['your']\n", + "['judgment', 'and']\n", + "['your']\n", + "['appetite']\n", + "['even']\n", + "['as']\n", + "['you']\n", + "['would']\n", + "['two', 'loved']\n", + "['guests']\n", + "['in']\n", + "['your']\n", + "['house', '', 'Surely']\n", + "['you']\n", + "['would']\n", + "['not']\n", + "['honour']\n", + "['one']\n", + "['guest', 'above']\n", + "['the']\n", + "['other']\n", + "['for']\n", + "['he']\n", + "['who']\n", + "['is']\n", + "['more', 'mindful']\n", + "['of']\n", + "['one']\n", + "['loses']\n", + "['the']\n", + "['love']\n", + "['and']\n", + "['the', 'faith']\n", + "['of']\n", + "['both', '', 'Among']\n", + "['the']\n", + "['hills']\n", + "['when']\n", + "['you']\n", + "['sit']\n", + "['in']\n", + "['the', 'cool']\n", + "['shade']\n", + "['of']\n", + "['the']\n", + "['white']\n", + "['poplars']\n", + "['sharing', 'the']\n", + "['peace']\n", + "['and']\n", + "['serenity']\n", + "['of']\n", + "['distant']\n", + "['fields', 'and']\n", + "['meadowsthen']\n", + "['let']\n", + "['your']\n", + "['heart']\n", + "['say']\n", + "['in', 'silence']\n", + "['God']\n", + "['rests']\n", + "['in']\n", + "['reason', '', 'And']\n", + "['when']\n", + "['the']\n", + "['storm']\n", + "['comes']\n", + "['and']\n", + "['the', 'mighty']\n", + "['wind']\n", + "['shakes']\n", + "['the']\n", + "['forest', 'and']\n", + "['thunder']\n", + "['and']\n", + "['lightning']\n", + "['proclaim']\n", + "['the', 'majesty']\n", + "['of']\n", + "['the']\n", + "['skythen']\n", + "['let']\n", + "['your']\n", + "['heart', 'say']\n", + "['in']\n", + "['awe']\n", + "['God']\n", + "['moves']\n", + "['in']\n", + "['passion', '', 'And']\n", + "['since']\n", + "['you']\n", + "['are']\n", + "['a']\n", + "['breath']\n", + "['in']\n", + "['Gods', 'sphere']\n", + "['and']\n", + "['a']\n", + "['leaf']\n", + "['in']\n", + "['Gods']\n", + "['forest']\n", + "['you', 'too']\n", + "['should']\n", + "['rest']\n", + "['in']\n", + "['reason']\n", + "['and']\n", + "['move']\n", + "['in', 'passion', '']\n", + "['', '', 'And']\n", + "['a']\n", + "['woman']\n", + "['spoke']\n", + "['saying']\n", + "['Tell']\n", + "['us', 'of']\n", + "['Pain', '', 'And']\n", + "['he']\n", + "['said', '', 'Your']\n", + "['pain']\n", + "['is']\n", + "['the']\n", + "['breaking']\n", + "['of']\n", + "['the']\n", + "['shell', 'that']\n", + "['encloses']\n", + "['your']\n", + "['understanding', '', 'Even']\n", + "['as']\n", + "['the']\n", + "['stone']\n", + "['of']\n", + "['the']\n", + "['fruit']\n", + "['must', 'break']\n", + "['that']\n", + "['its']\n", + "['heart']\n", + "['may']\n", + "['stand']\n", + "['in']\n", + "['the', 'sun']\n", + "['so']\n", + "['must']\n", + "['you']\n", + "['know']\n", + "['pain', '', 'And']\n", + "['could']\n", + "['you']\n", + "['keep']\n", + "['your']\n", + "['heart']\n", + "['in']\n", + "['wonder', 'at']\n", + "['the']\n", + "['daily']\n", + "['miracles']\n", + "['of']\n", + "['your']\n", + "['life']\n", + "['your', 'pain']\n", + "['would']\n", + "['not']\n", + "['seem']\n", + "['less']\n", + "['wondrous']\n", + "['than', 'your']\n", + "['joy', '', 'And']\n", + "['you']\n", + "['would']\n", + "['accept']\n", + "['the']\n", + "['seasons']\n", + "['of']\n", + "['your', 'heart']\n", + "['even']\n", + "['as']\n", + "['you']\n", + "['have']\n", + "['always']\n", + "['accepted', 'the']\n", + "['seasons']\n", + "['that']\n", + "['pass']\n", + "['over']\n", + "['your']\n", + "['fields', '', 'And']\n", + "['you']\n", + "['would']\n", + "['watch']\n", + "['with']\n", + "['serenity', 'through']\n", + "['the']\n", + "['winters']\n", + "['of']\n", + "['your']\n", + "['grief', '', 'Much']\n", + "['of']\n", + "['your']\n", + "['pain']\n", + "['is']\n", + "['selfchosen', '', 'It']\n", + "['is']\n", + "['the']\n", + "['bitter']\n", + "['potion']\n", + "['by']\n", + "['which']\n", + "['the', 'physician']\n", + "['within']\n", + "['you']\n", + "['heals']\n", + "['your']\n", + "['sick', 'self', '', 'Therefore']\n", + "['trust']\n", + "['the']\n", + "['physician']\n", + "['and']\n", + "['drink', 'his']\n", + "['remedy']\n", + "['in']\n", + "['silence']\n", + "['and']\n", + "['tranquillity', 'For']\n", + "['his']\n", + "['hand']\n", + "['though']\n", + "['heavy']\n", + "['and']\n", + "['hard']\n", + "['is', 'guided']\n", + "['by']\n", + "['the']\n", + "['tender']\n", + "['hand']\n", + "['of']\n", + "['the']\n", + "['Unseen', 'And']\n", + "['the']\n", + "['cup']\n", + "['he']\n", + "['brings']\n", + "['though']\n", + "['it']\n", + "['burn', 'your']\n", + "['lips']\n", + "['has']\n", + "['been']\n", + "['fashioned']\n", + "['of']\n", + "['the', 'clay']\n", + "['which']\n", + "['the']\n", + "['Potter']\n", + "['has']\n", + "['moistened']\n", + "['with', 'His']\n", + "['own']\n", + "['sacred']\n", + "['tears', '']\n", + "['', '', 'And']\n", + "['a']\n", + "['man']\n", + "['said']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of', 'SelfKnowledge', '', 'And']\n", + "['he']\n", + "['answered']\n", + "['saying', '', 'Your']\n", + "['hearts']\n", + "['know']\n", + "['in']\n", + "['silence']\n", + "['the']\n", + "['secrets', 'of']\n", + "['the']\n", + "['days']\n", + "['and']\n", + "['the']\n", + "['nights', '', 'But']\n", + "['your']\n", + "['ears']\n", + "['thirst']\n", + "['for']\n", + "['the']\n", + "['sound']\n", + "['of', 'your']\n", + "['hearts']\n", + "['knowledge', '', 'You']\n", + "['would']\n", + "['know']\n", + "['in']\n", + "['words']\n", + "['that']\n", + "['which']\n", + "['you', 'have']\n", + "['always']\n", + "['known']\n", + "['in']\n", + "['thought', '', 'You']\n", + "['would']\n", + "['touch']\n", + "['with']\n", + "['your']\n", + "['fingers']\n", + "['the', 'naked']\n", + "['body']\n", + "['of']\n", + "['your']\n", + "['dreams', '', 'And']\n", + "['it']\n", + "['is']\n", + "['well']\n", + "['you']\n", + "['should', '', 'The']\n", + "['hidden']\n", + "['wellspring']\n", + "['of']\n", + "['your']\n", + "['soul']\n", + "['must', 'needs']\n", + "['rise']\n", + "['and']\n", + "['run']\n", + "['murmuring']\n", + "['to']\n", + "['the']\n", + "['sea', '', 'And']\n", + "['the']\n", + "['treasure']\n", + "['of']\n", + "['your']\n", + "['infinite']\n", + "['depths', 'would']\n", + "['be']\n", + "['revealed']\n", + "['to']\n", + "['your']\n", + "['eyes', '', 'But']\n", + "['let']\n", + "['there']\n", + "['be']\n", + "['no']\n", + "['scales']\n", + "['to']\n", + "['weigh']\n", + "['your', 'unknown']\n", + "['treasure', '', 'And']\n", + "['seek']\n", + "['not']\n", + "['the']\n", + "['depths']\n", + "['of']\n", + "['your', 'knowledge']\n", + "['with']\n", + "['staff']\n", + "['or']\n", + "['sounding', 'line', '', 'For']\n", + "['self']\n", + "['is']\n", + "['a']\n", + "['sea']\n", + "['boundless']\n", + "['and', 'measureless', '', '', '', 'Say']\n", + "['not']\n", + "['I']\n", + "['have']\n", + "['found']\n", + "['the']\n", + "['truth']\n", + "['but', 'rather']\n", + "['I']\n", + "['have']\n", + "['found']\n", + "['a']\n", + "['truth', '', 'Say']\n", + "['not']\n", + "['I']\n", + "['have']\n", + "['found']\n", + "['the']\n", + "['path']\n", + "['of']\n", + "['the', 'soul']\n", + "['Say']\n", + "['rather']\n", + "['I']\n", + "['have']\n", + "['met']\n", + "['the']\n", + "['soul', 'walking']\n", + "['upon']\n", + "['my']\n", + "['path', '', 'For']\n", + "['the']\n", + "['soul']\n", + "['walks']\n", + "['upon']\n", + "['all']\n", + "['paths', '', 'The']\n", + "['soul']\n", + "['walks']\n", + "['not']\n", + "['upon']\n", + "['a']\n", + "['line']\n", + "['neither', 'does']\n", + "['it']\n", + "['grow']\n", + "['like']\n", + "['a']\n", + "['reed', '', 'The']\n", + "['soul']\n", + "['unfolds']\n", + "['itself']\n", + "['like']\n", + "['a']\n", + "['lotus']\n", + "['of', 'countless']\n", + "['petals', '', 'Illustration']\n", + "['', '']\n", + "['', '', 'Then']\n", + "['said']\n", + "['a']\n", + "['teacher']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of', 'Teaching', '', 'And']\n", + "['he']\n", + "['said', '', 'No']\n", + "['man']\n", + "['can']\n", + "['reveal']\n", + "['to']\n", + "['you']\n", + "['aught']\n", + "['but']\n", + "['that', 'which']\n", + "['already']\n", + "['lies']\n", + "['half']\n", + "['asleep']\n", + "['in']\n", + "['the', 'dawning']\n", + "['of']\n", + "['your']\n", + "['knowledge', '', 'The']\n", + "['teacher']\n", + "['who']\n", + "['walks']\n", + "['in']\n", + "['the']\n", + "['shadow']\n", + "['of', 'the']\n", + "['temple']\n", + "['among']\n", + "['his']\n", + "['followers']\n", + "['gives', 'not']\n", + "['of']\n", + "['his']\n", + "['wisdom']\n", + "['but']\n", + "['rather']\n", + "['of']\n", + "['his', 'faith']\n", + "['and']\n", + "['his']\n", + "['lovingness', '', 'If']\n", + "['he']\n", + "['is']\n", + "['indeed']\n", + "['wise']\n", + "['he']\n", + "['does']\n", + "['not']\n", + "['bid', 'you']\n", + "['enter']\n", + "['the']\n", + "['house']\n", + "['of']\n", + "['his']\n", + "['wisdom']\n", + "['but', 'rather']\n", + "['leads']\n", + "['you']\n", + "['to']\n", + "['the']\n", + "['threshold']\n", + "['of', 'your']\n", + "['own']\n", + "['mind', '', 'The']\n", + "['astronomer']\n", + "['may']\n", + "['speak']\n", + "['to']\n", + "['you']\n", + "['of']\n", + "['his', 'understanding']\n", + "['of']\n", + "['space']\n", + "['but']\n", + "['he']\n", + "['cannot', 'give']\n", + "['you']\n", + "['his']\n", + "['understanding', '', 'The']\n", + "['musician']\n", + "['may']\n", + "['sing']\n", + "['to']\n", + "['you']\n", + "['of']\n", + "['the', 'rhythm']\n", + "['which']\n", + "['is']\n", + "['in']\n", + "['all']\n", + "['space']\n", + "['but']\n", + "['he', 'cannot']\n", + "['give']\n", + "['you']\n", + "['the']\n", + "['ear']\n", + "['which']\n", + "['arrests', 'the']\n", + "['rhythm']\n", + "['nor']\n", + "['the']\n", + "['voice']\n", + "['that']\n", + "['echoes']\n", + "['it', 'And']\n", + "['he']\n", + "['who']\n", + "['is']\n", + "['versed']\n", + "['in']\n", + "['the']\n", + "['science', 'of']\n", + "['numbers']\n", + "['can']\n", + "['tell']\n", + "['of']\n", + "['the']\n", + "['regions', 'of']\n", + "['weight']\n", + "['and']\n", + "['measure']\n", + "['but']\n", + "['he']\n", + "['cannot', 'conduct']\n", + "['you']\n", + "['thither', '', 'For']\n", + "['the']\n", + "['vision']\n", + "['of']\n", + "['one']\n", + "['man']\n", + "['lends']\n", + "['not']\n", + "['its', 'wings']\n", + "['to']\n", + "['another']\n", + "['man', '', 'And']\n", + "['even']\n", + "['as']\n", + "['each']\n", + "['one']\n", + "['of']\n", + "['you']\n", + "['stands']\n", + "['alone', 'in']\n", + "['Gods']\n", + "['knowledge']\n", + "['so']\n", + "['must']\n", + "['each']\n", + "['one']\n", + "['of', 'you']\n", + "['be']\n", + "['alone']\n", + "['in']\n", + "['his']\n", + "['knowledge']\n", + "['of']\n", + "['God']\n", + "['and', 'in']\n", + "['his']\n", + "['understanding']\n", + "['of']\n", + "['the']\n", + "['earth', '']\n", + "['', '', 'And']\n", + "['a']\n", + "['youth']\n", + "['said']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of', 'Friendship', '', 'And']\n", + "['he']\n", + "['answered']\n", + "['saying', '', 'Your']\n", + "['friend']\n", + "['is']\n", + "['your']\n", + "['needs']\n", + "['answered', '', 'He']\n", + "['is']\n", + "['your']\n", + "['field']\n", + "['which']\n", + "['you']\n", + "['sow']\n", + "['with']\n", + "['love', 'and']\n", + "['reap']\n", + "['with']\n", + "['thanksgiving', '', 'And']\n", + "['he']\n", + "['is']\n", + "['your']\n", + "['board']\n", + "['and']\n", + "['your']\n", + "['fireside', '', 'For']\n", + "['you']\n", + "['come']\n", + "['to']\n", + "['him']\n", + "['with']\n", + "['your']\n", + "['hunger', 'and']\n", + "['you']\n", + "['seek']\n", + "['him']\n", + "['for']\n", + "['peace', '', 'When']\n", + "['your']\n", + "['friend']\n", + "['speaks']\n", + "['his']\n", + "['mind']\n", + "['you', 'fear']\n", + "['not']\n", + "['the']\n", + "['nay']\n", + "['in']\n", + "['your']\n", + "['own']\n", + "['mind']\n", + "['nor', 'do']\n", + "['you']\n", + "['withhold']\n", + "['the']\n", + "['ay', '', 'And']\n", + "['when']\n", + "['he']\n", + "['is']\n", + "['silent']\n", + "['your']\n", + "['heart']\n", + "['ceases', 'not']\n", + "['to']\n", + "['listen']\n", + "['to']\n", + "['his']\n", + "['heart', '', 'For']\n", + "['without']\n", + "['words']\n", + "['in']\n", + "['friendship']\n", + "['all', 'thoughts']\n", + "['all']\n", + "['desires']\n", + "['all']\n", + "['expectations', 'are']\n", + "['born']\n", + "['and']\n", + "['shared']\n", + "['with']\n", + "['joy']\n", + "['that']\n", + "['is', 'unacclaimed', '', 'When']\n", + "['you']\n", + "['part']\n", + "['from']\n", + "['your']\n", + "['friend']\n", + "['you', 'grieve']\n", + "['not', '', 'For']\n", + "['that']\n", + "['which']\n", + "['you']\n", + "['love']\n", + "['most']\n", + "['in']\n", + "['him', 'may']\n", + "['be']\n", + "['clearer']\n", + "['in']\n", + "['his']\n", + "['absence']\n", + "['as']\n", + "['the', 'mountain']\n", + "['to']\n", + "['the']\n", + "['climber']\n", + "['is']\n", + "['clearer', 'from']\n", + "['the']\n", + "['plain']\n", + "['And']\n", + "['let']\n", + "['there']\n", + "['be']\n", + "['no', 'purpose']\n", + "['in']\n", + "['friendship']\n", + "['save']\n", + "['the']\n", + "['deepening', 'of']\n", + "['the']\n", + "['spirit', '', 'For']\n", + "['love']\n", + "['that']\n", + "['seeks']\n", + "['aught']\n", + "['but']\n", + "['the', 'disclosure']\n", + "['of']\n", + "['its']\n", + "['own']\n", + "['mystery']\n", + "['is']\n", + "['not', 'love']\n", + "['but']\n", + "['a']\n", + "['net']\n", + "['cast']\n", + "['forth']\n", + "['and']\n", + "['only']\n", + "['the', 'unprofitable']\n", + "['is']\n", + "['caught', '', '', '', 'And']\n", + "['let']\n", + "['your']\n", + "['best']\n", + "['be']\n", + "['for']\n", + "['your']\n", + "['friend', '', 'If']\n", + "['he']\n", + "['must']\n", + "['know']\n", + "['the']\n", + "['ebb']\n", + "['of']\n", + "['your']\n", + "['tide', 'let']\n", + "['him']\n", + "['know']\n", + "['its']\n", + "['flood']\n", + "['also', '', 'For']\n", + "['what']\n", + "['is']\n", + "['your']\n", + "['friend']\n", + "['that']\n", + "['you']\n", + "['should', 'seek']\n", + "['him']\n", + "['with']\n", + "['hours']\n", + "['to']\n", + "['kill', '', 'Seek']\n", + "['him']\n", + "['always']\n", + "['with']\n", + "['hours']\n", + "['to']\n", + "['live', '', 'For']\n", + "['it']\n", + "['is']\n", + "['his']\n", + "['to']\n", + "['fill']\n", + "['your']\n", + "['need']\n", + "['but']\n", + "['not', 'your']\n", + "['emptiness', '', 'And']\n", + "['in']\n", + "['the']\n", + "['sweetness']\n", + "['of']\n", + "['friendship', 'let']\n", + "['there']\n", + "['be']\n", + "['laughter']\n", + "['and']\n", + "['sharing']\n", + "['of', 'pleasures', '', 'For']\n", + "['in']\n", + "['the']\n", + "['dew']\n", + "['of']\n", + "['little']\n", + "['things', 'the']\n", + "['heart']\n", + "['finds']\n", + "['its']\n", + "['morning']\n", + "['and']\n", + "['is', 'refreshed', '']\n", + "['', '', 'And']\n", + "['then']\n", + "['a']\n", + "['scholar']\n", + "['said']\n", + "['Speak']\n", + "['of', 'Talking', '', 'And']\n", + "['he']\n", + "['answered']\n", + "['saying', '', 'You']\n", + "['talk']\n", + "['when']\n", + "['you']\n", + "['cease']\n", + "['to']\n", + "['be']\n", + "['at']\n", + "['peace', 'with']\n", + "['your']\n", + "['thoughts', '', 'And']\n", + "['when']\n", + "['you']\n", + "['can']\n", + "['no']\n", + "['longer']\n", + "['dwell']\n", + "['in']\n", + "['the', 'solitude']\n", + "['of']\n", + "['your']\n", + "['heart']\n", + "['you']\n", + "['live']\n", + "['in']\n", + "['your', 'lips']\n", + "['and']\n", + "['sound']\n", + "['is']\n", + "['a']\n", + "['diversion']\n", + "['and']\n", + "['a', 'pastime', '', 'And']\n", + "['in']\n", + "['much']\n", + "['of']\n", + "['your']\n", + "['talking']\n", + "['thinking']\n", + "['is', 'half']\n", + "['murdered', '', 'For']\n", + "['thought']\n", + "['is']\n", + "['a']\n", + "['bird']\n", + "['of']\n", + "['space']\n", + "['that']\n", + "['in', 'a']\n", + "['cage']\n", + "['of']\n", + "['words']\n", + "['may']\n", + "['indeed']\n", + "['unfold']\n", + "['its', 'wings']\n", + "['but']\n", + "['cannot']\n", + "['fly', '', 'There']\n", + "['are']\n", + "['those']\n", + "['among']\n", + "['you']\n", + "['who']\n", + "['seek']\n", + "['the', 'talkative']\n", + "['through']\n", + "['fear']\n", + "['of']\n", + "['being']\n", + "['alone', '', 'The']\n", + "['silence']\n", + "['of']\n", + "['aloneness']\n", + "['reveals']\n", + "['to', 'their']\n", + "['eyes']\n", + "['their']\n", + "['naked']\n", + "['selves']\n", + "['and']\n", + "['they', 'would']\n", + "['escape', '', 'And']\n", + "['there']\n", + "['are']\n", + "['those']\n", + "['who']\n", + "['talk']\n", + "['and', 'without']\n", + "['knowledge']\n", + "['or']\n", + "['forethought']\n", + "['reveal', 'a']\n", + "['truth']\n", + "['which']\n", + "['they']\n", + "['themselves']\n", + "['do']\n", + "['not', 'understand', '', 'And']\n", + "['there']\n", + "['are']\n", + "['those']\n", + "['who']\n", + "['have']\n", + "['the']\n", + "['truth', 'within']\n", + "['them']\n", + "['but']\n", + "['they']\n", + "['tell']\n", + "['it']\n", + "['not']\n", + "['in', 'words', '', 'In']\n", + "['the']\n", + "['bosom']\n", + "['of']\n", + "['such']\n", + "['as']\n", + "['these']\n", + "['the']\n", + "['spirit', 'dwells']\n", + "['in']\n", + "['rhythmic']\n", + "['silence', '', '', '', 'When']\n", + "['you']\n", + "['meet']\n", + "['your']\n", + "['friend']\n", + "['on']\n", + "['the', 'roadside']\n", + "['or']\n", + "['in']\n", + "['the']\n", + "['market']\n", + "['place']\n", + "['let']\n", + "['the', 'spirit']\n", + "['in']\n", + "['you']\n", + "['move']\n", + "['your']\n", + "['lips']\n", + "['and']\n", + "['direct', 'your']\n", + "['tongue', '', 'Let']\n", + "['the']\n", + "['voice']\n", + "['within']\n", + "['your']\n", + "['voice']\n", + "['speak']\n", + "['to', 'the']\n", + "['ear']\n", + "['of']\n", + "['his']\n", + "['ear', '', 'For']\n", + "['his']\n", + "['soul']\n", + "['will']\n", + "['keep']\n", + "['the']\n", + "['truth']\n", + "['of', 'your']\n", + "['heart']\n", + "['as']\n", + "['the']\n", + "['taste']\n", + "['of']\n", + "['the']\n", + "['wine']\n", + "['is', 'remembered', '', 'When']\n", + "['the']\n", + "['colour']\n", + "['is']\n", + "['forgotten']\n", + "['and']\n", + "['the', 'vessel']\n", + "['is']\n", + "['no']\n", + "['more', '']\n", + "['', '', 'And']\n", + "['an']\n", + "['astronomer']\n", + "['said']\n", + "['Master']\n", + "['what', 'of']\n", + "['Time', '', 'And']\n", + "['he']\n", + "['answered', '', 'You']\n", + "['would']\n", + "['measure']\n", + "['time']\n", + "['the']\n", + "['measureless', 'and']\n", + "['the']\n", + "['immeasurable', '', 'You']\n", + "['would']\n", + "['adjust']\n", + "['your']\n", + "['conduct']\n", + "['and', 'even']\n", + "['direct']\n", + "['the']\n", + "['course']\n", + "['of']\n", + "['your']\n", + "['spirit', 'according']\n", + "['to']\n", + "['hours']\n", + "['and']\n", + "['seasons', '', 'Of']\n", + "['time']\n", + "['you']\n", + "['would']\n", + "['make']\n", + "['a']\n", + "['stream']\n", + "['upon', 'whose']\n", + "['bank']\n", + "['you']\n", + "['would']\n", + "['sit']\n", + "['and']\n", + "['watch']\n", + "['its', 'flowing', '', 'Yet']\n", + "['the']\n", + "['timeless']\n", + "['in']\n", + "['you']\n", + "['is']\n", + "['aware']\n", + "['of', 'lifes']\n", + "['timelessness', '', 'And']\n", + "['knows']\n", + "['that']\n", + "['yesterday']\n", + "['is']\n", + "['but']\n", + "['todays', 'memory']\n", + "['and']\n", + "['tomorrow']\n", + "['is']\n", + "['todays']\n", + "['dream', '', 'And']\n", + "['that']\n", + "['that']\n", + "['which']\n", + "['sings']\n", + "['and', 'contemplates']\n", + "['in']\n", + "['you']\n", + "['is']\n", + "['still']\n", + "['dwelling', 'within']\n", + "['the']\n", + "['bounds']\n", + "['of']\n", + "['that']\n", + "['first']\n", + "['moment', 'which']\n", + "['scattered']\n", + "['the']\n", + "['stars']\n", + "['into']\n", + "['space', 'Who']\n", + "['among']\n", + "['you']\n", + "['does']\n", + "['not']\n", + "['feel']\n", + "['that']\n", + "['his', 'power']\n", + "['to']\n", + "['love']\n", + "['is']\n", + "['boundless', '', 'And']\n", + "['yet']\n", + "['who']\n", + "['does']\n", + "['not']\n", + "['feel']\n", + "['that']\n", + "['very', 'love']\n", + "['though']\n", + "['boundless']\n", + "['encompassed', 'within']\n", + "['the']\n", + "['centre']\n", + "['of']\n", + "['his']\n", + "['being']\n", + "['and', 'moving']\n", + "['not']\n", + "['from']\n", + "['love']\n", + "['thought']\n", + "['to']\n", + "['love', 'thought']\n", + "['nor']\n", + "['from']\n", + "['love']\n", + "['deeds']\n", + "['to']\n", + "['other', 'love']\n", + "['deeds', '', 'And']\n", + "['is']\n", + "['not']\n", + "['time']\n", + "['even']\n", + "['as']\n", + "['love']\n", + "['is', 'undivided']\n", + "['and']\n", + "['paceless', '', '', '', 'But']\n", + "['if']\n", + "['in']\n", + "['your']\n", + "['thought']\n", + "['you']\n", + "['must']\n", + "['measure', 'time']\n", + "['into']\n", + "['seasons']\n", + "['let']\n", + "['each']\n", + "['season', 'encircle']\n", + "['all']\n", + "['the']\n", + "['other']\n", + "['seasons', '', 'And']\n", + "['let']\n", + "['today']\n", + "['embrace']\n", + "['the']\n", + "['past']\n", + "['with', 'remembrance']\n", + "['and']\n", + "['the']\n", + "['future']\n", + "['with']\n", + "['longing', '']\n", + "['', '', 'And']\n", + "['one']\n", + "['of']\n", + "['the']\n", + "['elders']\n", + "['of']\n", + "['the']\n", + "['city', 'said']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of']\n", + "['Good']\n", + "['and']\n", + "['Evil', '', 'And']\n", + "['he']\n", + "['answered', '', 'Of']\n", + "['the']\n", + "['good']\n", + "['in']\n", + "['you']\n", + "['I']\n", + "['can']\n", + "['speak']\n", + "['but']\n", + "['not', 'of']\n", + "['the']\n", + "['evil', '', 'For']\n", + "['what']\n", + "['is']\n", + "['evil']\n", + "['but']\n", + "['good']\n", + "['tortured']\n", + "['by', 'its']\n", + "['own']\n", + "['hunger']\n", + "['and']\n", + "['thirst', '', 'Verily']\n", + "['when']\n", + "['good']\n", + "['is']\n", + "['hungry']\n", + "['it']\n", + "['seeks']\n", + "['food', 'even']\n", + "['in']\n", + "['dark']\n", + "['caves']\n", + "['and']\n", + "['when']\n", + "['it']\n", + "['thirsts', 'it']\n", + "['drinks']\n", + "['even']\n", + "['of']\n", + "['dead']\n", + "['waters', '', 'You']\n", + "['are']\n", + "['good']\n", + "['when']\n", + "['you']\n", + "['are']\n", + "['one']\n", + "['with', 'yourself', '', 'Yet']\n", + "['when']\n", + "['you']\n", + "['are']\n", + "['not']\n", + "['one']\n", + "['with']\n", + "['yourself', 'you']\n", + "['are']\n", + "['not']\n", + "['evil', '', 'For']\n", + "['a']\n", + "['divided']\n", + "['house']\n", + "['is']\n", + "['not']\n", + "['a']\n", + "['den']\n", + "['of', 'thieves']\n", + "['it']\n", + "['is']\n", + "['only']\n", + "['a']\n", + "['divided']\n", + "['house', '', 'And']\n", + "['a']\n", + "['ship']\n", + "['without']\n", + "['rudder']\n", + "['may']\n", + "['wander', 'aimlessly']\n", + "['among']\n", + "['perilous']\n", + "['isles']\n", + "['yet']\n", + "['sink', 'not']\n", + "['to']\n", + "['the']\n", + "['bottom']\n", + "['You']\n", + "['are']\n", + "['good']\n", + "['when', 'you']\n", + "['strive']\n", + "['to']\n", + "['give']\n", + "['of']\n", + "['yourself', '', 'Yet']\n", + "['you']\n", + "['are']\n", + "['not']\n", + "['evil']\n", + "['when']\n", + "['you']\n", + "['seek']\n", + "['gain', 'for']\n", + "['yourself', '', 'For']\n", + "['when']\n", + "['you']\n", + "['strive']\n", + "['for']\n", + "['gain']\n", + "['you']\n", + "['are', 'but']\n", + "['a']\n", + "['root']\n", + "['that']\n", + "['clings']\n", + "['to']\n", + "['the']\n", + "['earth']\n", + "['and', 'sucks']\n", + "['at']\n", + "['her']\n", + "['breast', '', 'Surely']\n", + "['the']\n", + "['fruit']\n", + "['cannot']\n", + "['say']\n", + "['to']\n", + "['the']\n", + "['root', 'Be']\n", + "['like']\n", + "['me']\n", + "['ripe']\n", + "['and']\n", + "['full']\n", + "['and']\n", + "['ever', 'giving']\n", + "['of']\n", + "['your']\n", + "['abundance', '', 'For']\n", + "['to']\n", + "['the']\n", + "['fruit']\n", + "['giving']\n", + "['is']\n", + "['a']\n", + "['need']\n", + "['as', 'receiving']\n", + "['is']\n", + "['a']\n", + "['need']\n", + "['to']\n", + "['the']\n", + "['root', '', '', '', 'You']\n", + "['are']\n", + "['good']\n", + "['when']\n", + "['you']\n", + "['are']\n", + "['fully']\n", + "['awake']\n", + "['in', 'your']\n", + "['speech', '', 'Yet']\n", + "['you']\n", + "['are']\n", + "['not']\n", + "['evil']\n", + "['when']\n", + "['you']\n", + "['sleep', 'while']\n", + "['your']\n", + "['tongue']\n", + "['staggers']\n", + "['without', 'purpose', '', 'And']\n", + "['even']\n", + "['stumbling']\n", + "['speech']\n", + "['may']\n", + "['strengthen', 'a']\n", + "['weak']\n", + "['tongue', '', 'You']\n", + "['are']\n", + "['good']\n", + "['when']\n", + "['you']\n", + "['walk']\n", + "['to']\n", + "['your']\n", + "['goal', 'firmly']\n", + "['and']\n", + "['with']\n", + "['bold']\n", + "['steps', '', 'Yet']\n", + "['you']\n", + "['are']\n", + "['not']\n", + "['evil']\n", + "['when']\n", + "['you']\n", + "['go']\n", + "['thither', 'limping']\n", + "['Even']\n", + "['those']\n", + "['who']\n", + "['limp']\n", + "['go']\n", + "['not', 'backward', '', 'But']\n", + "['you']\n", + "['who']\n", + "['are']\n", + "['strong']\n", + "['and']\n", + "['swift']\n", + "['see', 'that']\n", + "['you']\n", + "['do']\n", + "['not']\n", + "['limp']\n", + "['before']\n", + "['the']\n", + "['lame', 'deeming']\n", + "['it']\n", + "['kindness', '', '', '', 'You']\n", + "['are']\n", + "['good']\n", + "['in']\n", + "['countless']\n", + "['ways']\n", + "['and']\n", + "['you', 'are']\n", + "['not']\n", + "['evil']\n", + "['when']\n", + "['you']\n", + "['are']\n", + "['not']\n", + "['good', '', 'You']\n", + "['are']\n", + "['only']\n", + "['loitering']\n", + "['and']\n", + "['sluggard', '', 'Pity']\n", + "['that']\n", + "['the']\n", + "['stags']\n", + "['cannot']\n", + "['teach', 'swiftness']\n", + "['to']\n", + "['the']\n", + "['turtles', '', 'In']\n", + "['your']\n", + "['longing']\n", + "['for']\n", + "['your']\n", + "['giant']\n", + "['self']\n", + "['lies', 'your']\n", + "['goodness']\n", + "['and']\n", + "['that']\n", + "['longing']\n", + "['is']\n", + "['in', 'all']\n", + "['of']\n", + "['you', '', 'But']\n", + "['in']\n", + "['some']\n", + "['of']\n", + "['you']\n", + "['that']\n", + "['longing']\n", + "['is']\n", + "['a', 'torrent']\n", + "['rushing']\n", + "['with']\n", + "['might']\n", + "['to']\n", + "['the']\n", + "['sea', 'carrying']\n", + "['the']\n", + "['secrets']\n", + "['of']\n", + "['the']\n", + "['hillsides', 'and']\n", + "['the']\n", + "['songs']\n", + "['of']\n", + "['the']\n", + "['forest', '', 'And']\n", + "['in']\n", + "['others']\n", + "['it']\n", + "['is']\n", + "['a']\n", + "['flat']\n", + "['stream']\n", + "['that', 'loses']\n", + "['itself']\n", + "['in']\n", + "['angles']\n", + "['and']\n", + "['bends']\n", + "['and', 'lingers']\n", + "['before']\n", + "['it']\n", + "['reaches']\n", + "['the']\n", + "['shore', '', 'But']\n", + "['let']\n", + "['not']\n", + "['him']\n", + "['who']\n", + "['longs']\n", + "['much']\n", + "['say']\n", + "['to', 'him']\n", + "['who']\n", + "['longs']\n", + "['little']\n", + "['Wherefore']\n", + "['are', 'you']\n", + "['slow']\n", + "['and']\n", + "['halting', '', 'For']\n", + "['the']\n", + "['truly']\n", + "['good']\n", + "['ask']\n", + "['not']\n", + "['the']\n", + "['naked', 'Where']\n", + "['is']\n", + "['your']\n", + "['garment']\n", + "['nor']\n", + "['the', 'houseless']\n", + "['What']\n", + "['has']\n", + "['befallen']\n", + "['your', 'house', '']\n", + "['', '', 'Then']\n", + "['a']\n", + "['priestess']\n", + "['said']\n", + "['Speak']\n", + "['to']\n", + "['us', 'of']\n", + "['Prayer', '', 'And']\n", + "['he']\n", + "['answered']\n", + "['saying', '', 'You']\n", + "['pray']\n", + "['in']\n", + "['your']\n", + "['distress']\n", + "['and']\n", + "['in']\n", + "['your', 'need']\n", + "['would']\n", + "['that']\n", + "['you']\n", + "['might']\n", + "['pray']\n", + "['also', 'in']\n", + "['the']\n", + "['fullness']\n", + "['of']\n", + "['your']\n", + "['joy']\n", + "['and']\n", + "['in']\n", + "['your', 'days']\n", + "['of']\n", + "['abundance', '', 'For']\n", + "['what']\n", + "['is']\n", + "['prayer']\n", + "['but']\n", + "['the']\n", + "['expansion']\n", + "['of', 'yourself']\n", + "['into']\n", + "['the']\n", + "['living']\n", + "['ether', '', 'And']\n", + "['if']\n", + "['it']\n", + "['is']\n", + "['for']\n", + "['your']\n", + "['comfort']\n", + "['to']\n", + "['pour', 'your']\n", + "['darkness']\n", + "['into']\n", + "['space']\n", + "['it']\n", + "['is']\n", + "['also']\n", + "['for', 'your']\n", + "['delight']\n", + "['to']\n", + "['pour']\n", + "['forth']\n", + "['the']\n", + "['dawning', 'of']\n", + "['your']\n", + "['heart', '', 'And']\n", + "['if']\n", + "['you']\n", + "['cannot']\n", + "['but']\n", + "['weep']\n", + "['when']\n", + "['your', 'soul']\n", + "['summons']\n", + "['you']\n", + "['to']\n", + "['prayer']\n", + "['she']\n", + "['should', 'spur']\n", + "['you']\n", + "['again']\n", + "['and']\n", + "['yet']\n", + "['again']\n", + "['though', 'weeping']\n", + "['until']\n", + "['you']\n", + "['shall']\n", + "['come']\n", + "['laughing', '', 'When']\n", + "['you']\n", + "['pray']\n", + "['you']\n", + "['rise']\n", + "['to']\n", + "['meet']\n", + "['in']\n", + "['the', 'air']\n", + "['those']\n", + "['who']\n", + "['are']\n", + "['praying']\n", + "['at']\n", + "['that']\n", + "['very', 'hour']\n", + "['and']\n", + "['whom']\n", + "['save']\n", + "['in']\n", + "['prayer']\n", + "['you', 'may']\n", + "['not']\n", + "['meet', '', 'Therefore']\n", + "['let']\n", + "['your']\n", + "['visit']\n", + "['to']\n", + "['that']\n", + "['temple', 'invisible']\n", + "['be']\n", + "['for']\n", + "['naught']\n", + "['but']\n", + "['ecstasy']\n", + "['and', 'sweet']\n", + "['communion', '', 'For']\n", + "['if']\n", + "['you']\n", + "['should']\n", + "['enter']\n", + "['the']\n", + "['temple']\n", + "['for', 'no']\n", + "['other']\n", + "['purpose']\n", + "['than']\n", + "['asking']\n", + "['you']\n", + "['shall', 'not']\n", + "['receive', '', 'And']\n", + "['if']\n", + "['you']\n", + "['should']\n", + "['enter']\n", + "['into']\n", + "['it']\n", + "['to', 'humble']\n", + "['yourself']\n", + "['you']\n", + "['shall']\n", + "['not']\n", + "['be']\n", + "['lifted', '', 'Or']\n", + "['even']\n", + "['if']\n", + "['you']\n", + "['should']\n", + "['enter']\n", + "['into']\n", + "['it']\n", + "['to', 'beg']\n", + "['for']\n", + "['the']\n", + "['good']\n", + "['of']\n", + "['others']\n", + "['you']\n", + "['shall']\n", + "['not', 'be']\n", + "['heard', '', 'It']\n", + "['is']\n", + "['enough']\n", + "['that']\n", + "['you']\n", + "['enter']\n", + "['the']\n", + "['temple', 'invisible', '', '', '', 'I']\n", + "['cannot']\n", + "['teach']\n", + "['you']\n", + "['how']\n", + "['to']\n", + "['pray']\n", + "['in']\n", + "['words', '', 'God']\n", + "['listens']\n", + "['not']\n", + "['to']\n", + "['your']\n", + "['words']\n", + "['save']\n", + "['when', 'He']\n", + "['Himself']\n", + "['utters']\n", + "['them']\n", + "['through']\n", + "['your', 'lips', '', 'And']\n", + "['I']\n", + "['cannot']\n", + "['teach']\n", + "['you']\n", + "['the']\n", + "['prayer']\n", + "['of']\n", + "['the', 'seas']\n", + "['and']\n", + "['the']\n", + "['forests']\n", + "['and']\n", + "['the']\n", + "['mountains', 'But']\n", + "['you']\n", + "['who']\n", + "['are']\n", + "['born']\n", + "['of']\n", + "['the', 'mountains']\n", + "['and']\n", + "['the']\n", + "['forests']\n", + "['and']\n", + "['the']\n", + "['seas', 'can']\n", + "['find']\n", + "['their']\n", + "['prayer']\n", + "['in']\n", + "['your']\n", + "['heart', '', 'And']\n", + "['if']\n", + "['you']\n", + "['but']\n", + "['listen']\n", + "['in']\n", + "['the']\n", + "['stillness', 'of']\n", + "['the']\n", + "['night']\n", + "['you']\n", + "['shall']\n", + "['hear']\n", + "['them']\n", + "['saying', 'in']\n", + "['silence', '', 'Our']\n", + "['God']\n", + "['who']\n", + "['art']\n", + "['our']\n", + "['winged']\n", + "['self']\n", + "['it']\n", + "['is', 'thy']\n", + "['will']\n", + "['in']\n", + "['us']\n", + "['that']\n", + "['willeth', '', 'It']\n", + "['is']\n", + "['thy']\n", + "['desire']\n", + "['in']\n", + "['us']\n", + "['that']\n", + "['desireth', '', 'It']\n", + "['is']\n", + "['thy']\n", + "['urge']\n", + "['in']\n", + "['us']\n", + "['that']\n", + "['would']\n", + "['turn']\n", + "['our', 'nights']\n", + "['which']\n", + "['are']\n", + "['thine']\n", + "['into']\n", + "['days']\n", + "['which', 'are']\n", + "['thine']\n", + "['also', '', 'We']\n", + "['cannot']\n", + "['ask']\n", + "['thee']\n", + "['for']\n", + "['aught']\n", + "['for']\n", + "['thou', 'knowest']\n", + "['our']\n", + "['needs']\n", + "['before']\n", + "['they']\n", + "['are']\n", + "['born', 'in']\n", + "['us', '', 'Thou']\n", + "['art']\n", + "['our']\n", + "['need']\n", + "['and']\n", + "['in']\n", + "['giving']\n", + "['us']\n", + "['more', 'of']\n", + "['thyself']\n", + "['thou']\n", + "['givest']\n", + "['us']\n", + "['all', '', 'Illustration']\n", + "['', '']\n", + "['', '', 'Then']\n", + "['a']\n", + "['hermit']\n", + "['who']\n", + "['visited']\n", + "['the']\n", + "['city', 'once']\n", + "['a']\n", + "['year']\n", + "['came']\n", + "['forth']\n", + "['and']\n", + "['said']\n", + "['Speak', 'to']\n", + "['us']\n", + "['of']\n", + "['Pleasure', '', 'And']\n", + "['he']\n", + "['answered']\n", + "['saying', '', 'Pleasure']\n", + "['is']\n", + "['a']\n", + "['freedomsong', '', 'But']\n", + "['it']\n", + "['is']\n", + "['not']\n", + "['freedom', '', 'It']\n", + "['is']\n", + "['the']\n", + "['blossoming']\n", + "['of']\n", + "['your']\n", + "['desires', '', 'But']\n", + "['it']\n", + "['is']\n", + "['not']\n", + "['their']\n", + "['fruit', '', 'It']\n", + "['is']\n", + "['a']\n", + "['depth']\n", + "['calling']\n", + "['unto']\n", + "['a']\n", + "['height', '', 'But']\n", + "['it']\n", + "['is']\n", + "['not']\n", + "['the']\n", + "['deep']\n", + "['nor']\n", + "['the']\n", + "['high', '', 'It']\n", + "['is']\n", + "['the']\n", + "['caged']\n", + "['taking']\n", + "['wing', '', 'But']\n", + "['it']\n", + "['is']\n", + "['not']\n", + "['space']\n", + "['encompassed', '', 'Ay']\n", + "['in']\n", + "['very']\n", + "['truth']\n", + "['pleasure']\n", + "['is']\n", + "['a', 'freedomsong', '', 'And']\n", + "['I']\n", + "['fain']\n", + "['would']\n", + "['have']\n", + "['you']\n", + "['sing']\n", + "['it']\n", + "['with', 'fullness']\n", + "['of']\n", + "['heart']\n", + "['yet']\n", + "['I']\n", + "['would']\n", + "['not']\n", + "['have', 'you']\n", + "['lose']\n", + "['your']\n", + "['hearts']\n", + "['in']\n", + "['the']\n", + "['singing', '', 'Some']\n", + "['of']\n", + "['your']\n", + "['youth']\n", + "['seek']\n", + "['pleasure']\n", + "['as']\n", + "['if', 'it']\n", + "['were']\n", + "['all']\n", + "['and']\n", + "['they']\n", + "['are']\n", + "['judged']\n", + "['and', 'rebuked']\n", + "['I']\n", + "['would']\n", + "['not']\n", + "['judge']\n", + "['nor', 'rebuke']\n", + "['them']\n", + "['I']\n", + "['would']\n", + "['have']\n", + "['them']\n", + "['seek', '', 'For']\n", + "['they']\n", + "['shall']\n", + "['find']\n", + "['pleasure']\n", + "['but']\n", + "['not', 'her']\n", + "['alone', '', 'Seven']\n", + "['are']\n", + "['her']\n", + "['sisters']\n", + "['and']\n", + "['the']\n", + "['least']\n", + "['of', 'them']\n", + "['is']\n", + "['more']\n", + "['beautiful']\n", + "['than']\n", + "['pleasure', '', 'Have']\n", + "['you']\n", + "['not']\n", + "['heard']\n", + "['of']\n", + "['the']\n", + "['man']\n", + "['who']\n", + "['was', 'digging']\n", + "['in']\n", + "['the']\n", + "['earth']\n", + "['for']\n", + "['roots']\n", + "['and']\n", + "['found', 'a']\n", + "['treasure', '', '', '', 'And']\n", + "['some']\n", + "['of']\n", + "['your']\n", + "['elders']\n", + "['remember', 'pleasures']\n", + "['with']\n", + "['regret']\n", + "['like']\n", + "['wrongs', 'committed']\n", + "['in']\n", + "['drunkenness', '', 'But']\n", + "['regret']\n", + "['is']\n", + "['the']\n", + "['beclouding']\n", + "['of']\n", + "['the']\n", + "['mind', 'and']\n", + "['not']\n", + "['its']\n", + "['chastisement', '', 'They']\n", + "['should']\n", + "['remember']\n", + "['their']\n", + "['pleasures', 'with']\n", + "['gratitude']\n", + "['as']\n", + "['they']\n", + "['would']\n", + "['the', 'harvest']\n", + "['of']\n", + "['a']\n", + "['summer', '', 'Yet']\n", + "['if']\n", + "['it']\n", + "['comforts']\n", + "['them']\n", + "['to']\n", + "['regret']\n", + "['let', 'them']\n", + "['be']\n", + "['comforted', '', 'And']\n", + "['there']\n", + "['are']\n", + "['among']\n", + "['you']\n", + "['those']\n", + "['who', 'are']\n", + "['neither']\n", + "['young']\n", + "['to']\n", + "['seek']\n", + "['nor']\n", + "['old']\n", + "['to', 'remember', '', 'And']\n", + "['in']\n", + "['their']\n", + "['fear']\n", + "['of']\n", + "['seeking']\n", + "['and', 'remembering']\n", + "['they']\n", + "['shun']\n", + "['all']\n", + "['pleasures', 'lest']\n", + "['they']\n", + "['neglect']\n", + "['the']\n", + "['spirit']\n", + "['or']\n", + "['offend', 'against']\n", + "['it', '', 'But']\n", + "['even']\n", + "['in']\n", + "['their']\n", + "['foregoing']\n", + "['is']\n", + "['their', 'pleasure', '', 'And']\n", + "['thus']\n", + "['they']\n", + "['too']\n", + "['find']\n", + "['a']\n", + "['treasure']\n", + "['though', 'they']\n", + "['dig']\n", + "['for']\n", + "['roots']\n", + "['with']\n", + "['quivering']\n", + "['hands', '', 'But']\n", + "['tell']\n", + "['me']\n", + "['who']\n", + "['is']\n", + "['he']\n", + "['that']\n", + "['can']\n", + "['offend', 'the']\n", + "['spirit', '', 'Shall']\n", + "['the']\n", + "['nightingale']\n", + "['offend']\n", + "['the', 'stillness']\n", + "['of']\n", + "['the']\n", + "['night']\n", + "['or']\n", + "['the']\n", + "['firefly', 'the']\n", + "['stars', '', 'And']\n", + "['shall']\n", + "['your']\n", + "['flame']\n", + "['or']\n", + "['your']\n", + "['smoke', 'burden']\n", + "['the']\n", + "['wind', '', 'Think']\n", + "['you']\n", + "['the']\n", + "['spirit']\n", + "['is']\n", + "['a']\n", + "['still']\n", + "['pool', 'which']\n", + "['you']\n", + "['can']\n", + "['trouble']\n", + "['with']\n", + "['a']\n", + "['staff', '', '', '', 'Oftentimes']\n", + "['in']\n", + "['denying']\n", + "['yourself']\n", + "['pleasure', 'you']\n", + "['do']\n", + "['but']\n", + "['store']\n", + "['the']\n", + "['desire']\n", + "['in']\n", + "['the', 'recesses']\n", + "['of']\n", + "['your']\n", + "['being', '', 'Who']\n", + "['knows']\n", + "['but']\n", + "['that']\n", + "['which']\n", + "['seems']\n", + "['omitted', 'today']\n", + "['waits']\n", + "['for']\n", + "['tomorrow', '', 'Even']\n", + "['your']\n", + "['body']\n", + "['knows']\n", + "['its']\n", + "['heritage', 'and']\n", + "['its']\n", + "['rightful']\n", + "['need']\n", + "['and']\n", + "['will']\n", + "['not']\n", + "['be', 'deceived', '', 'And']\n", + "['your']\n", + "['body']\n", + "['is']\n", + "['the']\n", + "['harp']\n", + "['of']\n", + "['your']\n", + "['soul', '', 'And']\n", + "['it']\n", + "['is']\n", + "['yours']\n", + "['to']\n", + "['bring']\n", + "['forth']\n", + "['sweet', 'music']\n", + "['from']\n", + "['it']\n", + "['or']\n", + "['confused']\n", + "['sounds', '', '', '', 'And']\n", + "['now']\n", + "['you']\n", + "['ask']\n", + "['in']\n", + "['your']\n", + "['heart']\n", + "['How', 'shall']\n", + "['we']\n", + "['distinguish']\n", + "['that']\n", + "['which']\n", + "['is', 'good']\n", + "['in']\n", + "['pleasure']\n", + "['from']\n", + "['that']\n", + "['which']\n", + "['is']\n", + "['not', 'good', '', 'Go']\n", + "['to']\n", + "['your']\n", + "['fields']\n", + "['and']\n", + "['your']\n", + "['gardens']\n", + "['and', 'you']\n", + "['shall']\n", + "['learn']\n", + "['that']\n", + "['it']\n", + "['is']\n", + "['the']\n", + "['pleasure', 'of']\n", + "['the']\n", + "['bee']\n", + "['to']\n", + "['gather']\n", + "['honey']\n", + "['of']\n", + "['the', 'flower', '', 'But']\n", + "['it']\n", + "['is']\n", + "['also']\n", + "['the']\n", + "['pleasure']\n", + "['of']\n", + "['the', 'flower']\n", + "['to']\n", + "['yield']\n", + "['its']\n", + "['honey']\n", + "['to']\n", + "['the']\n", + "['bee', '', 'For']\n", + "['to']\n", + "['the']\n", + "['bee']\n", + "['a']\n", + "['flower']\n", + "['is']\n", + "['a']\n", + "['fountain']\n", + "['of', 'life', '', 'And']\n", + "['to']\n", + "['the']\n", + "['flower']\n", + "['a']\n", + "['bee']\n", + "['is']\n", + "['a']\n", + "['messenger', 'of']\n", + "['love', '', 'And']\n", + "['to']\n", + "['both']\n", + "['bee']\n", + "['and']\n", + "['flower']\n", + "['the']\n", + "['giving', 'and']\n", + "['the']\n", + "['receiving']\n", + "['of']\n", + "['pleasure']\n", + "['is']\n", + "['a']\n", + "['need', 'and']\n", + "['an']\n", + "['ecstasy', '', 'People']\n", + "['of']\n", + "['Orphalese']\n", + "['be']\n", + "['in']\n", + "['your', 'pleasures']\n", + "['like']\n", + "['the']\n", + "['flowers']\n", + "['and']\n", + "['the']\n", + "['bees', '']\n", + "['', '', 'And']\n", + "['a']\n", + "['poet']\n", + "['said']\n", + "['Speak']\n", + "['to']\n", + "['us']\n", + "['of', 'Beauty', '', 'And']\n", + "['he']\n", + "['answered', '', 'Where']\n", + "['shall']\n", + "['you']\n", + "['seek']\n", + "['beauty']\n", + "['and']\n", + "['how', 'shall']\n", + "['you']\n", + "['find']\n", + "['her']\n", + "['unless']\n", + "['she']\n", + "['herself']\n", + "['be', 'your']\n", + "['way']\n", + "['and']\n", + "['your']\n", + "['guide', '', 'And']\n", + "['how']\n", + "['shall']\n", + "['you']\n", + "['speak']\n", + "['of']\n", + "['her']\n", + "['except', 'she']\n", + "['be']\n", + "['the']\n", + "['weaver']\n", + "['of']\n", + "['your']\n", + "['speech', '', 'The']\n", + "['aggrieved']\n", + "['and']\n", + "['the']\n", + "['injured']\n", + "['say', 'Beauty']\n", + "['is']\n", + "['kind']\n", + "['and']\n", + "['gentle', '', 'Like']\n", + "['a']\n", + "['young']\n", + "['mother']\n", + "['halfshy']\n", + "['of']\n", + "['her']\n", + "['own', 'glory']\n", + "['she']\n", + "['walks']\n", + "['among']\n", + "['us', '', 'And']\n", + "['the']\n", + "['passionate']\n", + "['say']\n", + "['Nay']\n", + "['beauty']\n", + "['is', 'a']\n", + "['thing']\n", + "['of']\n", + "['might']\n", + "['and']\n", + "['dread', '', 'Like']\n", + "['the']\n", + "['tempest']\n", + "['she']\n", + "['shakes']\n", + "['the']\n", + "['earth', 'beneath']\n", + "['us']\n", + "['and']\n", + "['the']\n", + "['sky']\n", + "['above']\n", + "['us', '', 'The']\n", + "['tired']\n", + "['and']\n", + "['the']\n", + "['weary']\n", + "['say']\n", + "['Beauty']\n", + "['is', 'of']\n", + "['soft']\n", + "['whisperings']\n", + "['She']\n", + "['speaks']\n", + "['in']\n", + "['our', 'spirit']\n", + "['Her']\n", + "['voice']\n", + "['yields']\n", + "['to']\n", + "['our', 'silences']\n", + "['like']\n", + "['a']\n", + "['faint']\n", + "['light']\n", + "['that']\n", + "['quivers', 'in']\n", + "['fear']\n", + "['of']\n", + "['the']\n", + "['shadow', '', 'But']\n", + "['the']\n", + "['restless']\n", + "['say']\n", + "['We']\n", + "['have']\n", + "['heard']\n", + "['her', 'shouting']\n", + "['among']\n", + "['the']\n", + "['mountains', '', 'And']\n", + "['with']\n", + "['her']\n", + "['cries']\n", + "['came']\n", + "['the']\n", + "['sound']\n", + "['of', 'hoofs']\n", + "['and']\n", + "['the']\n", + "['beating']\n", + "['of']\n", + "['wings']\n", + "['and']\n", + "['the', 'roaring']\n", + "['of']\n", + "['lions', '', 'At']\n", + "['night']\n", + "['the']\n", + "['watchmen']\n", + "['of']\n", + "['the']\n", + "['city']\n", + "['say', 'Beauty']\n", + "['shall']\n", + "['rise']\n", + "['with']\n", + "['the']\n", + "['dawn']\n", + "['from', 'the']\n", + "['east', '', 'And']\n", + "['at']\n", + "['noontide']\n", + "['the']\n", + "['toilers']\n", + "['and']\n", + "['the', 'wayfarers']\n", + "['say']\n", + "['We']\n", + "['have']\n", + "['seen']\n", + "['her']\n", + "['leaning', 'over']\n", + "['the']\n", + "['earth']\n", + "['from']\n", + "['the']\n", + "['windows']\n", + "['of']\n", + "['the', 'sunset', '', '', '', 'In']\n", + "['winter']\n", + "['say']\n", + "['the']\n", + "['snowbound']\n", + "['She']\n", + "['shall', 'come']\n", + "['with']\n", + "['the']\n", + "['spring']\n", + "['leaping']\n", + "['upon']\n", + "['the', 'hills', '', 'And']\n", + "['in']\n", + "['the']\n", + "['summer']\n", + "['heat']\n", + "['the']\n", + "['reapers', 'say']\n", + "['We']\n", + "['have']\n", + "['seen']\n", + "['her']\n", + "['dancing']\n", + "['with']\n", + "['the', 'autumn']\n", + "['leaves']\n", + "['and']\n", + "['we']\n", + "['saw']\n", + "['a']\n", + "['drift']\n", + "['of', 'snow']\n", + "['in']\n", + "['her']\n", + "['hair']\n", + "['All']\n", + "['these']\n", + "['things', 'have']\n", + "['you']\n", + "['said']\n", + "['of']\n", + "['beauty', '', 'Yet']\n", + "['in']\n", + "['truth']\n", + "['you']\n", + "['spoke']\n", + "['not']\n", + "['of']\n", + "['her']\n", + "['but']\n", + "['of', 'needs']\n", + "['unsatisfied', '', 'And']\n", + "['beauty']\n", + "['is']\n", + "['not']\n", + "['a']\n", + "['need']\n", + "['but']\n", + "['an']\n", + "['ecstasy', '', 'It']\n", + "['is']\n", + "['not']\n", + "['a']\n", + "['mouth']\n", + "['thirsting']\n", + "['nor']\n", + "['an']\n", + "['empty', 'hand']\n", + "['stretched']\n", + "['forth', '', 'But']\n", + "['rather']\n", + "['a']\n", + "['heart']\n", + "['enflamed']\n", + "['and']\n", + "['a']\n", + "['soul', 'enchanted', '', 'It']\n", + "['is']\n", + "['not']\n", + "['the']\n", + "['image']\n", + "['you']\n", + "['would']\n", + "['see']\n", + "['nor', 'the']\n", + "['song']\n", + "['you']\n", + "['would']\n", + "['hear', '', 'But']\n", + "['rather']\n", + "['an']\n", + "['image']\n", + "['you']\n", + "['see']\n", + "['though']\n", + "['you', 'close']\n", + "['your']\n", + "['eyes']\n", + "['and']\n", + "['a']\n", + "['song']\n", + "['you']\n", + "['hear', 'though']\n", + "['you']\n", + "['shut']\n", + "['your']\n", + "['ears', '', 'It']\n", + "['is']\n", + "['not']\n", + "['the']\n", + "['sap']\n", + "['within']\n", + "['the']\n", + "['furrowed', 'bark']\n", + "['nor']\n", + "['a']\n", + "['wing']\n", + "['attached']\n", + "['to']\n", + "['a']\n", + "['claw', '', 'But']\n", + "['rather']\n", + "['a']\n", + "['garden']\n", + "['for']\n", + "['ever']\n", + "['in']\n", + "['bloom', 'and']\n", + "['a']\n", + "['flock']\n", + "['of']\n", + "['angels']\n", + "['for']\n", + "['ever']\n", + "['in', 'flight', '', '', '', 'People']\n", + "['of']\n", + "['Orphalese']\n", + "['beauty']\n", + "['is']\n", + "['life']\n", + "['when', 'life']\n", + "['unveils']\n", + "['her']\n", + "['holy']\n", + "['face', '', 'But']\n", + "['you']\n", + "['are']\n", + "['life']\n", + "['and']\n", + "['you']\n", + "['are']\n", + "['the']\n", + "['veil', 'Beauty']\n", + "['is']\n", + "['eternity']\n", + "['gazing']\n", + "['at']\n", + "['itself', 'in']\n", + "['a']\n", + "['mirror', '', 'But']\n", + "['you']\n", + "['are']\n", + "['eternity']\n", + "['and']\n", + "['you']\n", + "['are']\n", + "['the', 'mirror', '']\n", + "['', '', 'And']\n", + "['an']\n", + "['old']\n", + "['priest']\n", + "['said']\n", + "['Speak']\n", + "['to']\n", + "['us', 'of']\n", + "['Religion', '', 'And']\n", + "['he']\n", + "['said', '', 'Have']\n", + "['I']\n", + "['spoken']\n", + "['this']\n", + "['day']\n", + "['of']\n", + "['aught']\n", + "['else', '', 'Is']\n", + "['not']\n", + "['religion']\n", + "['all']\n", + "['deeds']\n", + "['and']\n", + "['all', 'reflection', '', 'And']\n", + "['that']\n", + "['which']\n", + "['is']\n", + "['neither']\n", + "['deed']\n", + "['nor', 'reflection']\n", + "['but']\n", + "['a']\n", + "['wonder']\n", + "['and']\n", + "['a']\n", + "['surprise', 'ever']\n", + "['springing']\n", + "['in']\n", + "['the']\n", + "['soul']\n", + "['even']\n", + "['while', 'the']\n", + "['hands']\n", + "['hew']\n", + "['the']\n", + "['stone']\n", + "['or']\n", + "['tend']\n", + "['the', 'loom', '', 'Who']\n", + "['can']\n", + "['separate']\n", + "['his']\n", + "['faith']\n", + "['from', 'his']\n", + "['actions']\n", + "['or']\n", + "['his']\n", + "['belief']\n", + "['from']\n", + "['his', 'occupations', '', 'Who']\n", + "['can']\n", + "['spread']\n", + "['his']\n", + "['hours']\n", + "['before']\n", + "['him', 'saving']\n", + "['This']\n", + "['for']\n", + "['God']\n", + "['and']\n", + "['this']\n", + "['for', 'myself']\n", + "['This']\n", + "['for']\n", + "['my']\n", + "['soul']\n", + "['and']\n", + "['this']\n", + "['other', 'for']\n", + "['my']\n", + "['body', '', 'All']\n", + "['your']\n", + "['hours']\n", + "['are']\n", + "['wings']\n", + "['that']\n", + "['beat', 'through']\n", + "['space']\n", + "['from']\n", + "['self']\n", + "['to']\n", + "['self']\n", + "['He', 'who']\n", + "['wears']\n", + "['his']\n", + "['morality']\n", + "['but']\n", + "['as']\n", + "['his']\n", + "['best', 'garment']\n", + "['were']\n", + "['better']\n", + "['naked', '', 'The']\n", + "['wind']\n", + "['and']\n", + "['the']\n", + "['sun']\n", + "['will']\n", + "['tear']\n", + "['no']\n", + "['holes', 'in']\n", + "['his']\n", + "['skin', '', 'And']\n", + "['he']\n", + "['who']\n", + "['defines']\n", + "['his']\n", + "['conduct']\n", + "['by']\n", + "['ethics', 'imprisons']\n", + "['his']\n", + "['songbird']\n", + "['in']\n", + "['a']\n", + "['cage', '', 'The']\n", + "['freest']\n", + "['song']\n", + "['comes']\n", + "['not']\n", + "['through']\n", + "['bars', 'and']\n", + "['wires', '', 'And']\n", + "['he']\n", + "['to']\n", + "['whom']\n", + "['worshipping']\n", + "['is']\n", + "['a']\n", + "['window', 'to']\n", + "['open']\n", + "['but']\n", + "['also']\n", + "['to']\n", + "['shut']\n", + "['has']\n", + "['not']\n", + "['yet', 'visited']\n", + "['the']\n", + "['house']\n", + "['of']\n", + "['his']\n", + "['soul']\n", + "['whose', 'windows']\n", + "['are']\n", + "['from']\n", + "['dawn']\n", + "['to']\n", + "['dawn', '', '', '', 'Your']\n", + "['daily']\n", + "['life']\n", + "['is']\n", + "['your']\n", + "['temple']\n", + "['and']\n", + "['your', 'religion', '', 'Whenever']\n", + "['you']\n", + "['enter']\n", + "['into']\n", + "['it']\n", + "['take']\n", + "['with']\n", + "['you', 'your']\n", + "['all', '', 'Take']\n", + "['the']\n", + "['plough']\n", + "['and']\n", + "['the']\n", + "['forge']\n", + "['and']\n", + "['the', 'mallet']\n", + "['and']\n", + "['the']\n", + "['lute', '', 'The']\n", + "['things']\n", + "['you']\n", + "['have']\n", + "['fashioned']\n", + "['in', 'necessity']\n", + "['or']\n", + "['for']\n", + "['delight', '', 'For']\n", + "['in']\n", + "['revery']\n", + "['you']\n", + "['cannot']\n", + "['rise']\n", + "['above']\n", + "['your', 'achievements']\n", + "['nor']\n", + "['fall']\n", + "['lower']\n", + "['than']\n", + "['your', 'failures', '', 'And']\n", + "['take']\n", + "['with']\n", + "['you']\n", + "['all']\n", + "['men']\n", + "['For']\n", + "['in', 'adoration']\n", + "['you']\n", + "['cannot']\n", + "['fly']\n", + "['higher']\n", + "['than', 'their']\n", + "['hopes']\n", + "['nor']\n", + "['humble']\n", + "['yourself']\n", + "['lower', 'than']\n", + "['their']\n", + "['despair', '', '', '', 'And']\n", + "['if']\n", + "['you']\n", + "['would']\n", + "['know']\n", + "['God']\n", + "['be']\n", + "['not', 'therefore']\n", + "['a']\n", + "['solver']\n", + "['of']\n", + "['riddles', '', 'Rather']\n", + "['look']\n", + "['about']\n", + "['you']\n", + "['and']\n", + "['you']\n", + "['shall']\n", + "['see', 'Him']\n", + "['playing']\n", + "['with']\n", + "['your']\n", + "['children', '', 'And']\n", + "['look']\n", + "['into']\n", + "['space']\n", + "['you']\n", + "['shall']\n", + "['see']\n", + "['Him', 'walking']\n", + "['in']\n", + "['the']\n", + "['cloud']\n", + "['outstretching']\n", + "['His', 'arms']\n", + "['in']\n", + "['the']\n", + "['lightning']\n", + "['and']\n", + "['descending']\n", + "['in', 'rain', '', 'You']\n", + "['shall']\n", + "['see']\n", + "['Him']\n", + "['smiling']\n", + "['in']\n", + "['flowers', 'then']\n", + "['rising']\n", + "['and']\n", + "['waving']\n", + "['His']\n", + "['hands']\n", + "['in', 'trees', '']\n", + "['', '', 'Then']\n", + "['Almitra']\n", + "['spoke']\n", + "['saying']\n", + "['We']\n", + "['would', 'ask']\n", + "['now']\n", + "['of']\n", + "['Death', '', 'And']\n", + "['he']\n", + "['said', '', 'You']\n", + "['would']\n", + "['know']\n", + "['the']\n", + "['secret']\n", + "['of']\n", + "['death', '', 'But']\n", + "['how']\n", + "['shall']\n", + "['you']\n", + "['find']\n", + "['it']\n", + "['unless']\n", + "['you', 'seek']\n", + "['it']\n", + "['in']\n", + "['the']\n", + "['heart']\n", + "['of']\n", + "['life', '', 'The']\n", + "['owl']\n", + "['whose']\n", + "['nightbound']\n", + "['eyes']\n", + "['are']\n", + "['blind', 'unto']\n", + "['the']\n", + "['day']\n", + "['cannot']\n", + "['unveil']\n", + "['the']\n", + "['mystery', 'of']\n", + "['light', '', 'If']\n", + "['you']\n", + "['would']\n", + "['indeed']\n", + "['behold']\n", + "['the']\n", + "['spirit', 'of']\n", + "['death']\n", + "['open']\n", + "['your']\n", + "['heart']\n", + "['wide']\n", + "['unto']\n", + "['the', 'body']\n", + "['of']\n", + "['life', '', 'For']\n", + "['life']\n", + "['and']\n", + "['death']\n", + "['are']\n", + "['one']\n", + "['even']\n", + "['as']\n", + "['the', 'river']\n", + "['and']\n", + "['the']\n", + "['sea']\n", + "['are']\n", + "['one', '', 'In']\n", + "['the']\n", + "['depth']\n", + "['of']\n", + "['your']\n", + "['hopes']\n", + "['and']\n", + "['desires', 'lies']\n", + "['your']\n", + "['silent']\n", + "['knowledge']\n", + "['of']\n", + "['the', 'beyond', '', 'And']\n", + "['like']\n", + "['seeds']\n", + "['dreaming']\n", + "['beneath']\n", + "['the']\n", + "['snow', 'your']\n", + "['heart']\n", + "['dreams']\n", + "['of']\n", + "['spring', '', 'Trust']\n", + "['the']\n", + "['dreams']\n", + "['for']\n", + "['in']\n", + "['them']\n", + "['is']\n", + "['hidden', 'the']\n", + "['gate']\n", + "['to']\n", + "['eternity']\n", + "['Your']\n", + "['fear', 'of']\n", + "['death']\n", + "['is']\n", + "['but']\n", + "['the']\n", + "['trembling']\n", + "['of']\n", + "['the', 'shepherd']\n", + "['when']\n", + "['he']\n", + "['stands']\n", + "['before']\n", + "['the']\n", + "['king', 'whose']\n", + "['hand']\n", + "['is']\n", + "['to']\n", + "['be']\n", + "['laid']\n", + "['upon']\n", + "['him']\n", + "['in', 'honour', '', 'Is']\n", + "['the']\n", + "['shepherd']\n", + "['not']\n", + "['joyful']\n", + "['beneath']\n", + "['his', 'trembling']\n", + "['that']\n", + "['he']\n", + "['shall']\n", + "['wear']\n", + "['the']\n", + "['mark', 'of']\n", + "['the']\n", + "['king', '', 'Yet']\n", + "['is']\n", + "['he']\n", + "['not']\n", + "['more']\n", + "['mindful']\n", + "['of']\n", + "['his', 'trembling', '', '', '', 'For']\n", + "['what']\n", + "['is']\n", + "['it']\n", + "['to']\n", + "['die']\n", + "['but']\n", + "['to']\n", + "['stand']\n", + "['naked', 'in']\n", + "['the']\n", + "['wind']\n", + "['and']\n", + "['to']\n", + "['melt']\n", + "['into']\n", + "['the']\n", + "['sun', '', 'And']\n", + "['what']\n", + "['is']\n", + "['it']\n", + "['to']\n", + "['cease']\n", + "['breathing']\n", + "['but', 'to']\n", + "['free']\n", + "['the']\n", + "['breath']\n", + "['from']\n", + "['its']\n", + "['restless', 'tides']\n", + "['that']\n", + "['it']\n", + "['may']\n", + "['rise']\n", + "['and']\n", + "['expand']\n", + "['and', 'seek']\n", + "['God']\n", + "['unencumbered', '', 'Only']\n", + "['when']\n", + "['you']\n", + "['drink']\n", + "['from']\n", + "['the']\n", + "['river']\n", + "['of', 'silence']\n", + "['shall']\n", + "['you']\n", + "['indeed']\n", + "['sing', '', 'And']\n", + "['when']\n", + "['you']\n", + "['have']\n", + "['reached']\n", + "['the']\n", + "['mountain', 'top']\n", + "['then']\n", + "['you']\n", + "['shall']\n", + "['begin']\n", + "['to']\n", + "['climb', '', 'And']\n", + "['when']\n", + "['the']\n", + "['earth']\n", + "['shall']\n", + "['claim']\n", + "['your', 'limbs']\n", + "['then']\n", + "['shall']\n", + "['you']\n", + "['truly']\n", + "['dance', 'And']\n", + "['now']\n", + "['it']\n", + "['was']\n", + "['evening', '', 'And']\n", + "['Almitra']\n", + "['the']\n", + "['seeress']\n", + "['said']\n", + "['Blessed']\n", + "['be', 'this']\n", + "['day']\n", + "['and']\n", + "['this']\n", + "['place']\n", + "['and']\n", + "['your']\n", + "['spirit', 'that']\n", + "['has']\n", + "['spoken', '', 'And']\n", + "['he']\n", + "['answered']\n", + "['Was']\n", + "['it']\n", + "['I']\n", + "['who']\n", + "['spoke']\n", + "['Was', 'I']\n", + "['not']\n", + "['also']\n", + "['a']\n", + "['listener', '', '', '', 'Then']\n", + "['he']\n", + "['descended']\n", + "['the']\n", + "['steps']\n", + "['of']\n", + "['the', 'Temple']\n", + "['and']\n", + "['all']\n", + "['the']\n", + "['people']\n", + "['followed']\n", + "['him', 'And']\n", + "['he']\n", + "['reached']\n", + "['his']\n", + "['ship']\n", + "['and']\n", + "['stood']\n", + "['upon', 'the']\n", + "['deck', '', 'And']\n", + "['facing']\n", + "['the']\n", + "['people']\n", + "['again']\n", + "['he']\n", + "['raised', 'his']\n", + "['voice']\n", + "['and']\n", + "['said', '', 'People']\n", + "['of']\n", + "['Orphalese']\n", + "['the']\n", + "['wind']\n", + "['bids']\n", + "['me', 'leave']\n", + "['you', '', 'Less']\n", + "['hasty']\n", + "['am']\n", + "['I']\n", + "['than']\n", + "['the']\n", + "['wind']\n", + "['yet']\n", + "['I', 'must']\n", + "['go', '', 'We']\n", + "['wanderers']\n", + "['ever']\n", + "['seeking']\n", + "['the']\n", + "['lonelier', 'way']\n", + "['begin']\n", + "['no']\n", + "['day']\n", + "['where']\n", + "['we']\n", + "['have']\n", + "['ended', 'another']\n", + "['day']\n", + "['and']\n", + "['no']\n", + "['sunrise']\n", + "['finds']\n", + "['us', 'where']\n", + "['sunset']\n", + "['left']\n", + "['us']\n", + "['Even']\n", + "['while']\n", + "['the', 'earth']\n", + "['sleeps']\n", + "['we']\n", + "['travel', '', 'We']\n", + "['are']\n", + "['the']\n", + "['seeds']\n", + "['of']\n", + "['the']\n", + "['tenacious', 'plant']\n", + "['and']\n", + "['it']\n", + "['is']\n", + "['in']\n", + "['our']\n", + "['ripeness']\n", + "['and']\n", + "['our', 'fullness']\n", + "['of']\n", + "['heart']\n", + "['that']\n", + "['we']\n", + "['are']\n", + "['given']\n", + "['to', 'the']\n", + "['wind']\n", + "['and']\n", + "['are']\n", + "['scattered', '', '', '', 'Brief']\n", + "['were']\n", + "['my']\n", + "['days']\n", + "['among']\n", + "['you']\n", + "['and', 'briefer']\n", + "['still']\n", + "['the']\n", + "['words']\n", + "['I']\n", + "['have']\n", + "['spoken', '', 'But']\n", + "['should']\n", + "['my']\n", + "['voice']\n", + "['fade']\n", + "['in']\n", + "['your']\n", + "['ears', 'and']\n", + "['my']\n", + "['love']\n", + "['vanish']\n", + "['in']\n", + "['your']\n", + "['memory']\n", + "['then', 'I']\n", + "['will']\n", + "['come']\n", + "['again', '', 'And']\n", + "['with']\n", + "['a']\n", + "['richer']\n", + "['heart']\n", + "['and']\n", + "['lips']\n", + "['more', 'yielding']\n", + "['to']\n", + "['the']\n", + "['spirit']\n", + "['will']\n", + "['I']\n", + "['speak', '', 'Yea']\n", + "['I']\n", + "['shall']\n", + "['return']\n", + "['with']\n", + "['the']\n", + "['tide', '', 'And']\n", + "['though']\n", + "['death']\n", + "['may']\n", + "['hide']\n", + "['me']\n", + "['and']\n", + "['the', 'greater']\n", + "['silence']\n", + "['enfold']\n", + "['me']\n", + "['yet']\n", + "['again', 'will']\n", + "['I']\n", + "['seek']\n", + "['your']\n", + "['understanding', '', 'And']\n", + "['not']\n", + "['in']\n", + "['vain']\n", + "['will']\n", + "['I']\n", + "['seek', '', 'If']\n", + "['aught']\n", + "['I']\n", + "['have']\n", + "['said']\n", + "['is']\n", + "['truth']\n", + "['that', 'truth']\n", + "['shall']\n", + "['reveal']\n", + "['itself']\n", + "['in']\n", + "['a']\n", + "['clearer', 'voice']\n", + "['and']\n", + "['in']\n", + "['words']\n", + "['more']\n", + "['kin']\n", + "['to']\n", + "['your', 'thoughts', '', 'I']\n", + "['go']\n", + "['with']\n", + "['the']\n", + "['wind']\n", + "['people']\n", + "['of', 'Orphalese']\n", + "['but']\n", + "['not']\n", + "['down']\n", + "['into']\n", + "['emptiness', 'And']\n", + "['if']\n", + "['this']\n", + "['day']\n", + "['is']\n", + "['not']\n", + "['a']\n", + "['fulfilment', 'of']\n", + "['your']\n", + "['needs']\n", + "['and']\n", + "['my']\n", + "['love']\n", + "['then']\n", + "['let']\n", + "['it', 'be']\n", + "['a']\n", + "['promise']\n", + "['till']\n", + "['another']\n", + "['day', '', 'Mans']\n", + "['needs']\n", + "['change']\n", + "['but']\n", + "['not']\n", + "['his']\n", + "['love', 'nor']\n", + "['his']\n", + "['desire']\n", + "['that']\n", + "['his']\n", + "['love']\n", + "['should', 'satisfy']\n", + "['his']\n", + "['needs', '', 'Know']\n", + "['therefore']\n", + "['that']\n", + "['from']\n", + "['the']\n", + "['greater', 'silence']\n", + "['I']\n", + "['shall']\n", + "['return', '', 'The']\n", + "['mist']\n", + "['that']\n", + "['drifts']\n", + "['away']\n", + "['at']\n", + "['dawn', 'leaving']\n", + "['but']\n", + "['dew']\n", + "['in']\n", + "['the']\n", + "['fields']\n", + "['shall', 'rise']\n", + "['and']\n", + "['gather']\n", + "['into']\n", + "['a']\n", + "['cloud']\n", + "['and']\n", + "['then', 'fall']\n", + "['down']\n", + "['in']\n", + "['rain', '', 'And']\n", + "['not']\n", + "['unlike']\n", + "['the']\n", + "['mist']\n", + "['have']\n", + "['I']\n", + "['been', '', 'In']\n", + "['the']\n", + "['stillness']\n", + "['of']\n", + "['the']\n", + "['night']\n", + "['I']\n", + "['have', 'walked']\n", + "['in']\n", + "['your']\n", + "['streets']\n", + "['and']\n", + "['my']\n", + "['spirit', 'has']\n", + "['entered']\n", + "['your']\n", + "['houses', '', 'And']\n", + "['your']\n", + "['heartbeats']\n", + "['were']\n", + "['in']\n", + "['my']\n", + "['heart', 'and']\n", + "['your']\n", + "['breath']\n", + "['was']\n", + "['upon']\n", + "['my']\n", + "['face']\n", + "['and']\n", + "['I', 'knew']\n", + "['you']\n", + "['all', '', 'Ay']\n", + "['I']\n", + "['knew']\n", + "['your']\n", + "['joy']\n", + "['and']\n", + "['your']\n", + "['pain', 'and']\n", + "['in']\n", + "['your']\n", + "['sleep']\n", + "['your']\n", + "['dreams']\n", + "['were']\n", + "['my', 'dreams', '', 'And']\n", + "['oftentimes']\n", + "['I']\n", + "['was']\n", + "['among']\n", + "['you']\n", + "['a']\n", + "['lake', 'among']\n", + "['the']\n", + "['mountains', '', 'I']\n", + "['mirrored']\n", + "['the']\n", + "['summits']\n", + "['in']\n", + "['you']\n", + "['and']\n", + "['the', 'bending']\n", + "['slopes']\n", + "['and']\n", + "['even']\n", + "['the', 'passing']\n", + "['flocks']\n", + "['of']\n", + "['your']\n", + "['thoughts']\n", + "['and']\n", + "['your', 'desires', '', 'And']\n", + "['to']\n", + "['my']\n", + "['silence']\n", + "['came']\n", + "['the']\n", + "['laughter', 'of']\n", + "['your']\n", + "['children']\n", + "['in']\n", + "['streams']\n", + "['and']\n", + "['the', 'longing']\n", + "['of']\n", + "['your']\n", + "['youths']\n", + "['in']\n", + "['rivers', '', 'And']\n", + "['when']\n", + "['they']\n", + "['reached']\n", + "['my']\n", + "['depth']\n", + "['the', 'streams']\n", + "['and']\n", + "['the']\n", + "['rivers']\n", + "['ceased']\n", + "['not']\n", + "['yet']\n", + "['to', 'sing', '', 'Illustration']\n", + "['', '', 'But']\n", + "['sweeter']\n", + "['still']\n", + "['than']\n", + "['laughter']\n", + "['and', 'greater']\n", + "['than']\n", + "['longing']\n", + "['came']\n", + "['to']\n", + "['me', '', 'It']\n", + "['was']\n", + "['the']\n", + "['boundless']\n", + "['in']\n", + "['you', '', 'The']\n", + "['vast']\n", + "['man']\n", + "['in']\n", + "['whom']\n", + "['you']\n", + "['are']\n", + "['all']\n", + "['but', 'cells']\n", + "['and']\n", + "['sinews', '', 'He']\n", + "['in']\n", + "['whose']\n", + "['chant']\n", + "['all']\n", + "['your']\n", + "['singing']\n", + "['is', 'but']\n", + "['a']\n", + "['soundless']\n", + "['throbbing', '', 'It']\n", + "['is']\n", + "['in']\n", + "['the']\n", + "['vast']\n", + "['man']\n", + "['that']\n", + "['you']\n", + "['are']\n", + "['vast', '', 'And']\n", + "['in']\n", + "['beholding']\n", + "['him']\n", + "['that']\n", + "['I']\n", + "['beheld']\n", + "['you', 'and']\n", + "['loved']\n", + "['you', '', 'For']\n", + "['what']\n", + "['distances']\n", + "['can']\n", + "['love']\n", + "['reach']\n", + "['that', 'are']\n", + "['not']\n", + "['in']\n", + "['that']\n", + "['vast']\n", + "['sphere', '', 'What']\n", + "['visions']\n", + "['what']\n", + "['expectations']\n", + "['and']\n", + "['what', 'presumptions']\n", + "['can']\n", + "['outsoar']\n", + "['that']\n", + "['flight', '', 'Like']\n", + "['a']\n", + "['giant']\n", + "['oak']\n", + "['tree']\n", + "['covered']\n", + "['with']\n", + "['apple', 'blossoms']\n", + "['is']\n", + "['the']\n", + "['vast']\n", + "['man']\n", + "['in']\n", + "['you']\n", + "['His', 'might']\n", + "['binds']\n", + "['you']\n", + "['to']\n", + "['the']\n", + "['earth']\n", + "['his', 'fragrance']\n", + "['lifts']\n", + "['you']\n", + "['into']\n", + "['space']\n", + "['and']\n", + "['in', 'his']\n", + "['durability']\n", + "['you']\n", + "['are']\n", + "['deathless', '', '', '', 'You']\n", + "['have']\n", + "['been']\n", + "['told']\n", + "['that']\n", + "['even']\n", + "['like']\n", + "['a', 'chain']\n", + "['you']\n", + "['are']\n", + "['as']\n", + "['weak']\n", + "['as']\n", + "['your']\n", + "['weakest', 'link', '', 'This']\n", + "['is']\n", + "['but']\n", + "['half']\n", + "['the']\n", + "['truth']\n", + "['You']\n", + "['are']\n", + "['also', 'as']\n", + "['strong']\n", + "['as']\n", + "['your']\n", + "['strongest']\n", + "['link', '', 'To']\n", + "['measure']\n", + "['you']\n", + "['by']\n", + "['your']\n", + "['smallest']\n", + "['deed', 'is']\n", + "['to']\n", + "['reckon']\n", + "['the']\n", + "['power']\n", + "['of']\n", + "['ocean']\n", + "['by']\n", + "['the', 'frailty']\n", + "['of']\n", + "['its']\n", + "['foam', '', 'To']\n", + "['judge']\n", + "['you']\n", + "['by']\n", + "['your']\n", + "['failures']\n", + "['is']\n", + "['to', 'cast']\n", + "['blame']\n", + "['upon']\n", + "['the']\n", + "['seasons']\n", + "['for']\n", + "['their', 'inconstancy', '', 'Ay']\n", + "['you']\n", + "['are']\n", + "['like']\n", + "['an']\n", + "['ocean', '', 'And']\n", + "['though']\n", + "['heavygrounded']\n", + "['ships']\n", + "['await', 'the']\n", + "['tide']\n", + "['upon']\n", + "['your']\n", + "['shores']\n", + "['yet']\n", + "['even', 'like']\n", + "['an']\n", + "['ocean']\n", + "['you']\n", + "['cannot']\n", + "['hasten']\n", + "['your', 'tides', '', 'And']\n", + "['like']\n", + "['the']\n", + "['seasons']\n", + "['you']\n", + "['are']\n", + "['also', '', 'And']\n", + "['though']\n", + "['in']\n", + "['your']\n", + "['winter']\n", + "['you']\n", + "['deny']\n", + "['your', 'spring', '', 'Yet']\n", + "['spring']\n", + "['reposing']\n", + "['within']\n", + "['you']\n", + "['smiles', 'in']\n", + "['her']\n", + "['drowsiness']\n", + "['and']\n", + "['is']\n", + "['not']\n", + "['offended', 'Think']\n", + "['not']\n", + "['I']\n", + "['say']\n", + "['these']\n", + "['things']\n", + "['in', 'order']\n", + "['that']\n", + "['you']\n", + "['may']\n", + "['say']\n", + "['the']\n", + "['one']\n", + "['to']\n", + "['the', 'other']\n", + "['He']\n", + "['praised']\n", + "['us']\n", + "['well']\n", + "['He']\n", + "['saw']\n", + "['but', 'the']\n", + "['good']\n", + "['in']\n", + "['us', '', 'I']\n", + "['only']\n", + "['speak']\n", + "['to']\n", + "['you']\n", + "['in']\n", + "['words']\n", + "['of']\n", + "['that', 'which']\n", + "['you']\n", + "['yourselves']\n", + "['know']\n", + "['in']\n", + "['thought', '', 'And']\n", + "['what']\n", + "['is']\n", + "['word']\n", + "['knowledge']\n", + "['but']\n", + "['a']\n", + "['shadow', 'of']\n", + "['wordless']\n", + "['knowledge', '', 'Your']\n", + "['thoughts']\n", + "['and']\n", + "['my']\n", + "['words']\n", + "['are']\n", + "['waves', 'from']\n", + "['a']\n", + "['sealed']\n", + "['memory']\n", + "['that']\n", + "['keeps']\n", + "['records', 'of']\n", + "['our']\n", + "['yesterdays', '', 'And']\n", + "['of']\n", + "['the']\n", + "['ancient']\n", + "['days']\n", + "['when']\n", + "['the']\n", + "['earth', 'knew']\n", + "['not']\n", + "['us']\n", + "['nor']\n", + "['herself', '', 'And']\n", + "['of']\n", + "['nights']\n", + "['when']\n", + "['earth']\n", + "['was']\n", + "['upwrought', 'with']\n", + "['confusion', '', '', '', 'Wise']\n", + "['men']\n", + "['have']\n", + "['come']\n", + "['to']\n", + "['you']\n", + "['to']\n", + "['give']\n", + "['you', 'of']\n", + "['their']\n", + "['wisdom']\n", + "['I']\n", + "['came']\n", + "['to']\n", + "['take']\n", + "['of']\n", + "['your', 'wisdom', '', 'And']\n", + "['behold']\n", + "['I']\n", + "['have']\n", + "['found']\n", + "['that']\n", + "['which']\n", + "['is', 'greater']\n", + "['than']\n", + "['wisdom', '', 'It']\n", + "['is']\n", + "['a']\n", + "['flame']\n", + "['spirit']\n", + "['in']\n", + "['you']\n", + "['ever', 'gathering']\n", + "['more']\n", + "['of']\n", + "['itself', '', 'While']\n", + "['you']\n", + "['heedless']\n", + "['of']\n", + "['its']\n", + "['expansion', 'bewail']\n", + "['the']\n", + "['withering']\n", + "['of']\n", + "['your']\n", + "['days', 'It']\n", + "['is']\n", + "['life']\n", + "['in']\n", + "['quest']\n", + "['of']\n", + "['life']\n", + "['in', 'bodies']\n", + "['that']\n", + "['fear']\n", + "['the']\n", + "['grave', '', '', '', 'There']\n", + "['are']\n", + "['no']\n", + "['graves']\n", + "['here', '', 'These']\n", + "['mountains']\n", + "['and']\n", + "['plains']\n", + "['are']\n", + "['a']\n", + "['cradle', 'and']\n", + "['a']\n", + "['steppingstone', '', 'Whenever']\n", + "['you']\n", + "['pass']\n", + "['by']\n", + "['the']\n", + "['field']\n", + "['where', 'you']\n", + "['have']\n", + "['laid']\n", + "['your']\n", + "['ancestors']\n", + "['look']\n", + "['well', 'thereupon']\n", + "['and']\n", + "['you']\n", + "['shall']\n", + "['see']\n", + "['yourselves', 'and']\n", + "['your']\n", + "['children']\n", + "['dancing']\n", + "['hand']\n", + "['in']\n", + "['hand', '', 'Verily']\n", + "['you']\n", + "['often']\n", + "['make']\n", + "['merry']\n", + "['without', 'knowing', '', 'Others']\n", + "['have']\n", + "['come']\n", + "['to']\n", + "['you']\n", + "['to']\n", + "['whom']\n", + "['for', 'golden']\n", + "['promises']\n", + "['made']\n", + "['unto']\n", + "['your']\n", + "['faith', 'you']\n", + "['have']\n", + "['given']\n", + "['but']\n", + "['riches']\n", + "['and']\n", + "['power']\n", + "['and', 'glory', '', 'Less']\n", + "['than']\n", + "['a']\n", + "['promise']\n", + "['have']\n", + "['I']\n", + "['given']\n", + "['and', 'yet']\n", + "['more']\n", + "['generous']\n", + "['have']\n", + "['you']\n", + "['been']\n", + "['to']\n", + "['me', '', 'You']\n", + "['have']\n", + "['given']\n", + "['me']\n", + "['my']\n", + "['deeper']\n", + "['thirsting', 'after']\n", + "['life', '', 'Surely']\n", + "['there']\n", + "['is']\n", + "['no']\n", + "['greater']\n", + "['gift']\n", + "['to']\n", + "['a']\n", + "['man', 'than']\n", + "['that']\n", + "['which']\n", + "['turns']\n", + "['all']\n", + "['his']\n", + "['aims', 'into']\n", + "['parching']\n", + "['lips']\n", + "['and']\n", + "['all']\n", + "['life']\n", + "['into']\n", + "['a', 'fountain', '', 'Illustration']\n", + "['', '', 'And']\n", + "['in']\n", + "['this']\n", + "['lies']\n", + "['my']\n", + "['honour']\n", + "['and']\n", + "['my', 'reward', '', 'That']\n", + "['whenever']\n", + "['I']\n", + "['come']\n", + "['to']\n", + "['the']\n", + "['fountain', 'to']\n", + "['drink']\n", + "['I']\n", + "['find']\n", + "['the']\n", + "['living']\n", + "['water']\n", + "['itself', 'thirsty', '', 'And']\n", + "['it']\n", + "['drinks']\n", + "['me']\n", + "['while']\n", + "['I']\n", + "['drink']\n", + "['it', '', '', '', 'Some']\n", + "['of']\n", + "['you']\n", + "['have']\n", + "['deemed']\n", + "['me']\n", + "['proud']\n", + "['and', 'overshy']\n", + "['to']\n", + "['receive']\n", + "['gifts', '', 'Too']\n", + "['proud']\n", + "['indeed']\n", + "['am']\n", + "['I']\n", + "['to']\n", + "['receive']\n", + "['wages', 'but']\n", + "['not']\n", + "['gifts', '', 'And']\n", + "['though']\n", + "['I']\n", + "['have']\n", + "['eaten']\n", + "['berries']\n", + "['among', 'the']\n", + "['hills']\n", + "['when']\n", + "['you']\n", + "['would']\n", + "['have']\n", + "['had']\n", + "['me']\n", + "['sit', 'at']\n", + "['your']\n", + "['board', '', 'And']\n", + "['slept']\n", + "['in']\n", + "['the']\n", + "['portico']\n", + "['of']\n", + "['the']\n", + "['temple', 'when']\n", + "['you']\n", + "['would']\n", + "['gladly']\n", + "['have']\n", + "['sheltered']\n", + "['me', '', 'Yet']\n", + "['was']\n", + "['it']\n", + "['not']\n", + "['your']\n", + "['loving']\n", + "['mindfulness', 'of']\n", + "['my']\n", + "['days']\n", + "['and']\n", + "['my']\n", + "['nights']\n", + "['that']\n", + "['made']\n", + "['food', 'sweet']\n", + "['to']\n", + "['my']\n", + "['mouth']\n", + "['and']\n", + "['girdled']\n", + "['my']\n", + "['sleep', 'with']\n", + "['visions', '', 'For']\n", + "['this']\n", + "['I']\n", + "['bless']\n", + "['you']\n", + "['most', '', 'You']\n", + "['give']\n", + "['much']\n", + "['and']\n", + "['know']\n", + "['not']\n", + "['that']\n", + "['you']\n", + "['give', 'at']\n", + "['all']\n", + "['Verily']\n", + "['the']\n", + "['kindness']\n", + "['that', 'gazes']\n", + "['upon']\n", + "['itself']\n", + "['in']\n", + "['a']\n", + "['mirror']\n", + "['turns']\n", + "['to', 'stone', '', 'And']\n", + "['a']\n", + "['good']\n", + "['deed']\n", + "['that']\n", + "['calls']\n", + "['itself']\n", + "['by', 'tender']\n", + "['names']\n", + "['becomes']\n", + "['the']\n", + "['parent']\n", + "['to']\n", + "['a', 'curse', '', '', '', 'And']\n", + "['some']\n", + "['of']\n", + "['you']\n", + "['have']\n", + "['called']\n", + "['me']\n", + "['aloof', 'and']\n", + "['drunk']\n", + "['with']\n", + "['my']\n", + "['own']\n", + "['aloneness', '', 'And']\n", + "['you']\n", + "['have']\n", + "['said']\n", + "['He']\n", + "['holds']\n", + "['council', 'with']\n", + "['the']\n", + "['trees']\n", + "['of']\n", + "['the']\n", + "['forest']\n", + "['but']\n", + "['not', 'with']\n", + "['men', '', 'He']\n", + "['sits']\n", + "['alone']\n", + "['on']\n", + "['hilltops']\n", + "['and']\n", + "['looks', 'down']\n", + "['upon']\n", + "['our']\n", + "['city', '', 'True']\n", + "['it']\n", + "['is']\n", + "['that']\n", + "['I']\n", + "['have']\n", + "['climbed']\n", + "['the']\n", + "['hills', 'and']\n", + "['walked']\n", + "['in']\n", + "['remote']\n", + "['places', '', 'How']\n", + "['could']\n", + "['I']\n", + "['have']\n", + "['seen']\n", + "['you']\n", + "['save']\n", + "['from']\n", + "['a', 'great']\n", + "['height']\n", + "['or']\n", + "['a']\n", + "['great']\n", + "['distance', '', 'How']\n", + "['can']\n", + "['one']\n", + "['be']\n", + "['indeed']\n", + "['near']\n", + "['unless']\n", + "['he']\n", + "['be', 'tar', '', 'And']\n", + "['others']\n", + "['among']\n", + "['you']\n", + "['called']\n", + "['unto']\n", + "['me']\n", + "['not', 'in']\n", + "['words']\n", + "['and']\n", + "['they']\n", + "['said', '', 'Stranger']\n", + "['stranger']\n", + "['lover']\n", + "['of', 'unreachable']\n", + "['heights']\n", + "['why']\n", + "['dwell']\n", + "['you']\n", + "['among', 'the']\n", + "['summits']\n", + "['where']\n", + "['eagles']\n", + "['build', 'their']\n", + "['nests']\n", + "['Why']\n", + "['seek']\n", + "['you']\n", + "['the', 'unattainable', '', 'What']\n", + "['storms']\n", + "['would']\n", + "['you']\n", + "['trap']\n", + "['in']\n", + "['your']\n", + "['net', '', 'And']\n", + "['what']\n", + "['vaporous']\n", + "['birds']\n", + "['do']\n", + "['you']\n", + "['hunt']\n", + "['in', 'the']\n", + "['sky', '', 'Come']\n", + "['and']\n", + "['be']\n", + "['one']\n", + "['of']\n", + "['us', '', 'Descend']\n", + "['and']\n", + "['appease']\n", + "['your']\n", + "['hunger']\n", + "['with']\n", + "['our', 'bread']\n", + "['and']\n", + "['quench']\n", + "['your']\n", + "['thirst']\n", + "['with']\n", + "['our', 'wine', '', 'In']\n", + "['the']\n", + "['solitude']\n", + "['of']\n", + "['their']\n", + "['souls']\n", + "['they']\n", + "['said', 'these']\n", + "['things', '', 'But']\n", + "['were']\n", + "['their']\n", + "['solitude']\n", + "['deeper']\n", + "['they', 'would']\n", + "['have']\n", + "['known']\n", + "['that']\n", + "['I']\n", + "['sought']\n", + "['but']\n", + "['the', 'secret']\n", + "['of']\n", + "['your']\n", + "['joy']\n", + "['and']\n", + "['your']\n", + "['pain', '', 'And']\n", + "['I']\n", + "['hunted']\n", + "['only']\n", + "['your']\n", + "['larger']\n", + "['selves', 'that']\n", + "['walk']\n", + "['the']\n", + "['sky', '', '', '', 'But']\n", + "['the']\n", + "['hunter']\n", + "['was']\n", + "['also']\n", + "['the']\n", + "['hunted', '', 'For']\n", + "['many']\n", + "['of']\n", + "['my']\n", + "['arrows']\n", + "['left']\n", + "['my']\n", + "['bow']\n", + "['only', 'to']\n", + "['seek']\n", + "['my']\n", + "['own']\n", + "['breast', '', 'And']\n", + "['the']\n", + "['flier']\n", + "['was']\n", + "['also']\n", + "['the']\n", + "['creeper', '', 'For']\n", + "['when']\n", + "['my']\n", + "['wings']\n", + "['were']\n", + "['spread']\n", + "['in']\n", + "['the', 'sun']\n", + "['their']\n", + "['shadow']\n", + "['upon']\n", + "['the']\n", + "['earth']\n", + "['was']\n", + "['a', 'turtle', '', 'And']\n", + "['I']\n", + "['the']\n", + "['believer']\n", + "['was']\n", + "['also']\n", + "['the']\n", + "['doubter', 'For']\n", + "['often']\n", + "['have']\n", + "['I']\n", + "['put']\n", + "['my']\n", + "['finger', 'in']\n", + "['my']\n", + "['own']\n", + "['wound']\n", + "['that']\n", + "['I']\n", + "['might']\n", + "['have']\n", + "['the', 'greater']\n", + "['belief']\n", + "['in']\n", + "['you']\n", + "['and']\n", + "['the']\n", + "['greater', 'knowledge']\n", + "['of']\n", + "['you', '', '', '', 'And']\n", + "['it']\n", + "['is']\n", + "['with']\n", + "['this']\n", + "['belief']\n", + "['and']\n", + "['this', 'knowledge']\n", + "['that']\n", + "['I']\n", + "['say', '', 'You']\n", + "['are']\n", + "['not']\n", + "['enclosed']\n", + "['within']\n", + "['your']\n", + "['bodies', 'nor']\n", + "['confined']\n", + "['to']\n", + "['houses']\n", + "['or']\n", + "['fields', '', 'That']\n", + "['which']\n", + "['is']\n", + "['you']\n", + "['dwells']\n", + "['above']\n", + "['the', 'mountain']\n", + "['and']\n", + "['roves']\n", + "['with']\n", + "['the']\n", + "['wind', '', 'It']\n", + "['is']\n", + "['not']\n", + "['a']\n", + "['thing']\n", + "['that']\n", + "['crawls']\n", + "['into', 'the']\n", + "['sun']\n", + "['for']\n", + "['warmth']\n", + "['or']\n", + "['digs']\n", + "['holes']\n", + "['into', 'darkness']\n", + "['for']\n", + "['safety', '', 'But']\n", + "['a']\n", + "['thing']\n", + "['free']\n", + "['a']\n", + "['spirit']\n", + "['that']\n", + "['envelops', 'the']\n", + "['earth']\n", + "['and']\n", + "['moves']\n", + "['in']\n", + "['the']\n", + "['ether', '', 'If']\n", + "['these']\n", + "['be']\n", + "['vague']\n", + "['words']\n", + "['then']\n", + "['seek']\n", + "['not', 'to']\n", + "['clear']\n", + "['them', '', 'Vague']\n", + "['and']\n", + "['nebulous']\n", + "['is']\n", + "['the']\n", + "['beginning']\n", + "['of', 'all']\n", + "['things']\n", + "['but']\n", + "['not']\n", + "['their']\n", + "['end', '', 'And']\n", + "['I']\n", + "['fain']\n", + "['would']\n", + "['have']\n", + "['you']\n", + "['remember']\n", + "['me']\n", + "['as', 'a']\n", + "['beginning', '', 'Life']\n", + "['and']\n", + "['all']\n", + "['that']\n", + "['lives']\n", + "['is']\n", + "['conceived', 'in']\n", + "['the']\n", + "['mist']\n", + "['and']\n", + "['not']\n", + "['in']\n", + "['the']\n", + "['crystal', 'And']\n", + "['who']\n", + "['knows']\n", + "['but']\n", + "['a']\n", + "['crystal']\n", + "['is']\n", + "['mist', 'in']\n", + "['decay', '', '', '', 'This']\n", + "['would']\n", + "['I']\n", + "['have']\n", + "['you']\n", + "['remember']\n", + "['in', 'remembering']\n", + "['me', '', 'That']\n", + "['which']\n", + "['seems']\n", + "['most']\n", + "['feeble']\n", + "['and', 'bewildered']\n", + "['in']\n", + "['you']\n", + "['is']\n", + "['the']\n", + "['strongest']\n", + "['and', 'most']\n", + "['determined', '', 'Is']\n", + "['it']\n", + "['not']\n", + "['your']\n", + "['breath']\n", + "['that']\n", + "['has']\n", + "['erected', 'and']\n", + "['hardened']\n", + "['the']\n", + "['structure']\n", + "['of']\n", + "['your', 'bones', '', 'And']\n", + "['is']\n", + "['it']\n", + "['not']\n", + "['a']\n", + "['dream']\n", + "['which']\n", + "['none']\n", + "['of']\n", + "['you', 'remember']\n", + "['having']\n", + "['dreamt']\n", + "['that']\n", + "['builded', 'your']\n", + "['city']\n", + "['and']\n", + "['fashioned']\n", + "['all']\n", + "['there']\n", + "['is']\n", + "['in', 'it', '', 'Could']\n", + "['you']\n", + "['but']\n", + "['see']\n", + "['the']\n", + "['tides']\n", + "['of']\n", + "['that', 'breath']\n", + "['you']\n", + "['would']\n", + "['cease']\n", + "['to']\n", + "['see']\n", + "['all']\n", + "['else', '', 'And']\n", + "['if']\n", + "['you']\n", + "['could']\n", + "['hear']\n", + "['the']\n", + "['whispering']\n", + "['of', 'the']\n", + "['dream']\n", + "['you']\n", + "['would']\n", + "['hear']\n", + "['no']\n", + "['other']\n", + "['sound', '', 'But']\n", + "['you']\n", + "['do']\n", + "['not']\n", + "['see']\n", + "['nor']\n", + "['do']\n", + "['you']\n", + "['hear']\n", + "['and', 'it']\n", + "['is']\n", + "['well', '', 'The']\n", + "['veil']\n", + "['that']\n", + "['clouds']\n", + "['your']\n", + "['eyes']\n", + "['shall']\n", + "['be', 'lifted']\n", + "['by']\n", + "['the']\n", + "['hands']\n", + "['that']\n", + "['wove']\n", + "['it', '', 'And']\n", + "['the']\n", + "['clay']\n", + "['that']\n", + "['fills']\n", + "['your']\n", + "['ears']\n", + "['shall', 'be']\n", + "['pierced']\n", + "['by']\n", + "['those']\n", + "['fingers']\n", + "['that']\n", + "['kneaded', 'it']\n", + "['And']\n", + "['you']\n", + "['shall']\n", + "['see', '', 'And']\n", + "['you']\n", + "['shall']\n", + "['hear', '', 'Yet']\n", + "['you']\n", + "['shall']\n", + "['not']\n", + "['deplore']\n", + "['having']\n", + "['known', 'blindness']\n", + "['nor']\n", + "['regret']\n", + "['having']\n", + "['been']\n", + "['deaf', '', 'For']\n", + "['in']\n", + "['that']\n", + "['day']\n", + "['you']\n", + "['shall']\n", + "['know']\n", + "['the', 'hidden']\n", + "['purposes']\n", + "['in']\n", + "['all']\n", + "['things', '', 'And']\n", + "['you']\n", + "['shall']\n", + "['bless']\n", + "['darkness']\n", + "['as']\n", + "['you', 'would']\n", + "['bless']\n", + "['light', '', 'After']\n", + "['saying']\n", + "['these']\n", + "['things']\n", + "['he']\n", + "['looked', 'about']\n", + "['him']\n", + "['and']\n", + "['he']\n", + "['saw']\n", + "['the']\n", + "['pilot']\n", + "['of']\n", + "['his', 'ship']\n", + "['standing']\n", + "['by']\n", + "['the']\n", + "['helm']\n", + "['and']\n", + "['gazing', 'now']\n", + "['at']\n", + "['the']\n", + "['full']\n", + "['sails']\n", + "['and']\n", + "['now']\n", + "['at']\n", + "['the', 'distance', '', 'And']\n", + "['he']\n", + "['said', '', 'Patient']\n", + "['over']\n", + "['patient']\n", + "['is']\n", + "['the']\n", + "['captain']\n", + "['of', 'my']\n", + "['ship', '', 'The']\n", + "['wind']\n", + "['blows']\n", + "['and']\n", + "['restless']\n", + "['are']\n", + "['the', 'sails', '', 'Even']\n", + "['the']\n", + "['rudder']\n", + "['begs']\n", + "['direction', '', 'Yet']\n", + "['quietly']\n", + "['my']\n", + "['captain']\n", + "['awaits']\n", + "['my', 'silence', '', 'And']\n", + "['these']\n", + "['my']\n", + "['mariners']\n", + "['who']\n", + "['have']\n", + "['heard', 'the']\n", + "['choir']\n", + "['of']\n", + "['the']\n", + "['greater']\n", + "['sea']\n", + "['they']\n", + "['too', 'have']\n", + "['heard']\n", + "['me']\n", + "['patiently']\n", + "['Now']\n", + "['they', 'shall']\n", + "['wait']\n", + "['no']\n", + "['longer', '', 'I']\n", + "['am']\n", + "['ready', '', 'The']\n", + "['stream']\n", + "['has']\n", + "['reached']\n", + "['the']\n", + "['sea']\n", + "['and', 'once']\n", + "['more']\n", + "['the']\n", + "['great']\n", + "['mother']\n", + "['holds']\n", + "['her']\n", + "['son', 'against']\n", + "['her']\n", + "['breast', '', '', '', 'Fare']\n", + "['you']\n", + "['well']\n", + "['people']\n", + "['of']\n", + "['Orphalese', '', 'This']\n", + "['day']\n", + "['has']\n", + "['ended', '', 'It']\n", + "['is']\n", + "['closing']\n", + "['upon']\n", + "['us']\n", + "['even']\n", + "['as']\n", + "['the', 'waterlily']\n", + "['upon']\n", + "['its']\n", + "['own']\n", + "['tomorrow', '', 'What']\n", + "['was']\n", + "['given']\n", + "['us']\n", + "['here']\n", + "['we']\n", + "['shall']\n", + "['keep', '', 'And']\n", + "['if']\n", + "['it']\n", + "['suffices']\n", + "['not']\n", + "['then']\n", + "['again']\n", + "['must', 'we']\n", + "['come']\n", + "['together']\n", + "['and']\n", + "['together']\n", + "['stretch', 'our']\n", + "['hands']\n", + "['unto']\n", + "['the']\n", + "['giver', '', 'Forget']\n", + "['not']\n", + "['that']\n", + "['I']\n", + "['shall']\n", + "['come']\n", + "['back']\n", + "['to', 'you', '', 'A']\n", + "['little']\n", + "['while']\n", + "['and']\n", + "['my']\n", + "['longing']\n", + "['shall', 'gather']\n", + "['dust']\n", + "['and']\n", + "['foam']\n", + "['for']\n", + "['another']\n", + "['body', '', 'A']\n", + "['little']\n", + "['while']\n", + "['a']\n", + "['moment']\n", + "['of']\n", + "['rest']\n", + "['upon', 'the']\n", + "['wind']\n", + "['and']\n", + "['another']\n", + "['woman']\n", + "['shall']\n", + "['bear', 'me', '', 'Farewell']\n", + "['to']\n", + "['you']\n", + "['and']\n", + "['the']\n", + "['youth']\n", + "['I']\n", + "['have', 'spent']\n", + "['with']\n", + "['you', '', 'It']\n", + "['was']\n", + "['but']\n", + "['yesterday']\n", + "['we']\n", + "['met']\n", + "['in']\n", + "['a', 'dream']\n", + "['You']\n", + "['have']\n", + "['sung']\n", + "['to']\n", + "['me']\n", + "['in']\n", + "['my', 'aloneness']\n", + "['and']\n", + "['I']\n", + "['of']\n", + "['your']\n", + "['longings']\n", + "['have', 'built']\n", + "['a']\n", + "['tower']\n", + "['in']\n", + "['the']\n", + "['sky', '', 'But']\n", + "['now']\n", + "['our']\n", + "['sleep']\n", + "['has']\n", + "['fled']\n", + "['and']\n", + "['our']\n", + "['dream', 'is']\n", + "['over']\n", + "['and']\n", + "['it']\n", + "['is']\n", + "['no']\n", + "['longer']\n", + "['dawn', '', 'The']\n", + "['noontide']\n", + "['is']\n", + "['upon']\n", + "['us']\n", + "['and']\n", + "['our']\n", + "['half', 'waking']\n", + "['has']\n", + "['turned']\n", + "['to']\n", + "['fuller']\n", + "['day']\n", + "['and']\n", + "['we', 'must']\n", + "['part', '', 'If']\n", + "['in']\n", + "['the']\n", + "['twilight']\n", + "['of']\n", + "['memory']\n", + "['we']\n", + "['should', 'meet']\n", + "['once']\n", + "['more']\n", + "['we']\n", + "['shall']\n", + "['speak']\n", + "['again', 'together']\n", + "['and']\n", + "['you']\n", + "['shall']\n", + "['sing']\n", + "['to']\n", + "['me']\n", + "['a', 'deeper']\n", + "['song', '', 'And']\n", + "['if']\n", + "['our']\n", + "['hands']\n", + "['should']\n", + "['meet']\n", + "['in']\n", + "['another', 'dream']\n", + "['we']\n", + "['shall']\n", + "['build']\n", + "['another']\n", + "['tower']\n", + "['in', 'the']\n", + "['sky', '', '', '', 'So']\n", + "['saying']\n", + "['he']\n", + "['made']\n", + "['a']\n", + "['signal']\n", + "['to']\n", + "['the', 'seamen']\n", + "['and']\n", + "['straightway']\n", + "['they']\n", + "['weighed', 'anchor']\n", + "['and']\n", + "['cast']\n", + "['the']\n", + "['ship']\n", + "['loose']\n", + "['from']\n", + "['its', 'moorings']\n", + "['and']\n", + "['they']\n", + "['moved']\n", + "['eastward', '', 'And']\n", + "['a']\n", + "['cry']\n", + "['came']\n", + "['from']\n", + "['the']\n", + "['people']\n", + "['as']\n", + "['from']\n", + "['a', 'single']\n", + "['heart']\n", + "['and']\n", + "['it']\n", + "['rose']\n", + "['into']\n", + "['the']\n", + "['dusk', 'and']\n", + "['was']\n", + "['carried']\n", + "['out']\n", + "['over']\n", + "['the']\n", + "['sea']\n", + "['like']\n", + "['a', 'great']\n", + "['trumpeting', '', 'Only']\n", + "['Almitra']\n", + "['was']\n", + "['silent']\n", + "['gazing']\n", + "['after', 'the']\n", + "['ship']\n", + "['until']\n", + "['it']\n", + "['had']\n", + "['vanished']\n", + "['into', 'the']\n", + "['mist', '', 'And']\n", + "['when']\n", + "['all']\n", + "['the']\n", + "['people']\n", + "['were']\n", + "['dispersed', 'she']\n", + "['still']\n", + "['stood']\n", + "['alone']\n", + "['upon']\n", + "['the']\n", + "['seawall', 'remembering']\n", + "['in']\n", + "['her']\n", + "['heart']\n", + "['his']\n", + "['saying', '', 'A']\n", + "['little']\n", + "['while']\n", + "['a']\n", + "['moment']\n", + "['of']\n", + "['rest']\n", + "['upon', 'the']\n", + "['wind']\n", + "['and']\n", + "['another']\n", + "['woman']\n", + "['shall']\n", + "['bear', 'me', '', 'Illustration']\n", + "['', '', '', '', '', '', '', '', '', 'End']\n", + "['of']\n", + "['the']\n", + "['Project']\n", + "['Gutenberg']\n", + "['EBook']\n", + "['of']\n", + "['The']\n", + "['Prophet']\n", + "['by']\n", + "['Kahlil']\n", + "['Gibran', '']\n", + "['END']\n", + "['OF']\n", + "['THIS']\n", + "['PROJECT']\n", + "['GUTENBERG']\n", + "['EBOOK']\n", + "['THE']\n", + "['PROPHET']\n", + "['', '']\n", + "['This']\n", + "['file']\n", + "['should']\n", + "['be']\n", + "['named']\n", + "['txt']\n", + "['or']\n", + "['zip']\n", + "['', 'This']\n", + "['and']\n", + "['all']\n", + "['associated']\n", + "['files']\n", + "['of']\n", + "['various']\n", + "['formats']\n", + "['will']\n", + "['be']\n", + "['found']\n", + "['in']\n", + "[]\n", + "[]\n", + "[]\n", + "[]\n", + "[]\n", + "[]\n", + "[]\n", + "['httpwwwgutenbergorg', '', 'Produced']\n", + "['by']\n", + "['David']\n", + "['Widger']\n", + "['from']\n", + "['page']\n", + "['images']\n", + "['generously', 'provided']\n", + "['by']\n", + "['the']\n", + "['Internet']\n", + "['Archive', '', '', 'Updated']\n", + "['editions']\n", + "['will']\n", + "['replace']\n", + "['the']\n", + "['previous']\n", + "['onethe']\n", + "['old']\n", + "['editions']\n", + "['will', 'be']\n", + "['renamed', '', 'Creating']\n", + "['the']\n", + "['works']\n", + "['from']\n", + "['print']\n", + "['editions']\n", + "['not']\n", + "['protected']\n", + "['by']\n", + "['US']\n", + "['copyright', 'law']\n", + "['means']\n", + "['that']\n", + "['no']\n", + "['one']\n", + "['owns']\n", + "['a']\n", + "['United']\n", + "['States']\n", + "['copyright']\n", + "['in']\n", + "['these']\n", + "['works', 'so']\n", + "['the']\n", + "['Foundation']\n", + "['and']\n", + "['you']\n", + "['can']\n", + "['copy']\n", + "['and']\n", + "['distribute']\n", + "['it']\n", + "['in']\n", + "['the']\n", + "['United', 'States']\n", + "['without']\n", + "['permission']\n", + "['and']\n", + "['without']\n", + "['paying']\n", + "['copyright', 'royalties']\n", + "['Special']\n", + "['rules']\n", + "['set']\n", + "['forth']\n", + "['in']\n", + "['the']\n", + "['General']\n", + "['Terms']\n", + "['of']\n", + "['Use']\n", + "['part', 'of']\n", + "['this']\n", + "['license']\n", + "['apply']\n", + "['to']\n", + "['copying']\n", + "['and']\n", + "['distributing']\n", + "['Project', 'Gutenbergtm']\n", + "['electronic']\n", + "['works']\n", + "['to']\n", + "['protect']\n", + "['the']\n", + "['PROJECT']\n", + "['GUTENBERGtm', 'concept']\n", + "['and']\n", + "['trademark']\n", + "['Project']\n", + "['Gutenberg']\n", + "['is']\n", + "['a']\n", + "['registered']\n", + "['trademark', 'and']\n", + "['may']\n", + "['not']\n", + "['be']\n", + "['used']\n", + "['if']\n", + "['you']\n", + "['charge']\n", + "['for']\n", + "['the']\n", + "['eBooks']\n", + "['unless']\n", + "['you']\n", + "['receive', 'specific']\n", + "['permission']\n", + "['If']\n", + "['you']\n", + "['do']\n", + "['not']\n", + "['charge']\n", + "['anything']\n", + "['for']\n", + "['copies']\n", + "['of']\n", + "['this', 'eBook']\n", + "['complying']\n", + "['with']\n", + "['the']\n", + "['rules']\n", + "['is']\n", + "['very']\n", + "['easy']\n", + "['You']\n", + "['may']\n", + "['use']\n", + "['this']\n", + "['eBook', 'for']\n", + "['nearly']\n", + "['any']\n", + "['purpose']\n", + "['such']\n", + "['as']\n", + "['creation']\n", + "['of']\n", + "['derivative']\n", + "['works']\n", + "['reports', 'performances']\n", + "['and']\n", + "['research']\n", + "['They']\n", + "['may']\n", + "['be']\n", + "['modified']\n", + "['and']\n", + "['printed']\n", + "['and']\n", + "['given', 'awayyou']\n", + "['may']\n", + "['do']\n", + "['practically']\n", + "['ANYTHING']\n", + "['in']\n", + "['the']\n", + "['United']\n", + "['States']\n", + "['with']\n", + "['eBooks', 'not']\n", + "['protected']\n", + "['by']\n", + "['US']\n", + "['copyright']\n", + "['law']\n", + "['Redistribution']\n", + "['is']\n", + "['subject']\n", + "['to']\n", + "['the', 'trademark']\n", + "['license']\n", + "['especially']\n", + "['commercial']\n", + "['redistribution', '', 'START']\n", + "['FULL']\n", + "['LICENSE', '', 'THE']\n", + "['FULL']\n", + "['PROJECT']\n", + "['GUTENBERG']\n", + "['LICENSE', 'PLEASE']\n", + "['READ']\n", + "['THIS']\n", + "['BEFORE']\n", + "['YOU']\n", + "['DISTRIBUTE']\n", + "['OR']\n", + "['USE']\n", + "['THIS']\n", + "['WORK', '', 'To']\n", + "['protect']\n", + "['the']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['mission']\n", + "['of']\n", + "['promoting']\n", + "['the']\n", + "['free', 'distribution']\n", + "['of']\n", + "['electronic']\n", + "['works']\n", + "['by']\n", + "['using']\n", + "['or']\n", + "['distributing']\n", + "['this']\n", + "['work', 'or']\n", + "['any']\n", + "['other']\n", + "['work']\n", + "['associated']\n", + "['in']\n", + "['any']\n", + "['way']\n", + "['with']\n", + "['the']\n", + "['phrase']\n", + "['Project', 'Gutenberg']\n", + "['you']\n", + "['agree']\n", + "['to']\n", + "['comply']\n", + "['with']\n", + "['all']\n", + "['the']\n", + "['terms']\n", + "['of']\n", + "['the']\n", + "['Full', 'Project']\n", + "['Gutenbergtm']\n", + "['License']\n", + "['available']\n", + "['with']\n", + "['this']\n", + "['file']\n", + "['or']\n", + "['online']\n", + "['at', 'wwwgutenbergorglicense', '', 'Section']\n", + "[]\n", + "['General']\n", + "['Terms']\n", + "['of']\n", + "['Use']\n", + "['and']\n", + "['Redistributing']\n", + "['Project', 'Gutenbergtm']\n", + "['electronic']\n", + "['works', '', 'A']\n", + "['By']\n", + "['reading']\n", + "['or']\n", + "['using']\n", + "['any']\n", + "['part']\n", + "['of']\n", + "['this']\n", + "['Project']\n", + "['Gutenbergtm', 'electronic']\n", + "['work']\n", + "['you']\n", + "['indicate']\n", + "['that']\n", + "['you']\n", + "['have']\n", + "['read']\n", + "['understand']\n", + "['agree']\n", + "['to', 'and']\n", + "['accept']\n", + "['all']\n", + "['the']\n", + "['terms']\n", + "['of']\n", + "['this']\n", + "['license']\n", + "['and']\n", + "['intellectual']\n", + "['property', 'trademarkcopyright']\n", + "['agreement']\n", + "['If']\n", + "['you']\n", + "['do']\n", + "['not']\n", + "['agree']\n", + "['to']\n", + "['abide']\n", + "['by']\n", + "['all', 'the']\n", + "['terms']\n", + "['of']\n", + "['this']\n", + "['agreement']\n", + "['you']\n", + "['must']\n", + "['cease']\n", + "['using']\n", + "['and']\n", + "['return']\n", + "['or', 'destroy']\n", + "['all']\n", + "['copies']\n", + "['of']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['electronic']\n", + "['works']\n", + "['in']\n", + "['your', 'possession']\n", + "['If']\n", + "['you']\n", + "['paid']\n", + "['a']\n", + "['fee']\n", + "['for']\n", + "['obtaining']\n", + "['a']\n", + "['copy']\n", + "['of']\n", + "['or']\n", + "['access']\n", + "['to']\n", + "['a', 'Project']\n", + "['Gutenbergtm']\n", + "['electronic']\n", + "['work']\n", + "['and']\n", + "['you']\n", + "['do']\n", + "['not']\n", + "['agree']\n", + "['to']\n", + "['be']\n", + "['bound', 'by']\n", + "['the']\n", + "['terms']\n", + "['of']\n", + "['this']\n", + "['agreement']\n", + "['you']\n", + "['may']\n", + "['obtain']\n", + "['a']\n", + "['refund']\n", + "['from']\n", + "['the', 'person']\n", + "['or']\n", + "['entity']\n", + "['to']\n", + "['whom']\n", + "['you']\n", + "['paid']\n", + "['the']\n", + "['fee']\n", + "['as']\n", + "['set']\n", + "['forth']\n", + "['in']\n", + "['paragraph', 'E', '', 'B']\n", + "['Project']\n", + "['Gutenberg']\n", + "['is']\n", + "['a']\n", + "['registered']\n", + "['trademark']\n", + "['It']\n", + "['may']\n", + "['only']\n", + "['be', 'used']\n", + "['on']\n", + "['or']\n", + "['associated']\n", + "['in']\n", + "['any']\n", + "['way']\n", + "['with']\n", + "['an']\n", + "['electronic']\n", + "['work']\n", + "['by']\n", + "['people']\n", + "['who', 'agree']\n", + "['to']\n", + "['be']\n", + "['bound']\n", + "['by']\n", + "['the']\n", + "['terms']\n", + "['of']\n", + "['this']\n", + "['agreement']\n", + "['There']\n", + "['are']\n", + "['a']\n", + "['few', 'things']\n", + "['that']\n", + "['you']\n", + "['can']\n", + "['do']\n", + "['with']\n", + "['most']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['electronic']\n", + "['works', 'even']\n", + "['without']\n", + "['complying']\n", + "['with']\n", + "['the']\n", + "['full']\n", + "['terms']\n", + "['of']\n", + "['this']\n", + "['agreement']\n", + "['See', 'paragraph']\n", + "['C']\n", + "['below']\n", + "['There']\n", + "['are']\n", + "['a']\n", + "['lot']\n", + "['of']\n", + "['things']\n", + "['you']\n", + "['can']\n", + "['do']\n", + "['with']\n", + "['Project', 'Gutenbergtm']\n", + "['electronic']\n", + "['works']\n", + "['if']\n", + "['you']\n", + "['follow']\n", + "['the']\n", + "['terms']\n", + "['of']\n", + "['this', 'agreement']\n", + "['and']\n", + "['help']\n", + "['preserve']\n", + "['free']\n", + "['future']\n", + "['access']\n", + "['to']\n", + "['Project']\n", + "['Gutenbergtm', 'electronic']\n", + "['works']\n", + "['See']\n", + "['paragraph']\n", + "['E']\n", + "['below', '', 'C']\n", + "['The']\n", + "['Project']\n", + "['Gutenberg']\n", + "['Literary']\n", + "['Archive']\n", + "['Foundation']\n", + "['the', 'Foundation']\n", + "['or']\n", + "['PGLAF']\n", + "['owns']\n", + "['a']\n", + "['compilation']\n", + "['copyright']\n", + "['in']\n", + "['the']\n", + "['collection', 'of']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['electronic']\n", + "['works']\n", + "['Nearly']\n", + "['all']\n", + "['the']\n", + "['individual', 'works']\n", + "['in']\n", + "['the']\n", + "['collection']\n", + "['are']\n", + "['in']\n", + "['the']\n", + "['public']\n", + "['domain']\n", + "['in']\n", + "['the']\n", + "['United', 'States']\n", + "['If']\n", + "['an']\n", + "['individual']\n", + "['work']\n", + "['is']\n", + "['unprotected']\n", + "['by']\n", + "['copyright']\n", + "['law']\n", + "['in']\n", + "['the', 'United']\n", + "['States']\n", + "['and']\n", + "['you']\n", + "['are']\n", + "['located']\n", + "['in']\n", + "['the']\n", + "['United']\n", + "['States']\n", + "['we']\n", + "['do']\n", + "['not', 'claim']\n", + "['a']\n", + "['right']\n", + "['to']\n", + "['prevent']\n", + "['you']\n", + "['from']\n", + "['copying']\n", + "['distributing']\n", + "['performing', 'displaying']\n", + "['or']\n", + "['creating']\n", + "['derivative']\n", + "['works']\n", + "['based']\n", + "['on']\n", + "['the']\n", + "['work']\n", + "['as']\n", + "['long']\n", + "['as', 'all']\n", + "['references']\n", + "['to']\n", + "['Project']\n", + "['Gutenberg']\n", + "['are']\n", + "['removed']\n", + "['Of']\n", + "['course']\n", + "['we']\n", + "['hope', 'that']\n", + "['you']\n", + "['will']\n", + "['support']\n", + "['the']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['mission']\n", + "['of']\n", + "['promoting', 'free']\n", + "['access']\n", + "['to']\n", + "['electronic']\n", + "['works']\n", + "['by']\n", + "['freely']\n", + "['sharing']\n", + "['Project']\n", + "['Gutenbergtm', 'works']\n", + "['in']\n", + "['compliance']\n", + "['with']\n", + "['the']\n", + "['terms']\n", + "['of']\n", + "['this']\n", + "['agreement']\n", + "['for']\n", + "['keeping']\n", + "['the', 'Project']\n", + "['Gutenbergtm']\n", + "['name']\n", + "['associated']\n", + "['with']\n", + "['the']\n", + "['work']\n", + "['You']\n", + "['can']\n", + "['easily', 'comply']\n", + "['with']\n", + "['the']\n", + "['terms']\n", + "['of']\n", + "['this']\n", + "['agreement']\n", + "['by']\n", + "['keeping']\n", + "['this']\n", + "['work']\n", + "['in']\n", + "['the', 'same']\n", + "['format']\n", + "['with']\n", + "['its']\n", + "['attached']\n", + "['full']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['License']\n", + "['when', 'you']\n", + "['share']\n", + "['it']\n", + "['without']\n", + "['charge']\n", + "['with']\n", + "['others', '', 'D']\n", + "['The']\n", + "['copyright']\n", + "['laws']\n", + "['of']\n", + "['the']\n", + "['place']\n", + "['where']\n", + "['you']\n", + "['are']\n", + "['located']\n", + "['also']\n", + "['govern', 'what']\n", + "['you']\n", + "['can']\n", + "['do']\n", + "['with']\n", + "['this']\n", + "['work']\n", + "['Copyright']\n", + "['laws']\n", + "['in']\n", + "['most']\n", + "['countries']\n", + "['are', 'in']\n", + "['a']\n", + "['constant']\n", + "['state']\n", + "['of']\n", + "['change']\n", + "['If']\n", + "['you']\n", + "['are']\n", + "['outside']\n", + "['the']\n", + "['United']\n", + "['States', 'check']\n", + "['the']\n", + "['laws']\n", + "['of']\n", + "['your']\n", + "['country']\n", + "['in']\n", + "['addition']\n", + "['to']\n", + "['the']\n", + "['terms']\n", + "['of']\n", + "['this', 'agreement']\n", + "['before']\n", + "['downloading']\n", + "['copying']\n", + "['displaying']\n", + "['performing', 'distributing']\n", + "['or']\n", + "['creating']\n", + "['derivative']\n", + "['works']\n", + "['based']\n", + "['on']\n", + "['this']\n", + "['work']\n", + "['or']\n", + "['any', 'other']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['work']\n", + "['The']\n", + "['Foundation']\n", + "['makes']\n", + "['no', 'representations']\n", + "['concerning']\n", + "['the']\n", + "['copyright']\n", + "['status']\n", + "['of']\n", + "['any']\n", + "['work']\n", + "['in']\n", + "['any', 'country']\n", + "['outside']\n", + "['the']\n", + "['United']\n", + "['States', '', 'E']\n", + "['Unless']\n", + "['you']\n", + "['have']\n", + "['removed']\n", + "['all']\n", + "['references']\n", + "['to']\n", + "['Project']\n", + "['Gutenberg', '', 'E']\n", + "['The']\n", + "['following']\n", + "['sentence']\n", + "['with']\n", + "['active']\n", + "['links']\n", + "['to']\n", + "['or']\n", + "['other', 'immediate']\n", + "['access']\n", + "['to']\n", + "['the']\n", + "['full']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['License']\n", + "['must']\n", + "['appear', 'prominently']\n", + "['whenever']\n", + "['any']\n", + "['copy']\n", + "['of']\n", + "['a']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['work']\n", + "['any']\n", + "['work', 'on']\n", + "['which']\n", + "['the']\n", + "['phrase']\n", + "['Project']\n", + "['Gutenberg']\n", + "['appears']\n", + "['or']\n", + "['with']\n", + "['which']\n", + "['the', 'phrase']\n", + "['Project']\n", + "['Gutenberg']\n", + "['is']\n", + "['associated']\n", + "['is']\n", + "['accessed']\n", + "['displayed', 'performed']\n", + "['viewed']\n", + "['copied']\n", + "['or']\n", + "['distributed', '']\n", + "[]\n", + "['This']\n", + "['eBook']\n", + "['is']\n", + "['for']\n", + "['the']\n", + "['use']\n", + "['of']\n", + "['anyone']\n", + "['anywhere']\n", + "['in']\n", + "['the']\n", + "['United']\n", + "['States']\n", + "['and']\n", + "[]\n", + "['most']\n", + "['other']\n", + "['parts']\n", + "['of']\n", + "['the']\n", + "['world']\n", + "['at']\n", + "['no']\n", + "['cost']\n", + "['and']\n", + "['with']\n", + "['almost']\n", + "['no']\n", + "[]\n", + "['restrictions']\n", + "['whatsoever']\n", + "['You']\n", + "['may']\n", + "['copy']\n", + "['it']\n", + "['give']\n", + "['it']\n", + "['away']\n", + "['or']\n", + "['reuse']\n", + "['it']\n", + "[]\n", + "['under']\n", + "['the']\n", + "['terms']\n", + "['of']\n", + "['the']\n", + "['Project']\n", + "['Gutenberg']\n", + "['License']\n", + "['included']\n", + "['with']\n", + "['this']\n", + "[]\n", + "['eBook']\n", + "['or']\n", + "['online']\n", + "['at']\n", + "['wwwgutenbergorg']\n", + "['If']\n", + "['you']\n", + "['are']\n", + "['not']\n", + "['located']\n", + "['in']\n", + "['the']\n", + "[]\n", + "['United']\n", + "['States']\n", + "['youll']\n", + "['have']\n", + "['to']\n", + "['check']\n", + "['the']\n", + "['laws']\n", + "['of']\n", + "['the']\n", + "['country']\n", + "['where']\n", + "['you']\n", + "[]\n", + "['are']\n", + "['located']\n", + "['before']\n", + "['using']\n", + "['this']\n", + "['ebook', '', 'E']\n", + "['If']\n", + "['an']\n", + "['individual']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['electronic']\n", + "['work']\n", + "['is', 'derived']\n", + "['from']\n", + "['texts']\n", + "['not']\n", + "['protected']\n", + "['by']\n", + "['US']\n", + "['copyright']\n", + "['law']\n", + "['does']\n", + "['not', 'contain']\n", + "['a']\n", + "['notice']\n", + "['indicating']\n", + "['that']\n", + "['it']\n", + "['is']\n", + "['posted']\n", + "['with']\n", + "['permission']\n", + "['of']\n", + "['the', 'copyright']\n", + "['holder']\n", + "['the']\n", + "['work']\n", + "['can']\n", + "['be']\n", + "['copied']\n", + "['and']\n", + "['distributed']\n", + "['to']\n", + "['anyone']\n", + "['in', 'the']\n", + "['United']\n", + "['States']\n", + "['without']\n", + "['paying']\n", + "['any']\n", + "['fees']\n", + "['or']\n", + "['charges']\n", + "['If']\n", + "['you']\n", + "['are', 'redistributing']\n", + "['or']\n", + "['providing']\n", + "['access']\n", + "['to']\n", + "['a']\n", + "['work']\n", + "['with']\n", + "['the']\n", + "['phrase']\n", + "['Project', 'Gutenberg']\n", + "['associated']\n", + "['with']\n", + "['or']\n", + "['appearing']\n", + "['on']\n", + "['the']\n", + "['work']\n", + "['you']\n", + "['must']\n", + "['comply', 'either']\n", + "['with']\n", + "['the']\n", + "['requirements']\n", + "['of']\n", + "['paragraphs']\n", + "['E']\n", + "['through']\n", + "['E']\n", + "['or', 'obtain']\n", + "['permission']\n", + "['for']\n", + "['the']\n", + "['use']\n", + "['of']\n", + "['the']\n", + "['work']\n", + "['and']\n", + "['the']\n", + "['Project']\n", + "['Gutenbergtm', 'trademark']\n", + "['as']\n", + "['set']\n", + "['forth']\n", + "['in']\n", + "['paragraphs']\n", + "['E']\n", + "['or']\n", + "['E', '', 'E']\n", + "['If']\n", + "['an']\n", + "['individual']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['electronic']\n", + "['work']\n", + "['is']\n", + "['posted', 'with']\n", + "['the']\n", + "['permission']\n", + "['of']\n", + "['the']\n", + "['copyright']\n", + "['holder']\n", + "['your']\n", + "['use']\n", + "['and']\n", + "['distribution', 'must']\n", + "['comply']\n", + "['with']\n", + "['both']\n", + "['paragraphs']\n", + "['E']\n", + "['through']\n", + "['E']\n", + "['and']\n", + "['any', 'additional']\n", + "['terms']\n", + "['imposed']\n", + "['by']\n", + "['the']\n", + "['copyright']\n", + "['holder']\n", + "['Additional']\n", + "['terms', 'will']\n", + "['be']\n", + "['linked']\n", + "['to']\n", + "['the']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['License']\n", + "['for']\n", + "['all']\n", + "['works', 'posted']\n", + "['with']\n", + "['the']\n", + "['permission']\n", + "['of']\n", + "['the']\n", + "['copyright']\n", + "['holder']\n", + "['found']\n", + "['at']\n", + "['the', 'beginning']\n", + "['of']\n", + "['this']\n", + "['work', '', 'E']\n", + "['Do']\n", + "['not']\n", + "['unlink']\n", + "['or']\n", + "['detach']\n", + "['or']\n", + "['remove']\n", + "['the']\n", + "['full']\n", + "['Project']\n", + "['Gutenbergtm', 'License']\n", + "['terms']\n", + "['from']\n", + "['this']\n", + "['work']\n", + "['or']\n", + "['any']\n", + "['files']\n", + "['containing']\n", + "['a']\n", + "['part']\n", + "['of']\n", + "['this', 'work']\n", + "['or']\n", + "['any']\n", + "['other']\n", + "['work']\n", + "['associated']\n", + "['with']\n", + "['Project']\n", + "['Gutenbergtm', '', 'E']\n", + "['Do']\n", + "['not']\n", + "['copy']\n", + "['display']\n", + "['perform']\n", + "['distribute']\n", + "['or']\n", + "['redistribute']\n", + "['this', 'electronic']\n", + "['work']\n", + "['or']\n", + "['any']\n", + "['part']\n", + "['of']\n", + "['this']\n", + "['electronic']\n", + "['work']\n", + "['without', 'prominently']\n", + "['displaying']\n", + "['the']\n", + "['sentence']\n", + "['set']\n", + "['forth']\n", + "['in']\n", + "['paragraph']\n", + "['E']\n", + "['with', 'active']\n", + "['links']\n", + "['or']\n", + "['immediate']\n", + "['access']\n", + "['to']\n", + "['the']\n", + "['full']\n", + "['terms']\n", + "['of']\n", + "['the']\n", + "['Project', 'Gutenbergtm']\n", + "['License', '', 'E']\n", + "['You']\n", + "['may']\n", + "['convert']\n", + "['to']\n", + "['and']\n", + "['distribute']\n", + "['this']\n", + "['work']\n", + "['in']\n", + "['any']\n", + "['binary', 'compressed']\n", + "['marked']\n", + "['up']\n", + "['nonproprietary']\n", + "['or']\n", + "['proprietary']\n", + "['form']\n", + "['including', 'any']\n", + "['word']\n", + "['processing']\n", + "['or']\n", + "['hypertext']\n", + "['form']\n", + "['However']\n", + "['if']\n", + "['you']\n", + "['provide']\n", + "['access', 'to']\n", + "['or']\n", + "['distribute']\n", + "['copies']\n", + "['of']\n", + "['a']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['work']\n", + "['in']\n", + "['a']\n", + "['format', 'other']\n", + "['than']\n", + "['Plain']\n", + "['Vanilla']\n", + "['ASCII']\n", + "['or']\n", + "['other']\n", + "['format']\n", + "['used']\n", + "['in']\n", + "['the']\n", + "['official', 'version']\n", + "['posted']\n", + "['on']\n", + "['the']\n", + "['official']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['web']\n", + "['site', 'wwwgutenbergorg']\n", + "['you']\n", + "['must']\n", + "['at']\n", + "['no']\n", + "['additional']\n", + "['cost']\n", + "['fee']\n", + "['or']\n", + "['expense', 'to']\n", + "['the']\n", + "['user']\n", + "['provide']\n", + "['a']\n", + "['copy']\n", + "['a']\n", + "['means']\n", + "['of']\n", + "['exporting']\n", + "['a']\n", + "['copy']\n", + "['or']\n", + "['a']\n", + "['means', 'of']\n", + "['obtaining']\n", + "['a']\n", + "['copy']\n", + "['upon']\n", + "['request']\n", + "['of']\n", + "['the']\n", + "['work']\n", + "['in']\n", + "['its']\n", + "['original']\n", + "['Plain', 'Vanilla']\n", + "['ASCII']\n", + "['or']\n", + "['other']\n", + "['form']\n", + "['Any']\n", + "['alternate']\n", + "['format']\n", + "['must']\n", + "['include']\n", + "['the', 'full']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['License']\n", + "['as']\n", + "['specified']\n", + "['in']\n", + "['paragraph']\n", + "['E', '', 'E']\n", + "['Do']\n", + "['not']\n", + "['charge']\n", + "['a']\n", + "['fee']\n", + "['for']\n", + "['access']\n", + "['to']\n", + "['viewing']\n", + "['displaying', 'performing']\n", + "['copying']\n", + "['or']\n", + "['distributing']\n", + "['any']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['works', 'unless']\n", + "['you']\n", + "['comply']\n", + "['with']\n", + "['paragraph']\n", + "['E']\n", + "['or']\n", + "['E', '', 'E']\n", + "['You']\n", + "['may']\n", + "['charge']\n", + "['a']\n", + "['reasonable']\n", + "['fee']\n", + "['for']\n", + "['copies']\n", + "['of']\n", + "['or']\n", + "['providing', 'access']\n", + "['to']\n", + "['or']\n", + "['distributing']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['electronic']\n", + "['works', 'provided']\n", + "['that', '']\n", + "['You']\n", + "['pay']\n", + "['a']\n", + "['royalty']\n", + "['fee']\n", + "['of']\n", + "[]\n", + "['of']\n", + "['the']\n", + "['gross']\n", + "['profits']\n", + "['you']\n", + "['derive']\n", + "['from']\n", + "[]\n", + "['the']\n", + "['use']\n", + "['of']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['works']\n", + "['calculated']\n", + "['using']\n", + "['the']\n", + "['method']\n", + "[]\n", + "['you']\n", + "['already']\n", + "['use']\n", + "['to']\n", + "['calculate']\n", + "['your']\n", + "['applicable']\n", + "['taxes']\n", + "['The']\n", + "['fee']\n", + "['is']\n", + "['owed']\n", + "[]\n", + "['to']\n", + "['the']\n", + "['owner']\n", + "['of']\n", + "['the']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['trademark']\n", + "['but']\n", + "['he']\n", + "['has']\n", + "[]\n", + "['agreed']\n", + "['to']\n", + "['donate']\n", + "['royalties']\n", + "['under']\n", + "['this']\n", + "['paragraph']\n", + "['to']\n", + "['the']\n", + "['Project']\n", + "[]\n", + "['Gutenberg']\n", + "['Literary']\n", + "['Archive']\n", + "['Foundation']\n", + "['Royalty']\n", + "['payments']\n", + "['must']\n", + "['be']\n", + "['paid']\n", + "[]\n", + "['within']\n", + "[]\n", + "['days']\n", + "['following']\n", + "['each']\n", + "['date']\n", + "['on']\n", + "['which']\n", + "['you']\n", + "['prepare']\n", + "['or']\n", + "['are']\n", + "[]\n", + "['legally']\n", + "['required']\n", + "['to']\n", + "['prepare']\n", + "['your']\n", + "['periodic']\n", + "['tax']\n", + "['returns']\n", + "['Royalty']\n", + "[]\n", + "['payments']\n", + "['should']\n", + "['be']\n", + "['clearly']\n", + "['marked']\n", + "['as']\n", + "['such']\n", + "['and']\n", + "['sent']\n", + "['to']\n", + "['the']\n", + "['Project']\n", + "[]\n", + "['Gutenberg']\n", + "['Literary']\n", + "['Archive']\n", + "['Foundation']\n", + "['at']\n", + "['the']\n", + "['address']\n", + "['specified']\n", + "['in']\n", + "[]\n", + "['Section']\n", + "[]\n", + "['Information']\n", + "['about']\n", + "['donations']\n", + "['to']\n", + "['the']\n", + "['Project']\n", + "['Gutenberg']\n", + "[]\n", + "['Literary']\n", + "['Archive']\n", + "['Foundation', '']\n", + "['You']\n", + "['provide']\n", + "['a']\n", + "['full']\n", + "['refund']\n", + "['of']\n", + "['any']\n", + "['money']\n", + "['paid']\n", + "['by']\n", + "['a']\n", + "['user']\n", + "['who']\n", + "['notifies']\n", + "[]\n", + "['you']\n", + "['in']\n", + "['writing']\n", + "['or']\n", + "['by']\n", + "['email']\n", + "['within']\n", + "[]\n", + "['days']\n", + "['of']\n", + "['receipt']\n", + "['that']\n", + "['she']\n", + "[]\n", + "['does']\n", + "['not']\n", + "['agree']\n", + "['to']\n", + "['the']\n", + "['terms']\n", + "['of']\n", + "['the']\n", + "['full']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "[]\n", + "['License']\n", + "['You']\n", + "['must']\n", + "['require']\n", + "['such']\n", + "['a']\n", + "['user']\n", + "['to']\n", + "['return']\n", + "['or']\n", + "['destroy']\n", + "['all']\n", + "[]\n", + "['copies']\n", + "['of']\n", + "['the']\n", + "['works']\n", + "['possessed']\n", + "['in']\n", + "['a']\n", + "['physical']\n", + "['medium']\n", + "['and']\n", + "['discontinue']\n", + "[]\n", + "['all']\n", + "['use']\n", + "['of']\n", + "['and']\n", + "['all']\n", + "['access']\n", + "['to']\n", + "['other']\n", + "['copies']\n", + "['of']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "[]\n", + "['works', '']\n", + "['You']\n", + "['provide']\n", + "['in']\n", + "['accordance']\n", + "['with']\n", + "['paragraph']\n", + "['F']\n", + "['a']\n", + "['full']\n", + "['refund']\n", + "['of']\n", + "[]\n", + "['any']\n", + "['money']\n", + "['paid']\n", + "['for']\n", + "['a']\n", + "['work']\n", + "['or']\n", + "['a']\n", + "['replacement']\n", + "['copy']\n", + "['if']\n", + "['a']\n", + "['defect']\n", + "['in']\n", + "['the']\n", + "[]\n", + "['electronic']\n", + "['work']\n", + "['is']\n", + "['discovered']\n", + "['and']\n", + "['reported']\n", + "['to']\n", + "['you']\n", + "['within']\n", + "[]\n", + "['days']\n", + "['of']\n", + "[]\n", + "['receipt']\n", + "['of']\n", + "['the']\n", + "['work', '']\n", + "['You']\n", + "['comply']\n", + "['with']\n", + "['all']\n", + "['other']\n", + "['terms']\n", + "['of']\n", + "['this']\n", + "['agreement']\n", + "['for']\n", + "['free']\n", + "[]\n", + "['distribution']\n", + "['of']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['works', '', 'E']\n", + "['If']\n", + "['you']\n", + "['wish']\n", + "['to']\n", + "['charge']\n", + "['a']\n", + "['fee']\n", + "['or']\n", + "['distribute']\n", + "['a']\n", + "['Project', 'Gutenbergtm']\n", + "['electronic']\n", + "['work']\n", + "['or']\n", + "['group']\n", + "['of']\n", + "['works']\n", + "['on']\n", + "['different']\n", + "['terms']\n", + "['than', 'are']\n", + "['set']\n", + "['forth']\n", + "['in']\n", + "['this']\n", + "['agreement']\n", + "['you']\n", + "['must']\n", + "['obtain']\n", + "['permission']\n", + "['in']\n", + "['writing', 'from']\n", + "['both']\n", + "['the']\n", + "['Project']\n", + "['Gutenberg']\n", + "['Literary']\n", + "['Archive']\n", + "['Foundation']\n", + "['and']\n", + "['The', 'Project']\n", + "['Gutenberg']\n", + "['Trademark']\n", + "['LLC']\n", + "['the']\n", + "['owner']\n", + "['of']\n", + "['the']\n", + "['Project']\n", + "['Gutenbergtm', 'trademark']\n", + "['Contact']\n", + "['the']\n", + "['Foundation']\n", + "['as']\n", + "['set']\n", + "['forth']\n", + "['in']\n", + "['Section']\n", + "[]\n", + "['below', '', 'F', '', 'F']\n", + "['Project']\n", + "['Gutenberg']\n", + "['volunteers']\n", + "['and']\n", + "['employees']\n", + "['expend']\n", + "['considerable', 'effort']\n", + "['to']\n", + "['identify']\n", + "['do']\n", + "['copyright']\n", + "['research']\n", + "['on']\n", + "['transcribe']\n", + "['and']\n", + "['proofread', 'works']\n", + "['not']\n", + "['protected']\n", + "['by']\n", + "['US']\n", + "['copyright']\n", + "['law']\n", + "['in']\n", + "['creating']\n", + "['the']\n", + "['Project', 'Gutenbergtm']\n", + "['collection']\n", + "['Despite']\n", + "['these']\n", + "['efforts']\n", + "['Project']\n", + "['Gutenbergtm', 'electronic']\n", + "['works']\n", + "['and']\n", + "['the']\n", + "['medium']\n", + "['on']\n", + "['which']\n", + "['they']\n", + "['may']\n", + "['be']\n", + "['stored']\n", + "['may', 'contain']\n", + "['Defects']\n", + "['such']\n", + "['as']\n", + "['but']\n", + "['not']\n", + "['limited']\n", + "['to']\n", + "['incomplete']\n", + "['inaccurate', 'or']\n", + "['corrupt']\n", + "['data']\n", + "['transcription']\n", + "['errors']\n", + "['a']\n", + "['copyright']\n", + "['or']\n", + "['other', 'intellectual']\n", + "['property']\n", + "['infringement']\n", + "['a']\n", + "['defective']\n", + "['or']\n", + "['damaged']\n", + "['disk']\n", + "['or', 'other']\n", + "['medium']\n", + "['a']\n", + "['computer']\n", + "['virus']\n", + "['or']\n", + "['computer']\n", + "['codes']\n", + "['that']\n", + "['damage']\n", + "['or', 'cannot']\n", + "['be']\n", + "['read']\n", + "['by']\n", + "['your']\n", + "['equipment', '', 'F']\n", + "['LIMITED']\n", + "['WARRANTY']\n", + "['DISCLAIMER']\n", + "['OF']\n", + "['DAMAGES']\n", + "[]\n", + "['Except']\n", + "['for']\n", + "['the']\n", + "['Right', 'of']\n", + "['Replacement']\n", + "['or']\n", + "['Refund']\n", + "['described']\n", + "['in']\n", + "['paragraph']\n", + "['F']\n", + "['the']\n", + "['Project', 'Gutenberg']\n", + "['Literary']\n", + "['Archive']\n", + "['Foundation']\n", + "['the']\n", + "['owner']\n", + "['of']\n", + "['the']\n", + "['Project', 'Gutenbergtm']\n", + "['trademark']\n", + "['and']\n", + "['any']\n", + "['other']\n", + "['party']\n", + "['distributing']\n", + "['a']\n", + "['Project', 'Gutenbergtm']\n", + "['electronic']\n", + "['work']\n", + "['under']\n", + "['this']\n", + "['agreement']\n", + "['disclaim']\n", + "['all', 'liability']\n", + "['to']\n", + "['you']\n", + "['for']\n", + "['damages']\n", + "['costs']\n", + "['and']\n", + "['expenses']\n", + "['including']\n", + "['legal', 'fees']\n", + "['YOU']\n", + "['AGREE']\n", + "['THAT']\n", + "['YOU']\n", + "['HAVE']\n", + "['NO']\n", + "['REMEDIES']\n", + "['FOR']\n", + "['NEGLIGENCE']\n", + "['STRICT', 'LIABILITY']\n", + "['BREACH']\n", + "['OF']\n", + "['WARRANTY']\n", + "['OR']\n", + "['BREACH']\n", + "['OF']\n", + "['CONTRACT']\n", + "['EXCEPT']\n", + "['THOSE', 'PROVIDED']\n", + "['IN']\n", + "['PARAGRAPH']\n", + "['F']\n", + "['YOU']\n", + "['AGREE']\n", + "['THAT']\n", + "['THE']\n", + "['FOUNDATION']\n", + "['THE', 'TRADEMARK']\n", + "['OWNER']\n", + "['AND']\n", + "['ANY']\n", + "['DISTRIBUTOR']\n", + "['UNDER']\n", + "['THIS']\n", + "['AGREEMENT']\n", + "['WILL']\n", + "['NOT']\n", + "['BE', 'LIABLE']\n", + "['TO']\n", + "['YOU']\n", + "['FOR']\n", + "['ACTUAL']\n", + "['DIRECT']\n", + "['INDIRECT']\n", + "['CONSEQUENTIAL']\n", + "['PUNITIVE']\n", + "['OR', 'INCIDENTAL']\n", + "['DAMAGES']\n", + "['EVEN']\n", + "['IF']\n", + "['YOU']\n", + "['GIVE']\n", + "['NOTICE']\n", + "['OF']\n", + "['THE']\n", + "['POSSIBILITY']\n", + "['OF']\n", + "['SUCH', 'DAMAGE', '', 'F']\n", + "['LIMITED']\n", + "['RIGHT']\n", + "['OF']\n", + "['REPLACEMENT']\n", + "['OR']\n", + "['REFUND']\n", + "[]\n", + "['If']\n", + "['you']\n", + "['discover']\n", + "['a', 'defect']\n", + "['in']\n", + "['this']\n", + "['electronic']\n", + "['work']\n", + "['within']\n", + "[]\n", + "['days']\n", + "['of']\n", + "['receiving']\n", + "['it']\n", + "['you']\n", + "['can', 'receive']\n", + "['a']\n", + "['refund']\n", + "['of']\n", + "['the']\n", + "['money']\n", + "['if']\n", + "['any']\n", + "['you']\n", + "['paid']\n", + "['for']\n", + "['it']\n", + "['by']\n", + "['sending']\n", + "['a', 'written']\n", + "['explanation']\n", + "['to']\n", + "['the']\n", + "['person']\n", + "['you']\n", + "['received']\n", + "['the']\n", + "['work']\n", + "['from']\n", + "['If']\n", + "['you', 'received']\n", + "['the']\n", + "['work']\n", + "['on']\n", + "['a']\n", + "['physical']\n", + "['medium']\n", + "['you']\n", + "['must']\n", + "['return']\n", + "['the']\n", + "['medium', 'with']\n", + "['your']\n", + "['written']\n", + "['explanation']\n", + "['The']\n", + "['person']\n", + "['or']\n", + "['entity']\n", + "['that']\n", + "['provided']\n", + "['you', 'with']\n", + "['the']\n", + "['defective']\n", + "['work']\n", + "['may']\n", + "['elect']\n", + "['to']\n", + "['provide']\n", + "['a']\n", + "['replacement']\n", + "['copy']\n", + "['in', 'lieu']\n", + "['of']\n", + "['a']\n", + "['refund']\n", + "['If']\n", + "['you']\n", + "['received']\n", + "['the']\n", + "['work']\n", + "['electronically']\n", + "['the']\n", + "['person', 'or']\n", + "['entity']\n", + "['providing']\n", + "['it']\n", + "['to']\n", + "['you']\n", + "['may']\n", + "['choose']\n", + "['to']\n", + "['give']\n", + "['you']\n", + "['a']\n", + "['second', 'opportunity']\n", + "['to']\n", + "['receive']\n", + "['the']\n", + "['work']\n", + "['electronically']\n", + "['in']\n", + "['lieu']\n", + "['of']\n", + "['a']\n", + "['refund']\n", + "['If', 'the']\n", + "['second']\n", + "['copy']\n", + "['is']\n", + "['also']\n", + "['defective']\n", + "['you']\n", + "['may']\n", + "['demand']\n", + "['a']\n", + "['refund']\n", + "['in']\n", + "['writing', 'without']\n", + "['further']\n", + "['opportunities']\n", + "['to']\n", + "['fix']\n", + "['the']\n", + "['problem', '', 'F']\n", + "['Except']\n", + "['for']\n", + "['the']\n", + "['limited']\n", + "['right']\n", + "['of']\n", + "['replacement']\n", + "['or']\n", + "['refund']\n", + "['set']\n", + "['forth', 'in']\n", + "['paragraph']\n", + "['F']\n", + "['this']\n", + "['work']\n", + "['is']\n", + "['provided']\n", + "['to']\n", + "['you']\n", + "['ASIS']\n", + "['WITH']\n", + "['NO', 'OTHER']\n", + "['WARRANTIES']\n", + "['OF']\n", + "['ANY']\n", + "['KIND']\n", + "['EXPRESS']\n", + "['OR']\n", + "['IMPLIED']\n", + "['INCLUDING']\n", + "['BUT']\n", + "['NOT', 'LIMITED']\n", + "['TO']\n", + "['WARRANTIES']\n", + "['OF']\n", + "['MERCHANTABILITY']\n", + "['OR']\n", + "['FITNESS']\n", + "['FOR']\n", + "['ANY']\n", + "['PURPOSE', '', 'F']\n", + "['Some']\n", + "['states']\n", + "['do']\n", + "['not']\n", + "['allow']\n", + "['disclaimers']\n", + "['of']\n", + "['certain']\n", + "['implied', 'warranties']\n", + "['or']\n", + "['the']\n", + "['exclusion']\n", + "['or']\n", + "['limitation']\n", + "['of']\n", + "['certain']\n", + "['types']\n", + "['of', 'damages']\n", + "['If']\n", + "['any']\n", + "['disclaimer']\n", + "['or']\n", + "['limitation']\n", + "['set']\n", + "['forth']\n", + "['in']\n", + "['this']\n", + "['agreement', 'violates']\n", + "['the']\n", + "['law']\n", + "['of']\n", + "['the']\n", + "['state']\n", + "['applicable']\n", + "['to']\n", + "['this']\n", + "['agreement']\n", + "['the', 'agreement']\n", + "['shall']\n", + "['be']\n", + "['interpreted']\n", + "['to']\n", + "['make']\n", + "['the']\n", + "['maximum']\n", + "['disclaimer']\n", + "['or', 'limitation']\n", + "['permitted']\n", + "['by']\n", + "['the']\n", + "['applicable']\n", + "['state']\n", + "['law']\n", + "['The']\n", + "['invalidity']\n", + "['or', 'unenforceability']\n", + "['of']\n", + "['any']\n", + "['provision']\n", + "['of']\n", + "['this']\n", + "['agreement']\n", + "['shall']\n", + "['not']\n", + "['void']\n", + "['the', 'remaining']\n", + "['provisions', '', 'F']\n", + "['INDEMNITY']\n", + "[]\n", + "['You']\n", + "['agree']\n", + "['to']\n", + "['indemnify']\n", + "['and']\n", + "['hold']\n", + "['the']\n", + "['Foundation']\n", + "['the', 'trademark']\n", + "['owner']\n", + "['any']\n", + "['agent']\n", + "['or']\n", + "['employee']\n", + "['of']\n", + "['the']\n", + "['Foundation']\n", + "['anyone', 'providing']\n", + "['copies']\n", + "['of']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['electronic']\n", + "['works']\n", + "['in', 'accordance']\n", + "['with']\n", + "['this']\n", + "['agreement']\n", + "['and']\n", + "['any']\n", + "['volunteers']\n", + "['associated']\n", + "['with']\n", + "['the', 'production']\n", + "['promotion']\n", + "['and']\n", + "['distribution']\n", + "['of']\n", + "['Project']\n", + "['Gutenbergtm', 'electronic']\n", + "['works']\n", + "['harmless']\n", + "['from']\n", + "['all']\n", + "['liability']\n", + "['costs']\n", + "['and']\n", + "['expenses', 'including']\n", + "['legal']\n", + "['fees']\n", + "['that']\n", + "['arise']\n", + "['directly']\n", + "['or']\n", + "['indirectly']\n", + "['from']\n", + "['any']\n", + "['of', 'the']\n", + "['following']\n", + "['which']\n", + "['you']\n", + "['do']\n", + "['or']\n", + "['cause']\n", + "['to']\n", + "['occur']\n", + "['a']\n", + "['distribution']\n", + "['of']\n", + "['this', 'or']\n", + "['any']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['work']\n", + "['b']\n", + "['alteration']\n", + "['modification']\n", + "['or', 'additions']\n", + "['or']\n", + "['deletions']\n", + "['to']\n", + "['any']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['work']\n", + "['and']\n", + "['c']\n", + "['any', 'Defect']\n", + "['you']\n", + "['cause', '', 'Section']\n", + "[]\n", + "['Information']\n", + "['about']\n", + "['the']\n", + "['Mission']\n", + "['of']\n", + "['Project']\n", + "['Gutenbergtm', '', 'Project']\n", + "['Gutenbergtm']\n", + "['is']\n", + "['synonymous']\n", + "['with']\n", + "['the']\n", + "['free']\n", + "['distribution']\n", + "['of', 'electronic']\n", + "['works']\n", + "['in']\n", + "['formats']\n", + "['readable']\n", + "['by']\n", + "['the']\n", + "['widest']\n", + "['variety']\n", + "['of', 'computers']\n", + "['including']\n", + "['obsolete']\n", + "['old']\n", + "['middleaged']\n", + "['and']\n", + "['new']\n", + "['computers']\n", + "['It', 'exists']\n", + "['because']\n", + "['of']\n", + "['the']\n", + "['efforts']\n", + "['of']\n", + "['hundreds']\n", + "['of']\n", + "['volunteers']\n", + "['and']\n", + "['donations', 'from']\n", + "['people']\n", + "['in']\n", + "['all']\n", + "['walks']\n", + "['of']\n", + "['life', '', 'Volunteers']\n", + "['and']\n", + "['financial']\n", + "['support']\n", + "['to']\n", + "['provide']\n", + "['volunteers']\n", + "['with']\n", + "['the', 'assistance']\n", + "['they']\n", + "['need']\n", + "['are']\n", + "['critical']\n", + "['to']\n", + "['reaching']\n", + "['Project']\n", + "['Gutenbergtms', 'goals']\n", + "['and']\n", + "['ensuring']\n", + "['that']\n", + "['the']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['collection']\n", + "['will', 'remain']\n", + "['freely']\n", + "['available']\n", + "['for']\n", + "['generations']\n", + "['to']\n", + "['come']\n", + "['In']\n", + "[]\n", + "['the']\n", + "['Project', 'Gutenberg']\n", + "['Literary']\n", + "['Archive']\n", + "['Foundation']\n", + "['was']\n", + "['created']\n", + "['to']\n", + "['provide']\n", + "['a']\n", + "['secure', 'and']\n", + "['permanent']\n", + "['future']\n", + "['for']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['and']\n", + "['future', 'generations']\n", + "['To']\n", + "['learn']\n", + "['more']\n", + "['about']\n", + "['the']\n", + "['Project']\n", + "['Gutenberg']\n", + "['Literary', 'Archive']\n", + "['Foundation']\n", + "['and']\n", + "['how']\n", + "['your']\n", + "['efforts']\n", + "['and']\n", + "['donations']\n", + "['can']\n", + "['help']\n", + "['see', 'Sections']\n", + "[]\n", + "['and']\n", + "[]\n", + "['and']\n", + "['the']\n", + "['Foundation']\n", + "['information']\n", + "['page']\n", + "['at', 'wwwgutenbergorg']\n", + "['Section']\n", + "[]\n", + "['Information']\n", + "['about']\n", + "['the']\n", + "['Project']\n", + "['Gutenberg', 'Literary']\n", + "['Archive']\n", + "['Foundation', '', 'The']\n", + "['Project']\n", + "['Gutenberg']\n", + "['Literary']\n", + "['Archive']\n", + "['Foundation']\n", + "['is']\n", + "['a']\n", + "['non']\n", + "['profit', 'c']\n", + "['educational']\n", + "['corporation']\n", + "['organized']\n", + "['under']\n", + "['the']\n", + "['laws']\n", + "['of']\n", + "['the', 'state']\n", + "['of']\n", + "['Mississippi']\n", + "['and']\n", + "['granted']\n", + "['tax']\n", + "['exempt']\n", + "['status']\n", + "['by']\n", + "['the']\n", + "['Internal', 'Revenue']\n", + "['Service']\n", + "['The']\n", + "['Foundations']\n", + "['EIN']\n", + "['or']\n", + "['federal']\n", + "['tax']\n", + "['identification', 'number']\n", + "['is']\n", + "[]\n", + "['Contributions']\n", + "['to']\n", + "['the']\n", + "['Project']\n", + "['Gutenberg']\n", + "['Literary', 'Archive']\n", + "['Foundation']\n", + "['are']\n", + "['tax']\n", + "['deductible']\n", + "['to']\n", + "['the']\n", + "['full']\n", + "['extent']\n", + "['permitted']\n", + "['by', 'US']\n", + "['federal']\n", + "['laws']\n", + "['and']\n", + "['your']\n", + "['states']\n", + "['laws', '', 'The']\n", + "['Foundations']\n", + "['principal']\n", + "['office']\n", + "['is']\n", + "['in']\n", + "['Fairbanks']\n", + "['Alaska']\n", + "['with']\n", + "['the', 'mailing']\n", + "['address']\n", + "['PO']\n", + "['Box']\n", + "[]\n", + "['Fairbanks']\n", + "['AK']\n", + "[]\n", + "['but']\n", + "['its', 'volunteers']\n", + "['and']\n", + "['employees']\n", + "['are']\n", + "['scattered']\n", + "['throughout']\n", + "['numerous', 'locations']\n", + "['Its']\n", + "['business']\n", + "['office']\n", + "['is']\n", + "['located']\n", + "['at']\n", + "[]\n", + "['North']\n", + "[]\n", + "['West']\n", + "['Salt', 'Lake']\n", + "['City']\n", + "['UT']\n", + "[]\n", + "[]\n", + "[]\n", + "['Email']\n", + "['contact']\n", + "['links']\n", + "['and']\n", + "['up']\n", + "['to', 'date']\n", + "['contact']\n", + "['information']\n", + "['can']\n", + "['be']\n", + "['found']\n", + "['at']\n", + "['the']\n", + "['Foundations']\n", + "['web']\n", + "['site']\n", + "['and', 'official']\n", + "['page']\n", + "['at']\n", + "['wwwgutenbergorgcontact', '', 'For']\n", + "['additional']\n", + "['contact']\n", + "['information', '']\n", + "[]\n", + "[]\n", + "[]\n", + "['Dr']\n", + "['Gregory']\n", + "['B']\n", + "['Newby']\n", + "[]\n", + "[]\n", + "[]\n", + "['Chief']\n", + "['Executive']\n", + "['and']\n", + "['Director']\n", + "[]\n", + "[]\n", + "[]\n", + "['gbnewbypglaforg', '', 'Section']\n", + "[]\n", + "['Information']\n", + "['about']\n", + "['Donations']\n", + "['to']\n", + "['the']\n", + "['Project']\n", + "['Gutenberg', 'Literary']\n", + "['Archive']\n", + "['Foundation', '', 'Project']\n", + "['Gutenbergtm']\n", + "['depends']\n", + "['upon']\n", + "['and']\n", + "['cannot']\n", + "['survive']\n", + "['without']\n", + "['wide', 'spread']\n", + "['public']\n", + "['support']\n", + "['and']\n", + "['donations']\n", + "['to']\n", + "['carry']\n", + "['out']\n", + "['its']\n", + "['mission']\n", + "['of', 'increasing']\n", + "['the']\n", + "['number']\n", + "['of']\n", + "['public']\n", + "['domain']\n", + "['and']\n", + "['licensed']\n", + "['works']\n", + "['that']\n", + "['can']\n", + "['be', 'freely']\n", + "['distributed']\n", + "['in']\n", + "['machine']\n", + "['readable']\n", + "['form']\n", + "['accessible']\n", + "['by']\n", + "['the']\n", + "['widest', 'array']\n", + "['of']\n", + "['equipment']\n", + "['including']\n", + "['outdated']\n", + "['equipment']\n", + "['Many']\n", + "['small']\n", + "['donations']\n", + "['to']\n", + "[]\n", + "['are']\n", + "['particularly']\n", + "['important']\n", + "['to']\n", + "['maintaining']\n", + "['tax']\n", + "['exempt', 'status']\n", + "['with']\n", + "['the']\n", + "['IRS', '', 'The']\n", + "['Foundation']\n", + "['is']\n", + "['committed']\n", + "['to']\n", + "['complying']\n", + "['with']\n", + "['the']\n", + "['laws']\n", + "['regulating', 'charities']\n", + "['and']\n", + "['charitable']\n", + "['donations']\n", + "['in']\n", + "['all']\n", + "[]\n", + "['states']\n", + "['of']\n", + "['the']\n", + "['United', 'States']\n", + "['Compliance']\n", + "['requirements']\n", + "['are']\n", + "['not']\n", + "['uniform']\n", + "['and']\n", + "['it']\n", + "['takes']\n", + "['a', 'considerable']\n", + "['effort']\n", + "['much']\n", + "['paperwork']\n", + "['and']\n", + "['many']\n", + "['fees']\n", + "['to']\n", + "['meet']\n", + "['and']\n", + "['keep']\n", + "['up', 'with']\n", + "['these']\n", + "['requirements']\n", + "['We']\n", + "['do']\n", + "['not']\n", + "['solicit']\n", + "['donations']\n", + "['in']\n", + "['locations', 'where']\n", + "['we']\n", + "['have']\n", + "['not']\n", + "['received']\n", + "['written']\n", + "['confirmation']\n", + "['of']\n", + "['compliance']\n", + "['To']\n", + "['SEND', 'DONATIONS']\n", + "['or']\n", + "['determine']\n", + "['the']\n", + "['status']\n", + "['of']\n", + "['compliance']\n", + "['for']\n", + "['any']\n", + "['particular', 'state']\n", + "['visit']\n", + "['wwwgutenbergorgdonate', '', 'While']\n", + "['we']\n", + "['cannot']\n", + "['and']\n", + "['do']\n", + "['not']\n", + "['solicit']\n", + "['contributions']\n", + "['from']\n", + "['states']\n", + "['where']\n", + "['we', 'have']\n", + "['not']\n", + "['met']\n", + "['the']\n", + "['solicitation']\n", + "['requirements']\n", + "['we']\n", + "['know']\n", + "['of']\n", + "['no']\n", + "['prohibition', 'against']\n", + "['accepting']\n", + "['unsolicited']\n", + "['donations']\n", + "['from']\n", + "['donors']\n", + "['in']\n", + "['such']\n", + "['states']\n", + "['who', 'approach']\n", + "['us']\n", + "['with']\n", + "['offers']\n", + "['to']\n", + "['donate', '', 'International']\n", + "['donations']\n", + "['are']\n", + "['gratefully']\n", + "['accepted']\n", + "['but']\n", + "['we']\n", + "['cannot']\n", + "['make', 'any']\n", + "['statements']\n", + "['concerning']\n", + "['tax']\n", + "['treatment']\n", + "['of']\n", + "['donations']\n", + "['received']\n", + "['from', 'outside']\n", + "['the']\n", + "['United']\n", + "['States']\n", + "['US']\n", + "['laws']\n", + "['alone']\n", + "['swamp']\n", + "['our']\n", + "['small']\n", + "['staff', '', 'Please']\n", + "['check']\n", + "['the']\n", + "['Project']\n", + "['Gutenberg']\n", + "['Web']\n", + "['pages']\n", + "['for']\n", + "['current']\n", + "['donation', 'methods']\n", + "['and']\n", + "['addresses']\n", + "['Donations']\n", + "['are']\n", + "['accepted']\n", + "['in']\n", + "['a']\n", + "['number']\n", + "['of']\n", + "['other', 'ways']\n", + "['including']\n", + "['checks']\n", + "['online']\n", + "['payments']\n", + "['and']\n", + "['credit']\n", + "['card']\n", + "['donations']\n", + "['To', 'donate']\n", + "['please']\n", + "['visit']\n", + "['wwwgutenbergorgdonate', '', 'Section']\n", + "[]\n", + "['General']\n", + "['Information']\n", + "['About']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['electronic']\n", + "['works', '', 'Professor']\n", + "['Michael']\n", + "['S']\n", + "['Hart']\n", + "['was']\n", + "['the']\n", + "['originator']\n", + "['of']\n", + "['the']\n", + "['Project', 'Gutenbergtm']\n", + "['concept']\n", + "['of']\n", + "['a']\n", + "['library']\n", + "['of']\n", + "['electronic']\n", + "['works']\n", + "['that']\n", + "['could']\n", + "['be', 'freely']\n", + "['shared']\n", + "['with']\n", + "['anyone']\n", + "['For']\n", + "['forty']\n", + "['years']\n", + "['he']\n", + "['produced']\n", + "['and', 'distributed']\n", + "['Project']\n", + "['Gutenbergtm']\n", + "['eBooks']\n", + "['with']\n", + "['only']\n", + "['a']\n", + "['loose']\n", + "['network']\n", + "['of', 'volunteer']\n", + "['support', '', 'Project']\n", + "['Gutenbergtm']\n", + "['eBooks']\n", + "['are']\n", + "['often']\n", + "['created']\n", + "['from']\n", + "['several']\n", + "['printed', 'editions']\n", + "['all']\n", + "['of']\n", + "['which']\n", + "['are']\n", + "['confirmed']\n", + "['as']\n", + "['not']\n", + "['protected']\n", + "['by']\n", + "['copyright']\n", + "['in', 'the']\n", + "['US']\n", + "['unless']\n", + "['a']\n", + "['copyright']\n", + "['notice']\n", + "['is']\n", + "['included']\n", + "['Thus']\n", + "['we']\n", + "['do']\n", + "['not', 'necessarily']\n", + "['keep']\n", + "['eBooks']\n", + "['in']\n", + "['compliance']\n", + "['with']\n", + "['any']\n", + "['particular']\n", + "['paper', 'edition', '', 'Most']\n", + "['people']\n", + "['start']\n", + "['at']\n", + "['our']\n", + "['Web']\n", + "['site']\n", + "['which']\n", + "['has']\n", + "['the']\n", + "['main']\n", + "['PG']\n", + "['search', 'facility']\n", + "['wwwgutenbergorg', '', 'This']\n", + "['Web']\n", + "['site']\n", + "['includes']\n", + "['information']\n", + "['about']\n", + "['Project']\n", + "['Gutenbergtm', 'including']\n", + "['how']\n", + "['to']\n", + "['make']\n", + "['donations']\n", + "['to']\n", + "['the']\n", + "['Project']\n", + "['Gutenberg']\n", + "['Literary', 'Archive']\n", + "['Foundation']\n", + "['how']\n", + "['to']\n", + "['help']\n", + "['produce']\n", + "['our']\n", + "['new']\n", + "['eBooks']\n", + "['and']\n", + "['how']\n", + "['to', 'subscribe']\n", + "['to']\n", + "['our']\n", + "['email']\n", + "['newsletter']\n", + "['to']\n", + "['hear']\n", + "['about']\n", + "['new']\n", + "['eBooks', '']\n" + ] + } + ], "source": [ - "# your code here" + "prophet_line = list(map(remove_linebreak, prophet_reference))" ] }, { @@ -172,11 +13273,25 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 28, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "TypeError", + "evalue": "'NoneType' object is not iterable", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mprohpet_flat\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m[\u001b[0m\u001b[0mword\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0msublist\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mprophet_line\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mword\u001b[0m \u001b[0;32min\u001b[0m \u001b[0msublist\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m(.0)\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mprohpet_flat\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m[\u001b[0m\u001b[0mword\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0msublist\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mprophet_line\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mword\u001b[0m \u001b[0;32min\u001b[0m \u001b[0msublist\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mTypeError\u001b[0m: 'NoneType' object is not iterable" + ] + } + ], "source": [ - "# your code here" + "\n", + "prohpet_flat = [word for sublist in prophet_line for word in sublist]" ] }, { @@ -190,9 +13305,18 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 69, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": "False" + }, + "execution_count": 69, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "def word_filter(x):\n", " '''\n", @@ -210,8 +13334,14 @@ " '''\n", " \n", " word_list = ['and', 'the', 'a', 'an']\n", - " \n", - " # your code here" + " for i in prophet_line:\n", + " if i not in word_list:\n", + " return True\n", + " elif i in word_list:\n", + " return False\n", + " else:\n", + " print(\"What in the... ?\")\n", + "word_filter(\"and\")" ] }, { @@ -232,15 +13362,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 70, "metadata": {}, "outputs": [], "source": [ "def word_filter_case(x):\n", " \n", " word_list = ['and', 'the', 'a', 'an']\n", - " \n", - " # your code here" + " for i in prophet_line:\n", + " z = i.lower()\n", + " if z not in word_list:\n", + " return True\n", + " elif z in word_list:\n", + " return False\n", + " else:\n", + " print(\"What in the... ?\")\n" ] }, { @@ -256,10 +13392,19 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 71, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "John Smith\n" + ] + } + ], "source": [ + "from functools import reduce\n", "def concat_space(a, b):\n", " '''\n", " Input:Two strings\n", @@ -270,7 +13415,7 @@ " Output: 'John Smith'\n", " '''\n", " \n", - " # your code here" + " return a + \" \" + b" ] }, { @@ -282,19 +13427,39 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 73, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "TypeError", + "evalue": "can only concatenate str (not \"NoneType\") to str", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mprophet_string\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mreduce\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mconcat_space\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mprophet_line\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mprophet_string\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36mconcat_space\u001b[0;34m(a, b)\u001b[0m\n\u001b[1;32m 10\u001b[0m '''\n\u001b[1;32m 11\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 12\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0ma\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;34m\" \"\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0mb\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 13\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 14\u001b[0m \u001b[0ma\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m\"John\"\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mTypeError\u001b[0m: can only concatenate str (not \"NoneType\") to str" + ] + } + ], "source": [ - "# your code here" + "prophet_string = reduce(concat_space, prophet_line)\n", + "print(prophet_string)" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" + "display_name": "Python 3.8.8 64-bit ('Stockpython': venv)", + "name": "python388jvsc74a57bd04f430009bdbd02cf2111f02c5b0018fb93c28cb6873e6d8f5f211be72fe6200a" }, "language_info": { "codemirror_mode": { @@ -306,9 +13471,14 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.8.8" + }, + "metadata": { + "interpreter": { + "hash": "4f430009bdbd02cf2111f02c5b0018fb93c28cb6873e6d8f5f211be72fe6200a" + } } }, "nbformat": 4, "nbformat_minor": 2 -} +} \ No newline at end of file