From ae688f089d77e2b139bf5982714580397c285a13 Mon Sep 17 00:00:00 2001 From: Martina Rivero Date: Tue, 17 Oct 2023 20:08:55 +0200 Subject: [PATCH] martina --- your-code/main.ipynb | 1210 +++++++++++++++++++++++++++++++++++++++--- 1 file changed, 1134 insertions(+), 76 deletions(-) diff --git a/your-code/main.ipynb b/your-code/main.ipynb index a2958dd..0533417 100644 --- a/your-code/main.ipynb +++ b/your-code/main.ipynb @@ -12,11 +12,14 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ - "# Import reduce from functools, numpy and pandas" + "# Import reduce from functools, numpy and pandas\n", + "from functools import reduce\n", + "import pandas as pd\n", + "import numpy as np" ] }, { @@ -32,7 +35,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -54,11 +57,15 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "def remove_words(index, text):\n", + " if index >= 568:\n", + " return text\n", + " else:\n", + " return ''\n" ] }, { @@ -70,11 +77,33 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['\\ufeffThe',\n", + " 'Project',\n", + " 'Gutenberg',\n", + " 'EBook',\n", + " 'of',\n", + " 'The',\n", + " 'Prophet,',\n", + " 'by',\n", + " 'Kahlil',\n", + " 'Gibran\\n\\nThis',\n", + " 'eBook']" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your code here" + "new_prophet = prophet[:11]\n", + "new_prophet" ] }, { @@ -88,21 +117,15 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ - "def reference(x):\n", - " '''\n", - " Input: A string\n", - " Output: The string with references removed\n", - " \n", - " Example:\n", - " Input: 'the{7}'\n", - " Output: 'the'\n", - " '''\n", - " \n", - " # your code here" + "def reference(text):\n", + " parts = text.split('{')\n", + " cleaned_text = parts[0].strip()\n", + " return cleaned_text\n", + "\n" ] }, { @@ -114,11 +137,22 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['PROPHET\\n\\n|Almustafa,', 'the', 'chosen', 'and', 'the\\nbeloved,', 'who', 'was', 'a', 'dawn', 'unto', 'his', 'own\\nday,', 'had', 'waited', 'twelve', 'years', 'in', 'the', 'city\\nof', 'Orphalese', 'for', 'his', 'ship', 'that', 'was', 'to\\nreturn', 'and', 'bear', 'him', 'back', 'to', 'the', 'isle', 'of\\nhis', 'birth.\\n\\nAnd', 'in', 'the', 'twelfth', 'year,', 'on', 'the', 'seventh\\nday', 'of', 'Ielool,', 'the', 'month', 'of', 'reaping,', 'he\\nclimbed', 'the', 'hill', 'without', 'the', 'city', 'walls\\nand', 'looked', 'seaward;', 'and', 'he', 'beheld', 'his\\nship', 'coming', 'with', 'the', 'mist.\\n\\nThen', 'the', 'gates', 'of', 'his', 'heart', 'were', 'flung\\nopen,', 'and', 'his', 'joy', 'flew', 'far', 'over', 'the', 'sea.\\nAnd', 'he', 'closed', 'his', 'eyes', 'and', 'prayed', 'in', 'the\\nsilences', 'of', 'his', 'soul.\\n\\n*****\\n\\nBut', 'as', 'he', 'descended', 'the', 'hill,', 'a', 'sadness\\ncame', 'upon', 'him,', 'and', 'he', 'thought', 'in', 'his\\nheart:\\n\\nHow', 'shall', 'I', 'go', 'in', 'peace', 'and', 'without\\nsorrow?', 'Nay,', 'not', 'without', 'a', 'wound', 'in', 'the\\nspirit', 'shall', 'I', 'leave', 'this', 'city.', '', 'the', 'days', 'of', 'pain', 'I', 'have', 'spent\\nwithin', 'its', 'walls,', 'and', 'long', 'were', 'the\\nnights', 'of', 'aloneness;', 'and', 'who', 'can', 'depart\\nfrom', 'his', 'pain', 'and', 'his', 'aloneness', 'without\\nregret?\\n\\nToo', 'many', 'fragments', 'of', 'the', 'spirit', 'have', 'I\\nscattered', 'in', 'these', 'streets,', 'and', 'too', 'many\\nare', 'the', 'children', 'of', 'my', 'longing', 'that', 'walk\\nnaked', 'among', 'these', 'hills,', 'and', 'I', 'cannot\\nwithdraw', 'from', 'them', 'without', 'a', 'burden', 'and\\nan', 'ache.\\n\\nIt', 'is', 'not', 'a', 'garment', 'I', 'cast', 'off', 'this\\nday,', 'but', 'a', 'skin', 'that', 'I', 'tear', 'with', 'my', 'own\\nhands.\\n\\nNor', 'is', 'it', 'a', 'thought', 'I', 'leave', 'behind', 'me,\\nbut', 'a', 'heart', 'made', 'sweet', 'with', 'hunger', 'and\\nwith', 'thirst.\\n\\n*****\\n\\nYet', 'I', 'cannot', 'tarry', 'longer.\\n\\nThe', 'sea', 'that', 'calls', 'all', 'things', 'unto', 'her\\ncalls', 'me,', 'and', 'I', 'must', 'embark.\\n\\nFor', 'to', 'stay,', 'though', 'the', 'hours', 'burn', 'in\\nthe', 'night,', 'is', 'to', 'freeze', 'and', 'crystallize\\nand', 'be', 'bound', 'in', 'a', 'mould.\\n\\nFain', 'would', 'I', 'take', 'with', 'me', 'all', 'that', 'is\\nhere.', 'But', 'how', 'shall', 'I?\\n\\nA', 'voice', 'cannot', 'carry', 'the', 'tongue', 'and', 'lips', 'that', 'gave', 'it', 'wings.', 'Alone\\nmust', 'it', 'seek', 'the', 'ether.\\n\\nAnd', 'alone', 'and', 'without', 'his', 'nest', 'shall', 'the\\neagle', 'fly', 'across', 'the', 'sun.\\n\\n*****\\n\\nNow', 'when', 'he', 'reached', 'the', 'foot', 'of', 'the\\nhill,', 'he', 'turned', 'again', 'towards', 'the', 'sea,\\nand', 'he', 'saw', 'his', 'ship', 'approaching', 'the\\nharbour,', 'and', 'upon', 'her', 'prow', 'the', 'mariners,\\nthe', 'men', 'of', 'his', 'own', 'land.\\n\\nAnd', 'his', 'soul', 'cried', 'out', 'to', 'them,', 'and', 'he\\nsaid:\\n\\nSons', 'of', 'my', 'ancient', 'mother,', 'you', 'riders', 'of\\nthe', 'tides,\\n\\nHow', 'often', 'have', 'you', 'sailed', 'in', 'my', 'dreams.\\nAnd', 'now', 'you', 'come', 'in', 'my', 'awakening,', 'which\\nis', 'my', 'deeper', 'dream.\\n\\nReady', 'am', 'I', 'to', 'go,', 'and', 'my', 'eagerness', 'with\\nsails', 'full', 'set', 'awaits', 'the', 'wind.\\n\\nOnly', 'another', 'breath', 'will', 'I', 'breathe', 'in\\nthis', 'still', 'air,', 'only', 'another', 'loving', 'look\\ncast', 'backward,\\n\\nAnd', 'then', 'I', 'shall', 'stand', 'among', 'you,', 'a\\nseafarer', 'among', 'seafarers.', '', 'you,\\nvast', 'sea,', 'sleepless', 'mother,\\n\\nWho', 'alone', 'are', 'peace', 'and', 'freedom', 'to', 'the\\nriver', 'and', 'the', 'stream,\\n\\nOnly', 'another', 'winding', 'will', 'this', 'stream\\nmake,', 'only', 'another', 'murmur', 'in', 'this', 'glade,\\n\\nAnd', 'then', 'shall', 'I', 'come', 'to', 'you,', 'a\\nboundless', 'drop', 'to', 'a', 'boundless', 'ocean.\\n\\n*****\\n\\nAnd', 'as', 'he', 'walked', 'he', 'saw', 'from', 'afar', 'men\\nand', 'women', 'leaving', 'their', 'fields', 'and', 'their\\nvineyards', 'and', 'hastening', 'towards', 'the', 'city\\ngates.\\n\\nAnd', 'he', 'heard', 'their', 'voices', 'calling', 'his\\nname,', 'and', 'shouting', 'from', 'field', 'to', 'field\\ntelling', 'one', 'another', 'of', 'the', 'coming', 'of', 'his\\nship.\\n\\nAnd', 'he', 'said', 'to', 'himself:\\n\\nShall', 'the', 'day', 'of', 'parting', 'be', 'the', 'day', 'of\\ngathering?\\n\\nAnd', 'shall', 'it', 'be', 'said', 'that', 'my', 'eve', 'was', 'in\\ntruth', 'my', 'dawn?\\n\\nAnd', 'what', 'shall', 'I', 'give', 'unto', 'him', 'who', 'has\\nleft', 'his', 'plough', 'in', 'midfurrow,', 'or', 'to\\nhim', 'who', 'has', 'stopped', 'the', 'wheel', 'of', 'his\\nwinepress?', '', 'my', 'heart', 'become', 'a\\ntree', 'heavy-laden', 'with', 'fruit', 'that', 'I', 'may\\ngather', 'and', 'give', 'unto', 'them?\\n\\nAnd', 'shall', 'my', 'desires', 'flow', 'like', 'a\\nfountain', 'that', 'I', 'may', 'fill', 'their', 'cups?\\n\\nAm', 'I', 'a', 'harp', 'that', 'the', 'hand', 'of', 'the', 'mighty\\nmay', 'touch', 'me,', 'or', 'a', 'flute', 'that', 'his', 'breath\\nmay', 'pass', 'through', 'me?\\n\\nA', 'seeker', 'of', 'silences', 'am', 'I,', 'and', 'what\\ntreasure', 'have', 'I', 'found', 'in', 'silences', 'that', 'I\\nmay', 'dispense', 'with', 'confidence?\\n\\nIf', 'this', 'is', 'my', 'day', 'of', 'harvest,', 'in', 'what\\nfields', 'have', 'I', 'sowed', 'the', 'seed,', 'and', 'in\\nwhat', 'unremembered', 'seasons?\\n\\nIf', 'this', 'indeed', 'be', 'the', 'hour', 'in', 'which', 'I\\nlift', 'up', 'my', 'lantern,', 'it', 'is', 'not', 'my', 'flame\\nthat', 'shall', 'burn', 'therein.\\n\\nEmpty', 'and', 'dark', 'shall', 'I', 'raise', 'my', 'lantern,\\n\\nAnd', 'the', 'guardian', 'of', 'the', 'night', 'shall', 'fill\\nit', 'with', 'oil', 'and', 'he', 'shall', 'light', 'it', 'also.\\n\\n*****\\n\\nThese', 'things', 'he', 'said', 'in', 'words.', 'But', 'much\\nin', 'his', 'heart', 'remained', 'unsaid.', 'For', '', 'could', 'not', 'speak', 'his', 'deeper\\nsecret.\\n\\n*****\\n\\n[Illustration:', '0020]\\n\\nAnd', 'when', 'he', 'entered', 'into', 'the', 'city', 'all\\nthe', 'people', 'came', 'to', 'meet', 'him,', 'and', 'they\\nwere', 'crying', 'out', 'to', 'him', 'as', 'with', 'one\\nvoice.\\n\\nAnd', 'the', 'elders', 'of', 'the', 'city', 'stood', 'forth\\nand', 'said:\\n\\nGo', 'not', 'yet', 'away', 'from', 'us.\\n\\nA', 'noontide', 'have', 'you', 'been', 'in', 'our\\ntwilight,', 'and', 'your', 'youth', 'has', 'given', 'us\\ndreams', 'to', 'dream.\\n\\nNo', 'stranger', 'are', 'you', 'among', 'us,', 'nor\\na', 'guest,', 'but', 'our', 'son', 'and', 'our', 'dearly\\nbeloved.\\n\\nSuffer', 'not', 'yet', 'our', 'eyes', 'to', 'hunger', 'for\\nyour', 'face.\\n\\n*****\\n\\nAnd', 'the', 'priests', 'and', 'the', 'priestesses', 'said\\nunto', 'him:\\n\\nLet', 'not', 'the', 'waves', 'of', 'the', 'sea', 'separate', 'us\\nnow,', 'and', 'the', 'years', 'you', 'have', 'spent', 'in', 'our\\nmidst', 'become', 'a', 'memory.\\n\\nYou', 'have', 'walked', 'among', 'us', 'a', 'spirit,', 'your', 'shadow', 'has', 'been', 'a', 'light\\nupon', 'our', 'faces.\\n\\nMuch', 'have', 'we', 'loved', 'you.', 'But', 'speechless\\nwas', 'our', 'love,', 'and', 'with', 'veils', 'has', 'it', 'been\\nveiled.\\n\\nYet', 'now', 'it', 'cries', 'aloud', 'unto', 'you,', 'and\\nwould', 'stand', 'revealed', 'before', 'you.\\n\\nAnd', 'ever', 'has', 'it', 'been', 'that', 'love', 'knows\\nnot', 'its', 'own', 'depth', 'until', 'the', 'hour', 'of\\nseparation.\\n\\n*****\\n\\nAnd', 'others', 'came', 'also', 'and', 'entreated', 'him.\\nBut', 'he', 'answered', 'them', 'not.', 'He', 'only', 'bent\\nhis', 'head;', 'and', 'those', 'who', 'stood', 'near', 'saw\\nhis', 'tears', 'falling', 'upon', 'his', 'breast.\\n\\nAnd', 'he', 'and', 'the', 'people', 'proceeded', 'towards\\nthe', 'great', 'square', 'before', 'the', 'temple.\\n\\nAnd', 'there', 'came', 'out', 'of', 'the', 'sanctuary', 'a\\nwoman', 'whose', 'name', 'was', 'Almitra.', 'And', 'she\\nwas', 'a', 'seeress.\\n\\nAnd', 'he', 'looked', 'upon', 'her', 'with', 'exceeding\\ntenderness,', 'for', 'it', 'was', 'she', 'who', 'had', 'first\\nsought', 'and', 'believed', 'in', 'him', 'when', 'he', 'had\\nbeen', 'but', 'a', 'day', 'in', 'their', 'city.', '', 'hailed', 'him,', 'saying:\\n\\nProphet', 'of', 'God,', 'in', 'quest', 'of', 'the\\nuttermost,', 'long', 'have', 'you', 'searched', 'the\\ndistances', 'for', 'your', 'ship.\\n\\nAnd', 'now', 'your', 'ship', 'has', 'come,', 'and', 'you', 'must\\nneeds', 'go.\\n\\nDeep', 'is', 'your', 'longing', 'for', 'the', 'land', 'of\\nyour', 'memories', 'and', 'the', 'dwelling', 'place\\nof', 'your', 'greater', 'desires;', 'and', 'our', 'love\\nwould', 'not', 'bind', 'you', 'nor', 'our', 'needs', 'hold\\nyou.\\n\\nYet', 'this', 'we', 'ask', 'ere', 'you', 'leave', 'us,', 'that\\nyou', 'speak', 'to', 'us', 'and', 'give', 'us', 'of', 'your\\ntruth.\\n\\nAnd', 'we', 'will', 'give', 'it', 'unto', 'our', 'children,\\nand', 'they', 'unto', 'their', 'children,', 'and', 'it\\nshall', 'not', 'perish.\\n\\nIn', 'your', 'aloneness', 'you', 'have', 'watched', 'with\\nour', 'days,', 'and', 'in', 'your', 'wakefulness', 'you\\nhave', 'listened', 'to', 'the', 'weeping', 'and', 'the\\nlaughter', 'of', 'our', 'sleep.\\n\\nNow', 'therefore', 'disclose', 'us', 'to', 'ourselves,\\nand', 'tell', 'us', 'all', 'that', 'has', 'been', 'shown\\nyou', 'of', 'that', 'which', 'is', 'between', 'birth', 'and\\ndeath.\\n\\n*****\\n\\nAnd', 'he', 'answered,\\n\\nPeople', 'of', 'Orphalese,', 'of', 'what', 'can', 'I', 'save', 'of', 'that', 'which', 'is', 'even', 'now\\nmoving', 'within', 'your', 'souls?\\n\\n*****', '*****\\n\\nThen', 'said', 'Almitra,', 'Speak', 'to', 'us', 'of\\n_Love_.\\n\\nAnd', 'he', 'raised', 'his', 'head', 'and', 'looked', 'upon\\nthe', 'people,', 'and', 'there', 'fell', 'a', 'stillness\\nupon', 'them.', 'And', 'with', 'a', 'great', 'voice', 'he\\nsaid:\\n\\nWhen', 'love', 'beckons', 'to', 'you,', 'follow', 'him,\\n\\nThough', 'his', 'ways', 'are', 'hard', 'and', 'steep.\\n\\nAnd', 'when', 'his', 'wings', 'enfold', 'you', 'yield', 'to\\nhim,\\n\\nThough', 'the', 'sword', 'hidden', 'among', 'his\\npinions', 'may', 'wound', 'you.\\n\\nAnd', 'when', 'he', 'speaks', 'to', 'you', 'believe', 'in\\nhim,\\n\\nThough', 'his', 'voice', 'may', 'shatter', 'your', 'dreams\\nas', 'the', 'north', 'wind', 'lays', 'waste', 'the', 'garden.\\n\\nFor', 'even', 'as', 'love', 'crowns', 'you', 'so', 'shall\\nhe', 'crucify', 'you.', 'Even', 'as', 'he', 'is', 'for', 'your\\ngrowth', 'so', 'is', 'he', 'for', 'your', 'pruning.\\n\\nEven', 'as', 'he', 'ascends', 'to', 'your', 'height', 'and', 'your', 'tenderest', 'branches\\nthat', 'quiver', 'in', 'the', 'sun,\\n\\nSo', 'shall', 'he', 'descend', 'to', 'your', 'roots', 'and\\nshake', 'them', 'in', 'their', 'clinging', 'to', 'the\\nearth.\\n\\n*****\\n\\nLike', 'sheaves', 'of', 'corn', 'he', 'gathers', 'you', 'unto\\nhimself.\\n\\nHe', 'threshes', 'you', 'to', 'make', 'you', 'naked.\\n\\nHe', 'sifts', 'you', 'to', 'free', 'you', 'from', 'your\\nhusks.\\n\\nHe', 'grinds', 'you', 'to', 'whiteness.\\n\\nHe', 'kneads', 'you', 'until', 'you', 'are', 'pliant;\\n\\nAnd', 'then', 'he', 'assigns', 'you', 'to', 'his', 'sacred\\nfire,', 'that', 'you', 'may', 'become', 'sacred', 'bread\\nfor', 'God’s', 'sacred', 'feast.\\n\\n*****\\n\\nAll', 'these', 'things', 'shall', 'love', 'do', 'unto', 'you\\nthat', 'you', 'may', 'know', 'the', 'secrets', 'of', 'your\\nheart,', 'and', 'in', 'that', 'knowledge', 'become', 'a\\nfragment', 'of', 'Life’s', 'heart.\\n\\nBut', 'if', 'in', 'your', 'fear', 'you', 'would', 'seek', 'only\\nlove’s', 'peace', 'and', 'love’s', 'pleasure,\\n\\nThen', 'it', 'is', 'better', 'for', 'you', 'that', 'you\\ncover', '', 'nakedness', 'and', 'pass', 'out', 'of\\nlove’s', 'threshing-floor,\\n\\nInto', 'the', 'seasonless', 'world', 'where', 'you\\nshall', 'laugh,', 'but', 'not', 'all', 'of', 'your\\nlaughter,', 'and', 'weep,', 'but', 'not', 'all', 'of', 'your\\ntears.\\n\\n*****\\n\\nLove', 'gives', 'naught', 'but', 'itself', 'and', 'takes\\nnaught', 'but', 'from', 'itself.\\n\\nLove', 'possesses', 'not', 'nor', 'would', 'it', 'be\\npossessed;\\n\\nFor', 'love', 'is', 'sufficient', 'unto', 'love.\\n\\nWhen', 'you', 'love', 'you', 'should', 'not', 'say,', '“God\\nis', 'in', 'my', 'heart,”', 'but', 'rather,', '“I', 'am', 'in\\nthe', 'heart', 'of', 'God.”\\n\\nAnd', 'think', 'not', 'you', 'can', 'direct', 'the', 'course\\nof', 'love,', 'for', 'love,', 'if', 'it', 'finds', 'you\\nworthy,', 'directs', 'your', 'course.\\n\\nLove', 'has', 'no', 'other', 'desire', 'but', 'to', 'fulfil\\nitself.\\n\\nBut', 'if', 'you', 'love', 'and', 'must', 'needs', 'have\\ndesires,', 'let', 'these', 'be', 'your', 'desires:\\n\\nTo', 'melt', 'and', 'be', 'like', 'a', 'running', 'brook', 'that\\nsings', 'its', 'melody', 'to', 'the', 'night.', '', 'the', 'pain', 'of', 'too', 'much', 'tenderness.\\n\\nTo', 'be', 'wounded', 'by', 'your', 'own', 'understanding\\nof', 'love;\\n\\nAnd', 'to', 'bleed', 'willingly', 'and', 'joyfully.\\n\\nTo', 'wake', 'at', 'dawn', 'with', 'a', 'winged', 'heart', 'and\\ngive', 'thanks', 'for', 'another', 'day', 'of', 'loving;\\n\\nTo', 'rest', 'at', 'the', 'noon', 'hour', 'and', 'meditate\\nlove’s', 'ecstacy;\\n\\nTo', 'return', 'home', 'at', 'eventide', 'with\\ngratitude;\\n\\nAnd', 'then', 'to', 'sleep', 'with', 'a', 'prayer', 'for\\nthe', 'beloved', 'in', 'your', 'heart', 'and', 'a', 'song', 'of\\npraise', 'upon', 'your', 'lips.\\n\\n[Illustration:', '0029]\\n\\n*****', '*****', 'Almitra', 'spoke', 'again', 'and', 'said,\\nAnd', 'what', 'of', '_Marriage_', 'master?\\n\\nAnd', 'he', 'answered', 'saying:\\n\\nYou', 'were', 'born', 'together,', 'and', 'together', 'you\\nshall', 'be', 'forevermore.\\n\\nYou', 'shall', 'be', 'together', 'when', 'the', 'white\\nwings', 'of', 'death', 'scatter', 'your', 'days.\\n\\nAye,', 'you', 'shall', 'be', 'together', 'even', 'in', 'the\\nsilent', 'memory', 'of', 'God.\\n\\nBut', 'let', 'there', 'be', 'spaces', 'in', 'your\\ntogetherness,\\n\\nAnd', 'let', 'the', 'winds', 'of', 'the', 'heavens', 'dance\\nbetween', 'you.\\n\\n*****\\n\\nLove', 'one', 'another,', 'but', 'make', 'not', 'a', 'bond', 'of\\nlove:\\n\\nLet', 'it', 'rather', 'be', 'a', 'moving', 'sea', 'between\\nthe', 'shores', 'of', 'your', 'souls.\\n\\nFill', 'each', 'other’s', 'cup', 'but', 'drink', 'not', 'from\\none', 'cup.\\n\\nGive', 'one', 'another', 'of', 'your', 'bread', 'but', 'eat\\nnot', 'from', 'the', 'same', 'loaf.', '', 'and\\ndance', 'together', 'and', 'be', 'joyous,', 'but', 'let\\neach', 'one', 'of', 'you', 'be', 'alone,\\n\\nEven', 'as', 'the', 'strings', 'of', 'a', 'lute', 'are', 'alone\\nthough', 'they', 'quiver', 'with', 'the', 'same', 'music.\\n\\n*****\\n\\nGive', 'your', 'hearts,', 'but', 'not', 'into', 'each\\nother’s', 'keeping.\\n\\nFor', 'only', 'the', 'hand', 'of', 'Life', 'can', 'contain\\nyour', 'hearts.\\n\\nAnd', 'stand', 'together', 'yet', 'not', 'too', 'near\\ntogether:\\n\\nFor', 'the', 'pillars', 'of', 'the', 'temple', 'stand\\napart,\\n\\nAnd', 'the', 'oak', 'tree', 'and', 'the', 'cypress', 'grow\\nnot', 'in', 'each', 'other’s', 'shadow.\\n\\n[Illustration:', '0032]\\n\\n*****', '*****', 'a', 'woman', 'who', 'held', 'a', 'babe\\nagainst', 'her', 'bosom', 'said,', 'Speak', 'to', 'us', 'of\\n_Children_.\\n\\nAnd', 'he', 'said:\\n\\nYour', 'children', 'are', 'not', 'your', 'children.\\n\\nThey', 'are', 'the', 'sons', 'and', 'daughters', 'of\\nLife’s', 'longing', 'for', 'itself.\\n\\nThey', 'come', 'through', 'you', 'but', 'not', 'from', 'you,\\n\\nAnd', 'though', 'they', 'are', 'with', 'you', 'yet', 'they\\nbelong', 'not', 'to', 'you.\\n\\n*****\\n\\nYou', 'may', 'give', 'them', 'your', 'love', 'but', 'not', 'your\\nthoughts,\\n\\nFor', 'they', 'have', 'their', 'own', 'thoughts.\\n\\nYou', 'may', 'house', 'their', 'bodies', 'but', 'not', 'their\\nsouls,\\n\\nFor', 'their', 'souls', 'dwell', 'in', 'the', 'house', 'of\\ntomorrow,', 'which', 'you', 'cannot', 'visit,', 'not\\neven', 'in', 'your', 'dreams.\\n\\nYou', 'may', 'strive', 'to', 'be', 'like', 'them,', 'but', 'seek\\nnot', 'to', 'make', 'them', 'like', 'you.', '', 'goes', 'not', 'backward', 'nor', 'tarries', 'with\\nyesterday.\\n\\nYou', 'are', 'the', 'bows', 'from', 'which', 'your\\nchildren', 'as', 'living', 'arrows', 'are', 'sent\\nforth.\\n\\nThe', 'archer', 'sees', 'the', 'mark', 'upon', 'the', 'path\\nof', 'the', 'infinite,', 'and', 'He', 'bends', 'you', 'with\\nHis', 'might', 'that', 'His', 'arrows', 'may', 'go', 'swift\\nand', 'far.\\n\\nLet', 'your', 'bending', 'in', 'the', 'Archer’s', 'hand', 'be\\nfor', 'gladness;\\n\\nFor', 'even', 'as', 'he', 'loves', 'the', 'arrow', 'that\\nflies,', 'so', 'He', 'loves', 'also', 'the', 'bow', 'that', 'is\\nstable.\\n\\n*****', '*****', 'said', 'a', 'rich', 'man,', 'Speak', 'to', 'us', 'of\\n_Giving_.\\n\\nAnd', 'he', 'answered:\\n\\nYou', 'give', 'but', 'little', 'when', 'you', 'give', 'of\\nyour', 'possessions.\\n\\nIt', 'is', 'when', 'you', 'give', 'of', 'yourself', 'that', 'you\\ntruly', 'give.\\n\\nFor', 'what', 'are', 'your', 'possessions', 'but', 'things\\nyou', 'keep', 'and', 'guard', 'for', 'fear', 'you', 'may', 'need\\nthem', 'tomorrow?\\n\\nAnd', 'tomorrow,', 'what', 'shall', 'tomorrow', 'bring\\nto', 'the', 'overprudent', 'dog', 'burying', 'bones\\nin', 'the', 'trackless', 'sand', 'as', 'he', 'follows', 'the\\npilgrims', 'to', 'the', 'holy', 'city?\\n\\nAnd', 'what', 'is', 'fear', 'of', 'need', 'but', 'need\\nitself?\\n\\nIs', 'not', 'dread', 'of', 'thirst', 'when', 'your', 'well', 'is\\nfull,', 'the', 'thirst', 'that', 'is', 'unquenchable?\\n\\nThere', 'are', 'those', 'who', 'give', 'little', 'of', 'the', 'which', 'they', 'have--and', 'they', 'give\\nit', 'for', 'recognition', 'and', 'their', 'hidden\\ndesire', 'makes', 'their', 'gifts', 'unwholesome.\\n\\nAnd', 'there', 'are', 'those', 'who', 'have', 'little', 'and\\ngive', 'it', 'all.\\n\\nThese', 'are', 'the', 'believers', 'in', 'life', 'and\\nthe', 'bounty', 'of', 'life,', 'and', 'their', 'coffer', 'is\\nnever', 'empty.\\n\\nThere', 'are', 'those', 'who', 'give', 'with', 'joy,', 'and\\nthat', 'joy', 'is', 'their', 'reward.\\n\\nAnd', 'there', 'are', 'those', 'who', 'give', 'with', 'pain,\\nand', 'that', 'pain', 'is', 'their', 'baptism.\\n\\nAnd', 'there', 'are', 'those', 'who', 'give', 'and', 'know\\nnot', 'pain', 'in', 'giving,', 'nor', 'do', 'they', 'seek\\njoy,', 'nor', 'give', 'with', 'mindfulness', 'of\\nvirtue;\\n\\nThey', 'give', 'as', 'in', 'yonder', 'valley', 'the', 'myrtle\\nbreathes', 'its', 'fragrance', 'into', 'space.\\n\\nThrough', 'the', 'hands', 'of', 'such', 'as', 'these', 'God\\nspeaks,', 'and', 'from', 'behind', 'their', 'eyes', 'He\\nsmiles', 'upon', 'the', 'earth.\\n\\n[Illustration:', '0039]\\n\\nIt', 'is', 'well', 'to', 'give', 'when', 'asked,', 'but', 'it\\nis', 'better', 'to', 'give', 'unasked,', 'through\\nunderstanding;\\n\\nAnd', 'to', 'the', 'open-handed', 'the', 'search', 'for', 'who', 'shall', 'receive', 'is', 'joy', 'greater\\nthan', 'giving.\\n\\nAnd', 'is', 'there', 'aught', 'you', 'would', 'withhold?\\n\\nAll', 'you', 'have', 'shall', 'some', 'day', 'be', 'given;\\n\\nTherefore', 'give', 'now,', 'that', 'the', 'season\\nof', 'giving', 'may', 'be', 'yours', 'and', 'not', 'your\\ninheritors’.\\n\\nYou', 'often', 'say,', '“I', 'would', 'give,', 'but', 'only\\nto', 'the', 'deserving.”\\n\\nThe', 'trees', 'in', 'your', 'orchard', 'say', 'not', 'so,\\nnor', 'the', 'flocks', 'in', 'your', 'pasture.\\n\\nThey', 'give', 'that', 'they', 'may', 'live,', 'for', 'to\\nwithhold', 'is', 'to', 'perish.\\n\\nSurely', 'he', 'who', 'is', 'worthy', 'to', 'receive', 'his\\ndays', 'and', 'his', 'nights,', 'is', 'worthy', 'of', 'all\\nelse', 'from', 'you.\\n\\nAnd', 'he', 'who', 'has', 'deserved', 'to', 'drink', 'from\\nthe', 'ocean', 'of', 'life', 'deserves', 'to', 'fill', 'his\\ncup', 'from', 'your', 'little', 'stream.\\n\\nAnd', 'what', 'desert', 'greater', 'shall', 'there', 'be,\\nthan', 'that', 'which', 'lies', 'in', 'the', 'courage\\nand', 'the', 'confidence,', 'nay', 'the', 'charity,', 'of\\nreceiving?\\n\\nAnd', 'who', 'are', 'you', 'that', 'men', 'should', 'rend', 'bosom', 'and', 'unveil', 'their', 'pride,\\nthat', 'you', 'may', 'see', 'their', 'worth', 'naked', 'and\\ntheir', 'pride', 'unabashed?\\n\\nSee', 'first', 'that', 'you', 'yourself', 'deserve', 'to\\nbe', 'a', 'giver,', 'and', 'an', 'instrument', 'of', 'giving.\\n\\nFor', 'in', 'truth', 'it', 'is', 'life', 'that', 'gives', 'unto\\nlife--while', 'you,', 'who', 'deem', 'yourself', 'a\\ngiver,', 'are', 'but', 'a', 'witness.\\n\\nAnd', 'you', 'receivers--and', 'you', 'are\\nall', 'receivers--assume', 'no', 'weight', 'of\\ngratitude,', 'lest', 'you', 'lay', 'a', 'yoke', 'upon\\nyourself', 'and', 'upon', 'him', 'who', 'gives.\\n\\nRather', 'rise', 'together', 'with', 'the', 'giver', 'on\\nhis', 'gifts', 'as', 'on', 'wings;\\n\\nFor', 'to', 'be', 'overmindful', 'of', 'your', 'debt,', 'is\\nito', 'doubt', 'his', 'generosity', 'who', 'has', 'the\\nfreehearted', 'earth', 'for', 'mother,', 'and', 'God\\nfor', 'father.\\n\\n[Illustration:', '0042]\\n\\n*****', '*****', 'an', 'old', 'man,', 'a', 'keeper', 'of', 'an\\ninn,', 'said,', 'Speak', 'to', 'us', 'of', '_Eating', 'and\\nDrinking_.\\n\\nAnd', 'he', 'said:\\n\\nWould', 'that', 'you', 'could', 'live', 'on', 'the\\nfragrance', 'of', 'the', 'earth,', 'and', 'like', 'an', 'air\\nplant', 'be', 'sustained', 'by', 'the', 'light.\\n\\nBut', 'since', 'you', 'must', 'kill', 'to', 'eat,', 'and', 'rob\\nthe', 'newly', 'born', 'of', 'its', 'mother’s', 'milk', 'to\\nquench', 'your', 'thirst,', 'let', 'it', 'then', 'be', 'an\\nact', 'of', 'worship,\\n\\nAnd', 'let', 'your', 'board', 'stand', 'an', 'altar', 'on\\nwhich', 'the', 'pure', 'and', 'the', 'innocent', 'of\\nforest', 'and', 'plain', 'are', 'sacrificed', 'for', 'that\\nwhich', 'is', 'purer', 'and', 'still', 'more', 'innocent\\nin', 'man.\\n\\n*****\\n\\nWhen', 'you', 'kill', 'a', 'beast', 'say', 'to', 'him', 'in', 'your\\nheart,\\n\\n“By', 'the', 'same', 'power', 'that', 'slays', 'you,', 'I', 'too\\nam', 'slain;', 'and', 'I', 'too', 'shall', 'be', 'consumed.', 'the', 'law', 'that', 'delivered', 'you', 'into\\nmy', 'hand', 'shall', 'deliver', 'me', 'into', 'a', 'mightier\\nhand.\\n\\nYour', 'blood', 'and', 'my', 'blood', 'is', 'naught', 'but\\nthe', 'sap', 'that', 'feeds', 'the', 'tree', 'of', 'heaven.”\\n\\n*****\\n\\nAnd', 'when', 'you', 'crush', 'an', 'apple', 'with', 'your\\nteeth,', 'say', 'to', 'it', 'in', 'your', 'heart,\\n\\n“Your', 'seeds', 'shall', 'live', 'in', 'my', 'body,\\n\\nAnd', 'the', 'buds', 'of', 'your', 'tomorrow', 'shall\\nblossom', 'in', 'my', 'heart,\\n\\nAnd', 'your', 'fragrance', 'shall', 'be', 'my', 'breath,\\nAnd', 'together', 'we', 'shall', 'rejoice', 'through\\nall', 'the', 'seasons.”\\n\\n*****\\n\\nAnd', 'in', 'the', 'autumn,', 'when', 'you', 'gather\\nthe', 'grapes', 'of', 'your', 'vineyards', 'for', 'the\\nwinepress,', 'say', 'in', 'your', 'heart,\\n\\n“I', 'too', 'am', 'a', 'vineyard,', 'and', 'my', 'fruit', 'shall\\nbe', 'gathered', 'for', 'the', 'winepress,\\n\\nAnd', 'like', 'new', 'wine', 'I', 'shall', 'be', 'kept', 'in\\neternal', 'vessels.”\\n\\nAnd', 'in', 'winter,', 'when', 'you', 'draw', 'the', 'wine,', 'there', 'be', 'in', 'your', 'heart', 'a', 'song\\nfor', 'each', 'cup;\\n\\nAnd', 'let', 'there', 'be', 'in', 'the', 'song', 'a\\nremembrance', 'for', 'the', 'autumn', 'days,', 'and', 'for\\nthe', 'vineyard,', 'and', 'for', 'the', 'winepress.\\n\\n*****\\n*****', 'Then', 'a', 'ploughman', 'said,', 'Speak\\nto', 'us', 'of', '_Work_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYou', 'work', 'that', 'you', 'may', 'keep', 'pace', 'with', 'the\\nearth', 'and', 'the', 'soul', 'of', 'the', 'earth.\\n\\nFor', 'to', 'be', 'idle', 'is', 'to', 'become', 'a', 'stranger\\nunto', 'the', 'seasons,', 'and', 'to', 'step', 'out', 'of\\nlife’s', 'procession,', 'that', 'marches', 'in\\nmajesty', 'and', 'proud', 'submission', 'towards', 'the\\ninfinite.\\n\\nWhen', 'you', 'work', 'you', 'are', 'a', 'flute', 'through\\nwhose', 'heart', 'the', 'whispering', 'of', 'the', 'hours\\nturns', 'to', 'music.\\n\\nWhich', 'of', 'you', 'would', 'be', 'a', 'reed,', 'dumb', 'and\\nsilent,', 'when', 'all', 'else', 'sings', 'together', 'in\\nunison?\\n\\nAlways', 'you', 'have', 'been', 'told', 'that', 'work', 'is', 'a\\ncurse', 'and', 'labour', 'a', 'misfortune.\\n\\nBut', 'I', 'say', 'to', 'you', 'that', 'when', 'you', 'work', 'you\\nfulfil', 'a', 'part', 'of', 'earth’s', 'furthest', 'dream,', 'to', 'you', 'when', 'that', 'dream', 'was\\nborn,\\n\\nAnd', 'in', 'keeping', 'yourself', 'with', 'labour', 'you\\nare', 'in', 'truth', 'loving', 'life,\\n\\nAnd', 'to', 'love', 'life', 'through', 'labour', 'is', 'to', 'be\\nintimate', 'with', 'life’s', 'inmost', 'secret.\\n\\n*****\\n\\nBut', 'if', 'you', 'in', 'your', 'pain', 'call', 'birth', 'an\\naffliction', 'and', 'the', 'support', 'of', 'the', 'flesh\\na', 'curse', 'written', 'upon', 'your', 'brow,', 'then', 'I\\nanswer', 'that', 'naught', 'but', 'the', 'sweat', 'of\\nyour', 'brow', 'shall', 'wash', 'away', 'that', 'which', 'is\\nwritten.\\n\\nYou', 'have', 'been', 'told', 'also', 'that', 'life', 'is\\ndarkness,', 'and', 'in', 'your', 'weariness', 'you', 'echo\\nwhat', 'was', 'said', 'by', 'the', 'weary.\\n\\nAnd', 'I', 'say', 'that', 'life', 'is', 'indeed', 'darkness\\n‘save', 'when', 'there', 'is', 'urge,\\n\\nAnd', 'all', 'urge', 'is', 'blind', 'save', 'when', 'there', 'is\\nknowledge,\\n\\nAnd', 'all', 'knowledge', 'is', 'vain', 'save', 'when\\nthere', 'is', 'work,\\n\\nAnd', 'all', 'work', 'is', 'empty', 'save', 'when', 'there', 'is\\nlove;\\n\\nAnd', 'when', 'you', 'work', 'with', 'love', 'you', 'bind', 'to', 'yourself,', 'and', 'to', 'one\\nanother,', 'and', 'to', 'God.\\n\\n*****\\n\\nAnd', 'what', 'is', 'it', 'to', 'work', 'with', 'love?\\n\\nIt', 'is', 'to', 'weave', 'the', 'cloth', 'with', 'threads\\ndrawn', 'from', 'your', 'heart,', 'even', 'as', 'if', 'your\\nbeloved', 'were', 'to', 'wear', 'that', 'cloth.\\n\\nIt', 'is', 'to', 'build', 'a', 'house', 'with', 'affection,\\neven', 'as', 'if', 'your', 'beloved', 'were', 'to', 'dwell', 'in\\nthat', 'house.\\n\\nIt', 'is', 'to', 'sow', 'seeds', 'with', 'tenderness', 'and\\nreap', 'the', 'harvest', 'with', 'joy,', 'even', 'as', 'if\\nyour', 'beloved', 'were', 'to', 'eat', 'the', 'fruit.\\n\\nIt', 'is', 'to', 'charge', 'all', 'things', 'you', 'fashion\\nwith', 'a', 'breath', 'of', 'your', 'own', 'spirit,\\n\\nAnd', 'to', 'know', 'that', 'all', 'the', 'blessed', 'dead\\nare', 'standing', 'about', 'you', 'and', 'watching.\\n\\nOften', 'have', 'I', 'heard', 'you', 'say,', 'as', 'if\\nspeaking', 'in', 'sleep,', '“He', 'who', 'works', 'in\\nmarble,', 'and', 'finds', 'the', 'shape', 'of', 'his', 'own\\nsoul', 'in', 'the', 'stone,', 'is', 'nobler', 'than', 'he', 'who\\nploughs', 'the', 'soil.', '', 'he', 'who', 'seizes\\nthe', 'rainbow', 'to', 'lay', 'it', 'on', 'a', 'cloth', 'in', 'the\\nlikeness', 'of', 'man,', 'is', 'more', 'than', 'he', 'who\\nmakes', 'the', 'sandals', 'for', 'our', 'feet.”\\n\\nBut', 'I', 'say,', 'not', 'in', 'sleep', 'but', 'in', 'the\\noverwakefulness', 'of', 'noontide,', 'that', 'the\\nwind', 'speaks', 'not', 'more', 'sweetly', 'to', 'the\\ngiant', 'oaks', 'than', 'to', 'the', 'least', 'of', 'all', 'the\\nblades', 'of', 'grass;\\n\\nAnd', 'he', 'alone', 'is', 'great', 'who', 'turns', 'the\\nvoice', 'of', 'the', 'wind', 'into', 'a', 'song', 'made\\nsweeter', 'by', 'his', 'own', 'loving.\\n\\n*****\\n\\nWork', 'is', 'love', 'made', 'visible.\\n\\nAnd', 'if', 'you', 'cannot', 'work', 'with', 'love', 'but\\nonly', 'with', 'distaste,', 'it', 'is', 'better', 'that\\nyou', 'should', 'leave', 'your', 'work', 'and', 'sit', 'at\\nthe', 'gate', 'of', 'the', 'temple', 'and', 'take', 'alms', 'of\\nthose', 'who', 'work', 'with', 'joy.\\n\\nFor', 'if', 'you', 'bake', 'bread', 'with', 'indifference,\\nyou', 'bake', 'a', 'bitter', 'bread', 'that', 'feeds', 'but\\nhalf', 'man’s', 'hunger.\\n\\nAnd', 'if', 'you', 'grudge', 'the', 'crushing', 'of', 'the\\ngrapes,', 'your', 'grudge', 'distils', 'a', 'poison', 'in\\nthe', 'wine.', '', 'if', 'you', 'sing', 'though', 'as\\nangels,', 'and', 'love', 'not', 'the', 'singing,', 'you\\nmuffle', 'man’s', 'ears', 'to', 'the', 'voices', 'of', 'the\\nday', 'and', 'the', 'voices', 'of', 'the', 'night.\\n\\n*****', '*****', 'a', 'woman', 'said,', 'Speak', 'to', 'us', 'of\\n_Joy', 'and', 'Sorrow_.\\n\\nAnd', 'he', 'answered:\\n\\nYour', 'joy', 'is', 'your', 'sorrow', 'unmasked.\\n\\nAnd', 'the', 'selfsame', 'well', 'from', 'which', 'your\\nlaughter', 'rises', 'was', 'oftentimes', 'filled\\nwith', 'your', 'tears.\\n\\nAnd', 'how', 'else', 'can', 'it', 'be?\\n\\nThe', 'deeper', 'that', 'sorrow', 'carves', 'into', 'your\\nbeing,', 'the', 'more', 'joy', 'you', 'can', 'contain.\\n\\nIs', 'not', 'the', 'cup', 'that', 'holds', 'your', 'wine', 'the\\nvery', 'cup', 'that', 'was', 'burned', 'in', 'the', 'potter’s\\noven?\\n\\nAnd', 'is', 'not', 'the', 'lute', 'that', 'soothes', 'your\\nspirit,', 'the', 'very', 'wood', 'that', 'was', 'hollowed\\nwith', 'knives?\\n\\nWhen', 'you', 'are', 'joyous,', 'look', 'deep', 'into', 'your\\nheart', 'and', 'you', 'shall', 'find', 'it', 'is', 'only\\nthat', 'which', 'has', 'given', 'you', 'sorrow', 'that', 'is\\ngiving', 'you', 'joy.\\n\\nWhen', 'you', 'are', 'sorrowful', 'look', 'again', 'in', 'heart,', 'and', 'you', 'shall', 'see', 'that\\nin', 'truth', 'you', 'are', 'weeping', 'for', 'that', 'which\\nhas', 'been', 'your', 'delight.\\n\\n*****\\n\\nSome', 'of', 'you', 'say,', '“Joy', 'is', 'greater', 'than\\nsorrow,”', 'and', 'others', 'say,', '“Nay,', 'sorrow', 'is\\nthe', 'greater.”\\n\\nBut', 'I', 'say', 'unto', 'you,', 'they', 'are\\ninseparable.\\n\\nTogether', 'they', 'come,', 'and', 'when', 'one', 'sits\\nalone', 'with', 'you', 'at', 'your', 'board,', 'remember\\nthat', 'the', 'other', 'is', 'asleep', 'upon', 'your', 'bed.\\n\\nVerily', 'you', 'are', 'suspended', 'like', 'scales\\nbetween', 'your', 'sorrow', 'and', 'your', 'joy.\\n\\nOnly', 'when', 'you', 'are', 'empty', 'are', 'you', 'at\\nstandstill', 'and', 'balanced.\\n\\nWhen', 'the', 'treasure-keeper', 'lifts', 'you', 'to\\nweigh', 'his', 'gold', 'and', 'his', 'silver,', 'needs\\nmust', 'your', 'joy', 'or', 'your', 'sorrow', 'rise', 'or\\nfall.\\n\\n*****', '*****', 'a', 'mason', 'came', 'forth', 'and', 'said,\\nSpeak', 'to', 'us', 'of', '_Houses_.\\n\\nAnd', 'he', 'answered', 'and', 'said:\\n\\nBuild', 'of', 'your', 'imaginings', 'a', 'bower', 'in', 'the\\nwilderness', 'ere', 'you', 'build', 'a', 'house', 'within\\nthe', 'city', 'walls.\\n\\nFor', 'even', 'as', 'you', 'have', 'home-comings', 'in\\nyour', 'twilight,', 'so', 'has', 'the', 'wanderer', 'in\\nyou,', 'the', 'ever', 'distant', 'and', 'alone.\\n\\nYour', 'house', 'is', 'your', 'larger', 'body.\\n\\nIt', 'grows', 'in', 'the', 'sun', 'and', 'sleeps', 'in', 'the\\nstillness', 'of', 'the', 'night;', 'and', 'it', 'is', 'not\\ndreamless.', 'Does', 'not', 'your', 'house', 'dream?\\nand', 'dreaming,', 'leave', 'the', 'city', 'for', 'grove\\nor', 'hilltop?\\n\\nWould', 'that', 'I', 'could', 'gather', 'your', 'houses\\ninto', 'my', 'hand,', 'and', 'like', 'a', 'sower', 'scatter\\nthem', 'in', 'forest', 'and', 'meadow.\\n\\nWould', 'the', 'valleys', 'were', 'your', 'streets,', 'and\\nthe', 'green', 'paths', 'your', 'alleys,', 'that', 'you', 'seek', 'one', 'another', 'through\\nvineyards,', 'and', 'come', 'with', 'the', 'fragrance\\nof', 'the', 'earth', 'in', 'your', 'garments.\\n\\nBut', 'these', 'things', 'are', 'not', 'yet', 'to', 'be.\\n\\nIn', 'their', 'fear', 'your', 'forefathers', 'gathered\\nyou', 'too', 'near', 'together.', 'And', 'that', 'fear\\nshall', 'endure', 'a', 'little', 'longer.', 'A', 'little\\nlonger', 'shall', 'your', 'city', 'walls', 'separate\\nyour', 'hearths', 'from', 'your', 'fields.\\n\\n*****\\n\\nAnd', 'tell', 'me,', 'people', 'of', 'Orphalese,', 'what\\nhave', 'you', 'in', 'these', 'houses?', 'And', 'what', 'is', 'it\\nyou', 'guard', 'with', 'fastened', 'doors?\\n\\nHave', 'you', 'peace,', 'the', 'quiet', 'urge', 'that\\nreveals', 'your', 'power?\\n\\nHave', 'you', 'remembrances,', 'the', 'glimmering\\narches', 'that', 'span', 'the', 'summits', 'of', 'the\\nmind?\\n\\nHave', 'you', 'beauty,', 'that', 'leads', 'the', 'heart\\nfrom', 'things', 'fashioned', 'of', 'wood', 'and', 'stone\\nto', 'the', 'holy', 'mountain?\\n\\nTell', 'me,', 'have', 'you', 'these', 'in', 'your', 'houses?\\n\\nOr', 'have', 'you', 'only', 'comfort,', 'and', 'the', 'lust\\nfor', 'comfort,', 'that', 'stealthy', 'thing', 'that', 'the', 'house', 'a', 'guest,', 'and', 'then\\nbecomes', 'a', 'host,', 'and', 'then', 'a', 'master?\\n\\n*****\\n\\nAy,', 'and', 'it', 'becomes', 'a', 'tamer,', 'and', 'with\\nhook', 'and', 'scourge', 'makes', 'puppets', 'of', 'your\\nlarger', 'desires.\\n\\nThough', 'its', 'hands', 'are', 'silken,', 'its', 'heart\\nis', 'of', 'iron.\\n\\nIt', 'lulls', 'you', 'to', 'sleep', 'only', 'to', 'stand', 'by\\nyour', 'bed', 'and', 'jeer', 'at', 'the', 'dignity', 'of', 'the\\nflesh.\\n\\nIt', 'makes', 'mock', 'of', 'your', 'sound', 'senses,', 'and\\nlays', 'them', 'in', 'thistledown', 'like', 'fragile\\nvessels.\\n\\nVerily', 'the', 'lust', 'for', 'comfort', 'murders\\nthe', 'passion', 'of', 'the', 'soul,', 'and', 'then', 'walks\\ngrinning', 'in', 'the', 'funeral.\\n\\nBut', 'you,', 'children', 'of', 'space,', 'you', 'restless\\nin', 'rest,', 'you', 'shall', 'not', 'be', 'trapped', 'nor\\ntamed.\\n\\nYour', 'house', 'shall', 'be', 'not', 'an', 'anchor', 'but', 'a\\nmast.\\n\\nIt', 'shall', 'not', 'be', 'a', 'glistening', 'film', 'that', 'a', 'wound,', 'but', 'an', 'eyelid', 'that\\nguards', 'the', 'eye.\\n\\nYou', 'shall', 'not', 'fold', 'your', 'wings', 'that', 'you\\nmay', 'pass', 'through', 'doors,', 'nor', 'bend', 'your\\nheads', 'that', 'they', 'strike', 'not', 'against', 'a\\nceiling,', 'nor', 'fear', 'to', 'breathe', 'lest', 'walls\\nshould', 'crack', 'and', 'fall', 'down.\\n\\nYou', 'shall', 'not', 'dwell', 'in', 'tombs', 'made', 'by', 'the\\ndead', 'for', 'the', 'living.\\n\\nAnd', 'though', 'of', 'magnificence', 'and\\nsplendour,', 'your', 'house', 'shall', 'not', 'hold\\nyour', 'secret', 'nor', 'shelter', 'your', 'longing.\\n\\nFor', 'that', 'which', 'is', 'boundless', 'in', 'you\\nabides', 'in', 'the', 'mansion', 'of', 'the', 'sky,', 'whose\\ndoor', 'is', 'the', 'morning', 'mist,', 'and', 'whose\\nwindows', 'are', 'the', 'songs', 'and', 'the', 'silences\\nof', 'night.\\n\\n*****', '*****', 'the', 'weaver', 'said,', 'Speak', 'to', 'us', 'of\\n_Clothes_.\\n\\nAnd', 'he', 'answered:\\n\\nYour', 'clothes', 'conceal', 'much', 'of', 'your\\nbeauty,', 'yet', 'they', 'hide', 'not', 'the\\nunbeautiful.\\n\\nAnd', 'though', 'you', 'seek', 'in', 'garments', 'the\\nfreedom', 'of', 'privacy', 'you', 'may', 'find', 'in', 'them\\na', 'harness', 'and', 'a', 'chain.\\n\\nWould', 'that', 'you', 'could', 'meet', 'the', 'sun', 'and\\nthe', 'wind', 'with', 'more', 'of', 'your', 'skin', 'and', 'less\\nof', 'your', 'raiment,\\n\\nFor', 'the', 'breath', 'of', 'life', 'is', 'in', 'the\\nsunlight', 'and', 'the', 'hand', 'of', 'life', 'is', 'in', 'the\\nwind.\\n\\nSome', 'of', 'you', 'say,', '“It', 'is', 'the', 'north', 'wind\\nwho', 'has', 'woven', 'the', 'clothes', 'we', 'wear.”\\n\\nAnd', 'I', 'say,', 'Ay,', 'it', 'was', 'the', 'north', 'wind,\\n\\nBut', 'shame', 'was', 'his', 'loom,', 'and', 'the\\nsoftening', 'of', 'the', 'sinews', 'was', 'his', 'thread.\\n\\nAnd', 'when', 'his', 'work', 'was', 'done', 'he', 'laughed', 'in\\nthe', 'forest.', '', 'not', 'that', 'modesty\\nis', 'for', 'a', 'shield', 'against', 'the', 'eye', 'of', 'the\\nunclean.\\n\\nAnd', 'when', 'the', 'unclean', 'shall', 'be', 'no', 'more,\\nwhat', 'were', 'modesty', 'but', 'a', 'fetter', 'and', 'a\\nfouling', 'of', 'the', 'mind?\\n\\nAnd', 'forget', 'not', 'that', 'the', 'earth', 'delights\\nto', 'feel', 'your', 'bare', 'feet', 'and', 'the', 'winds\\nlong', 'to', 'play', 'with', 'your', 'hair.\\n\\n*****', '*****', 'a', 'merchant', 'said,', 'Speak', 'to', 'us', 'of\\n_Buying', 'and', 'Selling_.\\n\\nAnd', 'he', 'answered', 'and', 'said:\\n\\nTo', 'you', 'the', 'earth', 'yields', 'her', 'fruit,', 'and\\nyou', 'shall', 'not', 'want', 'if', 'you', 'but', 'know', 'how\\nto', 'fill', 'your', 'hands.\\n\\nIt', 'is', 'in', 'exchanging', 'the', 'gifts', 'of', 'the\\nearth', 'that', 'you', 'shall', 'find', 'abundance', 'and\\nbe', 'satisfied.\\n\\nYet', 'unless', 'the', 'exchange', 'be', 'in', 'love', 'and\\nkindly', 'justice,', 'it', 'will', 'but', 'lead', 'some', 'to\\ngreed', 'and', 'others', 'to', 'hunger.\\n\\nWhen', 'in', 'the', 'market', 'place', 'you', 'toilers', 'of\\nthe', 'sea', 'and', 'fields', 'and', 'vineyards', 'meet\\nthe', 'weavers', 'and', 'the', 'potters', 'and', 'the\\ngatherers', 'of', 'spices,--\\n\\nInvoke', 'then', 'the', 'master', 'spirit', 'of', 'the\\nearth,', 'to', 'come', 'into', 'your', 'midst', 'and\\nsanctify', 'the', 'scales', 'and', 'the', 'reckoning\\nthat', 'weighs', 'value', 'against', 'value.', '', 'not', 'the', 'barren-handed', 'to', 'take\\npart', 'in', 'your', 'transactions,', 'who', 'would\\nsell', 'their', 'words', 'for', 'your', 'labour.\\n\\nTo', 'such', 'men', 'you', 'should', 'say,\\n\\n“Come', 'with', 'us', 'to', 'the', 'field,', 'or', 'go', 'with\\nour', 'brothers', 'to', 'the', 'sea', 'and', 'cast', 'your\\nnet;\\n\\nFor', 'the', 'land', 'and', 'the', 'sea', 'shall', 'be\\nbountiful', 'to', 'you', 'even', 'as', 'to', 'us.”\\n\\n*****\\n\\nAnd', 'if', 'there', 'come', 'the', 'singers', 'and', 'the\\ndancers', 'and', 'the', 'flute', 'players,--buy', 'of\\ntheir', 'gifts', 'also.\\n\\nFor', 'they', 'too', 'are', 'gatherers', 'of', 'fruit', 'and\\nfrankincense,', 'and', 'that', 'which', 'they', 'bring,\\nthough', 'fashioned', 'of', 'dreams,', 'is', 'raiment\\nand', 'food', 'for', 'your', 'soul.\\n\\nAnd', 'before', 'you', 'leave', 'the', 'market', 'place,\\nsee', 'that', 'no', 'one', 'has', 'gone', 'his', 'way', 'with\\nempty', 'hands.\\n\\nFor', 'the', 'master', 'spirit', 'of', 'the', 'earth', 'shall\\nnot', 'sleep', 'peacefully', 'upon', 'the', 'wind\\ntill', 'the', 'needs', 'of', 'the', 'least', 'of', 'you', 'are\\nsatisfied.\\n\\n*****', '*****', 'one', 'of', 'the', 'judges', 'of', 'the', 'city\\nstood', 'forth', 'and', 'said,', 'Speak', 'to', 'us', 'of\\n_Crime', 'and', 'Punishment_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nIt', 'is', 'when', 'your', 'spirit', 'goes', 'wandering\\nupon', 'the', 'wind,\\n\\nThat', 'you,', 'alone', 'and', 'unguarded,', 'commit\\na', 'wrong', 'unto', 'others', 'and', 'therefore', 'unto\\nyourself.\\n\\nAnd', 'for', 'that', 'wrong', 'committed', 'must', 'you\\nknock', 'and', 'wait', 'a', 'while', 'unheeded', 'at', 'the\\ngate', 'of', 'the', 'blessed.\\n\\nLike', 'the', 'ocean', 'is', 'your', 'god-self;\\n\\nIt', 'remains', 'for', 'ever', 'undefiled.\\n\\nAnd', 'like', 'the', 'ether', 'it', 'lifts', 'but', 'the\\nwinged.\\n\\nEven', 'like', 'the', 'sun', 'is', 'your', 'god-self;\\n\\nIt', 'knows', 'not', 'the', 'ways', 'of', 'the', 'mole', 'nor\\nseeks', 'it', 'the', 'holes', 'of', 'the', 'serpent.', 'your', 'god-self', 'dwells', 'not', 'alone\\nin', 'your', 'being.\\n\\nMuch', 'in', 'you', 'is', 'still', 'man,', 'and', 'much', 'in\\nyou', 'is', 'not', 'yet', 'man,\\n\\nBut', 'a', 'shapeless', 'pigmy', 'that', 'walks', 'asleep\\nin', 'the', 'mist', 'searching', 'for', 'its', 'own\\nawakening.\\n\\nAnd', 'of', 'the', 'man', 'in', 'you', 'would', 'I', 'now', 'speak.\\n\\nFor', 'it', 'is', 'he', 'and', 'not', 'your', 'god-self', 'nor\\nthe', 'pigmy', 'in', 'the', 'mist,', 'that', 'knows', 'crime\\nand', 'the', 'punishment', 'of', 'crime.\\n\\n*****\\n\\nOftentimes', 'have', 'I', 'heard', 'you', 'speak', 'of', 'one\\nwho', 'commits', 'a', 'wrong', 'as', 'though', 'he', 'were\\nnot', 'one', 'of', 'you,', 'but', 'a', 'stranger', 'unto', 'you\\nand', 'an', 'intruder', 'upon', 'your', 'world.\\n\\nBut', 'I', 'say', 'that', 'even', 'as', 'the', 'holy', 'and', 'the\\nrighteous', 'cannot', 'rise', 'beyond', 'the', 'highest\\nwhich', 'is', 'in', 'each', 'one', 'of', 'you,\\n\\nSo', 'the', 'wicked', 'and', 'the', 'weak', 'cannot', 'fall\\nlower', 'than', 'the', 'lowest', 'which', 'is', 'in', 'you\\nalso.\\n\\nAnd', 'as', 'a', 'single', 'leaf', 'turns', 'not', 'yellow\\nbut', 'with', 'the', 'silent', 'knowledge', 'of', 'the\\nwhole', 'tree,', '', 'the', 'wrong-doer', 'cannot\\ndo', 'wrong', 'without', 'the', 'hidden', 'will', 'of', 'you\\nall.\\n\\nLike', 'a', 'procession', 'you', 'walk', 'together\\ntowards', 'your', 'god-self.\\n\\n[Illustration:', '0064]\\n\\nYou', 'are', 'the', 'way', 'and', 'the', 'wayfarers.\\n\\nAnd', 'when', 'one', 'of', 'you', 'falls', 'down', 'he', 'falls\\nfor', 'those', 'behind', 'him,', 'a', 'caution', 'against\\nthe', 'stumbling', 'stone.\\n\\nAy,', 'and', 'he', 'falls', 'for', 'those', 'ahead', 'of', 'him,\\nwho', 'though', 'faster', 'and', 'surer', 'of', 'foot,', 'yet\\nremoved', 'not', 'the', 'stumbling', 'stone.\\n\\nAnd', 'this', 'also,', 'though', 'the', 'word', 'lie', 'heavy\\nupon', 'your', 'hearts:\\n\\nThe', 'murdered', 'is', 'not', 'unaccountable', 'for\\nhis', 'own', 'murder,\\n\\nAnd', 'the', 'robbed', 'is', 'not', 'blameless', 'in', 'being\\nrobbed.\\n\\nThe', 'righteous', 'is', 'not', 'innocent', 'of', 'the\\ndeeds', 'of', 'the', 'wicked,\\n\\nAnd', 'the', 'white-handed', 'is', 'not', 'clean', 'in', 'the\\ndoings', 'of', 'the', 'felon.\\n\\nYea,', 'the', 'guilty', 'is', 'oftentimes', 'the', 'victim\\nof', 'the', 'injured,\\n\\nAnd', 'still', 'more', 'often', 'the', 'condemned', 'is', 'burden', 'bearer', 'for', 'the', 'guiltless\\nand', 'unblamed.\\n\\nYou', 'cannot', 'separate', 'the', 'just', 'from', 'the\\nunjust', 'and', 'the', 'good', 'from', 'the', 'wicked;\\n\\nFor', 'they', 'stand', 'together', 'before', 'the', 'face\\nof', 'the', 'sun', 'even', 'as', 'the', 'black', 'thread', 'and\\nthe', 'white', 'are', 'woven', 'together.\\n\\nAnd', 'when', 'the', 'black', 'thread', 'breaks,', 'the\\nweaver', 'shall', 'look', 'into', 'the', 'whole', 'cloth,\\nand', 'he', 'shall', 'examine', 'the', 'loom', 'also.\\n\\n*****\\n\\nIf', 'any', 'of', 'you', 'would', 'bring', 'to', 'judgment\\nthe', 'unfaithful', 'wife,\\n\\nLet', 'him', 'also', 'weigh', 'the', 'heart', 'of', 'her\\nhusband', 'in', 'scales,', 'and', 'measure', 'his', 'soul\\nwith', 'measurements.\\n\\nAnd', 'let', 'him', 'who', 'would', 'lash', 'the', 'offender\\nlook', 'unto', 'the', 'spirit', 'of', 'the', 'offended.\\n\\nAnd', 'if', 'any', 'of', 'you', 'would', 'punish', 'in', 'the\\nname', 'of', 'righteousness', 'and', 'lay', 'the', 'ax\\nunto', 'the', 'evil', 'tree,', 'let', 'him', 'see', 'to', 'its\\nroots;\\n\\nAnd', 'verily', 'he', 'will', 'find', 'the', 'roots', 'of', 'the\\ngood', 'and', 'the', 'bad,', 'the', 'fruitful', 'and', 'the', 'all', 'entwined', 'together', 'in\\nthe', 'silent', 'heart', 'of', 'the', 'earth.\\n\\nAnd', 'you', 'judges', 'who', 'would', 'be', 'just,\\n\\nWhat', 'judgment', 'pronounce', 'you', 'upon', 'him\\nwho', 'though', 'honest', 'in', 'the', 'flesh', 'yet', 'is', 'a\\nthief', 'in', 'spirit?\\n\\nWhat', 'penalty', 'lay', 'you', 'upon', 'him', 'who', 'slays\\nin', 'the', 'flesh', 'yet', 'is', 'himself', 'slain', 'in', 'the\\nspirit?\\n\\nAnd', 'how', 'prosecute', 'you', 'him', 'who', 'in', 'action\\nis', 'a', 'deceiver', 'and', 'an', 'oppressor,\\n\\nYet', 'who', 'also', 'is', 'aggrieved', 'and', 'outraged?\\n\\n*****\\n\\nAnd', 'how', 'shall', 'you', 'punish', 'those', 'whose\\nremorse', 'is', 'already', 'greater', 'than', 'their\\nmisdeeds?\\n\\nIs', 'not', 'remorse', 'the', 'justice', 'which', 'is\\nadministered', 'by', 'that', 'very', 'law', 'which', 'you\\nwould', 'fain', 'serve?\\n\\nYet', 'you', 'cannot', 'lay', 'remorse', 'upon', 'the\\ninnocent', 'nor', 'lift', 'it', 'from', 'the', 'heart', 'of\\nthe', 'guilty.\\n\\nUnbidden', 'shall', 'it', 'call', 'in', 'the', 'night,\\nthat', 'men', 'may', 'wake', 'and', 'gaze', 'upon\\nthemselves.', '', 'you', 'who', 'would\\nunderstand', 'justice,', 'how', 'shall', 'you', 'unless\\nyou', 'look', 'upon', 'all', 'deeds', 'in', 'the', 'fullness\\nof', 'light?\\n\\nOnly', 'then', 'shall', 'you', 'know', 'that', 'the', 'erect\\nand', 'the', 'fallen', 'are', 'but', 'one', 'man', 'standing\\nin', 'twilight', 'between', 'the', 'night', 'of', 'his\\npigmy-self', 'and', 'the', 'day', 'of', 'his', 'god-self,\\nAnd', 'that', 'the', 'corner-stone', 'of', 'the', 'temple\\nis', 'not', 'higher', 'than', 'the', 'lowest', 'stone', 'in\\nits', 'foundation.\\n\\n*****', '*****', 'a', 'lawyer', 'said,', 'But', 'what', 'of', 'our\\n_Laws_,', 'master?\\n\\nAnd', 'he', 'answered:\\n\\nYou', 'delight', 'in', 'laying', 'down', 'laws,\\n\\nYet', 'you', 'delight', 'more', 'in', 'breaking', 'them.\\n\\nLike', 'children', 'playing', 'by', 'the', 'ocean', 'who\\nbuild', 'sand-towers', 'with', 'constancy', 'and\\nthen', 'destroy', 'them', 'with', 'laughter.\\n\\nBut', 'while', 'you', 'build', 'your', 'sand-towers', 'the\\nocean', 'brings', 'more', 'sand', 'to', 'the', 'shore,\\n\\nAnd', 'when', 'you', 'destroy', 'them', 'the', 'ocean\\nlaughs', 'with', 'you.\\n\\nVerily', 'the', 'ocean', 'laughs', 'always', 'with', 'the\\ninnocent.\\n\\nBut', 'what', 'of', 'those', 'to', 'whom', 'life', 'is', 'not\\nan', 'ocean,', 'and', 'man-made', 'laws', 'are', 'not\\nsand-towers,\\n\\nBut', 'to', 'whom', 'life', 'is', 'a', 'rock,', 'and', 'the', 'law\\na', 'chisel', 'with', 'which', 'they', 'would', 'carve', 'it\\nin', 'their', 'own', 'likeness?', '', 'of', 'the\\ncripple', 'who', 'hates', 'dancers?\\n\\nWhat', 'of', 'the', 'ox', 'who', 'loves', 'his', 'yoke', 'and\\ndeems', 'the', 'elk', 'and', 'deer', 'of', 'the', 'forest\\nstray', 'and', 'vagrant', 'things?\\n\\nWhat', 'of', 'the', 'old', 'serpent', 'who', 'cannot', 'shed\\nhis', 'skin,', 'and', 'calls', 'all', 'others', 'naked', 'and\\nshameless?\\n\\nAnd', 'of', 'him', 'who', 'comes', 'early', 'to', 'the\\nwedding-feast,', 'and', 'when', 'over-fed', 'and\\ntired', 'goes', 'his', 'way', 'saying', 'that', 'all\\nfeasts', 'are', 'violation', 'and', 'all', 'feasters\\nlawbreakers?\\n\\n*****\\n\\nWhat', 'shall', 'I', 'say', 'of', 'these', 'save', 'that\\nthey', 'too', 'stand', 'in', 'the', 'sunlight,', 'but', 'with\\ntheir', 'backs', 'to', 'the', 'sun?\\n\\nThey', 'see', 'only', 'their', 'shadows,', 'and', 'their\\nshadows', 'are', 'their', 'laws.\\n\\nAnd', 'what', 'is', 'the', 'sun', 'to', 'them', 'but', 'a', 'caster\\nof', 'shadows?\\n\\nAnd', 'what', 'is', 'it', 'to', 'acknowledge', 'the\\nlaws', 'but', 'to', 'stoop', 'down', 'and', 'trace', 'their\\nshadows', 'upon', 'the', 'earth?\\n\\nBut', 'you', 'who', 'walk', 'facing', 'the', 'sun,', 'what', 'drawn', 'on', 'the', 'earth', 'can', 'hold\\nyou?\\n\\nYou', 'who', 'travel', 'with', 'the', 'wind,', 'what\\nweather-vane', 'shall', 'direct', 'your', 'course?\\n\\nWhat', 'man’s', 'law', 'shall', 'bind', 'you', 'if', 'you\\nbreak', 'your', 'yoke', 'but', 'upon', 'no', 'man’s', 'prison\\ndoor?\\n\\nWhat', 'laws', 'shall', 'you', 'fear', 'if', 'you', 'dance\\nbut', 'stumble', 'against', 'no', 'man’s', 'iron\\nchains?\\n\\nAnd', 'who', 'is', 'he', 'that', 'shall', 'bring', 'you', 'to\\njudgment', 'if', 'you', 'tear', 'off', 'your', 'garment\\nyet', 'leave', 'it', 'in', 'no', 'man’s', 'path?\\n\\n*****\\n\\nPeople', 'of', 'Orphalese,', 'you', 'can', 'muffle', 'the\\ndrum,', 'and', 'you', 'can', 'loosen', 'the', 'strings\\nof', 'the', 'lyre,', 'but', 'who', 'shall', 'command', 'the\\nskylark', 'not', 'to', 'sing?\\n\\n*****', '*****', 'an', 'orator', 'said,', 'Speak', 'to', 'us', 'of\\n_Freedom_.\\n\\nAnd', 'he', 'answered:\\n\\nAt', 'the', 'city', 'gate', 'and', 'by', 'your', 'fireside\\nI', 'have', 'seen', 'you', 'prostrate', 'yourself', 'and\\nworship', 'your', 'own', 'freedom,\\n\\nEven', 'as', 'slaves', 'humble', 'themselves', 'before\\na', 'tyrant', 'and', 'praise', 'him', 'though', 'he', 'slays\\nthem.\\n\\nAy,', 'in', 'the', 'grove', 'of', 'the', 'temple', 'and', 'in\\nthe', 'shadow', 'of', 'the', 'citadel', 'I', 'have', 'seen\\nthe', 'freest', 'among', 'you', 'wear', 'their', 'freedom\\nas', 'a', 'yoke', 'and', 'a', 'handcuff.\\n\\nAnd', 'my', 'heart', 'bled', 'within', 'me;', 'for', 'you\\ncan', 'only', 'be', 'free', 'when', 'even', 'the', 'desire\\nof', 'seeking', 'freedom', 'becomes', 'a', 'harness\\nto', 'you,', 'and', 'when', 'you', 'cease', 'to', 'speak', 'of\\nfreedom', 'as', 'a', 'goal', 'and', 'a', 'fulfilment.\\n\\nYou', 'shall', 'be', 'free', 'indeed', 'when', 'your\\ndays', 'are', 'not', 'without', 'a', 'care', 'nor', 'your', 'without', 'a', 'want', 'and', 'a', 'grief,\\n\\nBut', 'rather', 'when', 'these', 'things', 'girdle', 'your\\nlife', 'and', 'yet', 'you', 'rise', 'above', 'them', 'naked\\nand', 'unbound.\\n\\n*****\\n\\nAnd', 'how', 'shall', 'you', 'rise', 'beyond', 'your', 'days\\nand', 'nights', 'unless', 'you', 'break', 'the\\nchains', 'which', 'you', 'at', 'the', 'dawn', 'of', 'your\\nunderstanding', 'have', 'fastened', 'around', 'your\\nnoon', 'hour?\\n\\nIn', 'truth', 'that', 'which', 'you', 'call', 'freedom', 'is\\nthe', 'strongest', 'of', 'these', 'chains,', 'though\\nits', 'links', 'glitter', 'in', 'the', 'sun', 'and', 'dazzle\\nyour', 'eyes.\\n\\nAnd', 'what', 'is', 'it', 'but', 'fragments', 'of', 'your\\nown', 'self', 'you', 'would', 'discard', 'that', 'you', 'may\\nbecome', 'free?\\n\\nIf', 'it', 'is', 'an', 'unjust', 'law', 'you', 'would\\nabolish,', 'that', 'law', 'was', 'written', 'with', 'your\\nown', 'hand', 'upon', 'your', 'own', 'forehead.\\n\\nYou', 'cannot', 'erase', 'it', 'by', 'burning', 'your', 'law\\nbooks', 'nor', 'by', 'washing', 'the', 'foreheads', 'of\\nyour', 'judges,', 'though', 'you', 'pour', 'the', 'sea\\nupon', 'them.\\n\\nAnd', 'if', 'it', 'is', 'a', 'despot', 'you', 'would', 'see', 'first', 'that', 'his', 'throne\\nerected', 'within', 'you', 'is', 'destroyed.\\n\\nFor', 'how', 'can', 'a', 'tyrant', 'rule', 'the', 'free', 'and\\nthe', 'proud,', 'but', 'for', 'a', 'tyranny', 'in', 'their\\nown', 'freedom', 'and', 'a', 'shame', 'in', 'their', 'own\\npride?\\n\\nAnd', 'if', 'it', 'is', 'a', 'care', 'you', 'would', 'cast', 'off,\\nthat', 'cart', 'has', 'been', 'chosen', 'by', 'you', 'rather\\nthan', 'imposed', 'upon', 'you.\\n\\nAnd', 'if', 'it', 'is', 'a', 'fear', 'you', 'would', 'dispel,\\nthe', 'seat', 'of', 'that', 'fear', 'is', 'in', 'your', 'heart\\nand', 'not', 'in', 'the', 'hand', 'of', 'the', 'feared.\\n\\n*****\\n\\nVerily', 'all', 'things', 'move', 'within', 'your', 'being\\nin', 'constant', 'half', 'embrace,', 'the', 'desired\\nand', 'the', 'dreaded,', 'the', 'repugnant', 'and', 'the\\ncherished,', 'the', 'pursued', 'and', 'that', 'which\\nyou', 'would', 'escape.\\n\\nThese', 'things', 'move', 'within', 'you', 'as', 'lights\\nand', 'shadows', 'in', 'pairs', 'that', 'cling.\\n\\nAnd', 'when', 'the', 'shadow', 'fades', 'and', 'is', 'no\\nmore,', 'the', 'light', 'that', 'lingers', 'becomes', 'a\\nshadow', 'to', 'another', 'light.\\n\\nAnd', 'thus', 'your', 'freedom', 'when', 'it', 'loses', 'its\\nfetters', 'becomes', 'itself', 'the', 'fetter', 'of', 'a\\ngreater', 'freedom.\\n\\n*****', '*****', 'the', 'priestess', 'spoke', 'again\\nand', 'said:', 'Speak', 'to', 'us', 'of', '_Reason', 'and\\nPassion_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYour', 'soul', 'is', 'oftentimes', 'a', 'battlefield,\\nupon', 'which', 'your', 'reason', 'and', 'your', 'judgment\\nwage', 'war', 'against', 'your', 'passion', 'and', 'your\\nappetite.\\n\\nWould', 'that', 'I', 'could', 'be', 'the', 'peacemaker', 'in\\nyour', 'soul,', 'that', 'I', 'might', 'turn', 'the', 'discord\\nand', 'the', 'rivalry', 'of', 'your', 'elements', 'into\\noneness', 'and', 'melody.\\n\\nBut', 'how', 'shall', 'I,', 'unless', 'you', 'yourselves\\nbe', 'also', 'the', 'peacemakers,', 'nay,', 'the', 'lovers\\nof', 'all', 'your', 'elements?\\n\\nYour', 'reason', 'and', 'your', 'passion', 'are', 'the\\nrudder', 'and', 'the', 'sails', 'of', 'your', 'seafaring\\nsoul.\\n\\nIf', 'either', 'your', 'sails', 'or', 'your', 'rudder', 'be\\nbroken,', 'you', 'can', 'but', 'toss', 'and', 'drift,\\nor', 'else', 'be', 'held', 'at', 'a', 'standstill', 'in\\nmid-seas.', '', 'reason,', 'ruling', 'alone,\\nis', 'a', 'force', 'confining;', 'and', 'passion,\\nunattended,', 'is', 'a', 'flame', 'that', 'burns', 'to', 'its\\nown', 'destruction.\\n\\nTherefore', 'let', 'your', 'soul', 'exalt', 'your\\nreason', 'to', 'the', 'height', 'of', 'passion,', 'that', 'it\\nmay', 'sing;\\n\\nAnd', 'let', 'it', 'direct', 'your', 'passion', 'with\\nreason,', 'that', 'your', 'passion', 'may', 'live\\nthrough', 'its', 'own', 'daily', 'resurrection,\\nand', 'like', 'the', 'phoenix', 'rise', 'above', 'its', 'own\\nashes.\\n\\n*****\\n\\nI', 'would', 'have', 'you', 'consider', 'your', 'judgment\\nand', 'your', 'appetite', 'even', 'as', 'you', 'would', 'two\\nloved', 'guests', 'in', 'your', 'house.\\n\\nSurely', 'you', 'would', 'not', 'honour', 'one', 'guest\\nabove', 'the', 'other;', 'for', 'he', 'who', 'is', 'more\\nmindful', 'of', 'one', 'loses', 'the', 'love', 'and', 'the\\nfaith', 'of', 'both\\n\\nAmong', 'the', 'hills,', 'when', 'you', 'sit', 'in', 'the\\ncool', 'shade', 'of', 'the', 'white', 'poplars,', 'sharing\\nthe', 'peace', 'and', 'serenity', 'of', 'distant', 'fields\\nand', 'meadows--then', 'let', 'your', 'heart', 'say', 'in\\nsilence,', '“God', 'rests', 'in', 'reason.”\\n\\nAnd', 'when', 'the', 'storm', 'comes,', 'and', 'the', 'wind', 'shakes', 'the', 'forest,\\nand', 'thunder', 'and', 'lightning', 'proclaim', 'the\\nmajesty', 'of', 'the', 'sky,--then', 'let', 'your', 'heart\\nsay', 'in', 'awe,', '“God', 'moves', 'in', 'passion.”\\n\\nAnd', 'since', 'you', 'are', 'a', 'breath', 'in', 'God’s\\nsphere,', 'and', 'a', 'leaf', 'in', 'God’s', 'forest,', 'you\\ntoo', 'should', 'rest', 'in', 'reason', 'and', 'move', 'in\\npassion.\\n\\n*****', '*****', 'a', 'woman', 'spoke,', 'saying,', 'Tell', 'us\\nof', '_Pain_.\\n\\nAnd', 'he', 'said:\\n\\nYour', 'pain', 'is', 'the', 'breaking', 'of', 'the', 'shell\\nthat', 'encloses', 'your', 'understanding.\\n\\nEven', 'as', 'the', 'stone', 'of', 'the', 'fruit', 'must\\nbreak,', 'that', 'its', 'heart', 'may', 'stand', 'in', 'the\\nsun,', 'so', 'must', 'you', 'know', 'pain.\\n\\nAnd', 'could', 'you', 'keep', 'your', 'heart', 'in', 'wonder\\nat', 'the', 'daily', 'miracles', 'of', 'your', 'life,', 'your\\npain', 'would', 'not', 'seem', 'less', 'wondrous', 'than\\nyour', 'joy;\\n\\nAnd', 'you', 'would', 'accept', 'the', 'seasons', 'of', 'your\\nheart,', 'even', 'as', 'you', 'have', 'always', 'accepted\\nthe', 'seasons', 'that', 'pass', 'over', 'your', 'fields.\\n\\nAnd', 'you', 'would', 'watch', 'with', 'serenity\\nthrough', 'the', 'winters', 'of', 'your', 'grief.\\n\\nMuch', 'of', 'your', 'pain', 'is', 'self-chosen.\\n\\nIt', 'is', 'the', 'bitter', 'potion', 'by', 'which', 'the\\nphysician', '', 'you', 'heals', 'your', 'sick\\nself.\\n\\nTherefore', 'trust', 'the', 'physician,', 'and', 'drink\\nhis', 'remedy', 'in', 'silence', 'and', 'tranquillity:\\nFor', 'his', 'hand,', 'though', 'heavy', 'and', 'hard,', 'is\\nguided', 'by', 'the', 'tender', 'hand', 'of', 'the', 'Unseen,\\nAnd', 'the', 'cup', 'he', 'brings,', 'though', 'it', 'burn\\nyour', 'lips,', 'has', 'been', 'fashioned', 'of', 'the\\nclay', 'which', 'the', 'Potter', 'has', 'moistened', 'with\\nHis', 'own', 'sacred', 'tears.\\n\\n*****', '*****', 'a', 'man', 'said,', 'Speak', 'to', 'us', 'of\\n_Self-Knowledge_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYour', 'hearts', 'know', 'in', 'silence', 'the', 'secrets\\nof', 'the', 'days', 'and', 'the', 'nights.\\n\\nBut', 'your', 'ears', 'thirst', 'for', 'the', 'sound', 'of\\nyour', 'heart’s', 'knowledge.\\n\\nYou', 'would', 'know', 'in', 'words', 'that', 'which', 'you\\nhave', 'always', 'known', 'in', 'thought.\\n\\nYou', 'would', 'touch', 'with', 'your', 'fingers', 'the\\nnaked', 'body', 'of', 'your', 'dreams.\\n\\nAnd', 'it', 'is', 'well', 'you', 'should.\\n\\nThe', 'hidden', 'well-spring', 'of', 'your', 'soul', 'must\\nneeds', 'rise', 'and', 'run', 'murmuring', 'to', 'the', 'sea;\\n\\nAnd', 'the', 'treasure', 'of', 'your', 'infinite', 'depths\\nwould', 'be', 'revealed', 'to', 'your', 'eyes.\\n\\nBut', 'let', 'there', 'be', 'no', 'scales', 'to', 'weigh', 'your\\nunknown', 'treasure;\\n\\nAnd', 'seek', 'not', 'the', 'depths', 'of', 'your', 'with', 'staff', 'or', 'sounding\\nline.\\n\\nFor', 'self', 'is', 'a', 'sea', 'boundless', 'and\\nmeasureless.\\n\\n*****\\n\\nSay', 'not,', '“I', 'have', 'found', 'the', 'truth,”', 'but\\nrather,', '“I', 'have', 'found', 'a', 'truth.”\\n\\nSay', 'not,', '“I', 'have', 'found', 'the', 'path', 'of', 'the\\nsoul.”', 'Say', 'rather,', '“I', 'have', 'met', 'the', 'soul\\nwalking', 'upon', 'my', 'path.”\\n\\nFor', 'the', 'soul', 'walks', 'upon', 'all', 'paths.\\n\\nThe', 'soul', 'walks', 'not', 'upon', 'a', 'line,', 'neither\\ndoes', 'it', 'grow', 'like', 'a', 'reed.\\n\\nThe', 'soul', 'unfolds', 'itself,', 'like', 'a', 'lotus', 'of\\ncountless', 'petals.\\n\\n[Illustration:', '0083]\\n\\n*****', '*****', 'said', 'a', 'teacher,', 'Speak', 'to', 'us', 'of\\n_Teaching_.\\n\\nAnd', 'he', 'said:\\n\\n“No', 'man', 'can', 'reveal', 'to', 'you', 'aught', 'but', 'that\\nwhich', 'already', 'lies', 'half', 'asleep', 'in', 'the\\ndawning', 'of', 'your', 'knowledge.\\n\\nThe', 'teacher', 'who', 'walks', 'in', 'the', 'shadow', 'of\\nthe', 'temple,', 'among', 'his', 'followers,', 'gives\\nnot', 'of', 'his', 'wisdom', 'but', 'rather', 'of', 'his\\nfaith', 'and', 'his', 'lovingness.\\n\\nIf', 'he', 'is', 'indeed', 'wise', 'he', 'does', 'not', 'bid\\nyou', 'enter', 'the', 'house', 'of', 'his', 'wisdom,', 'but\\nrather', 'leads', 'you', 'to', 'the', 'threshold', 'of\\nyour', 'own', 'mind.\\n\\nThe', 'astronomer', 'may', 'speak', 'to', 'you', 'of', 'his\\nunderstanding', 'of', 'space,', 'but', 'he', 'cannot\\ngive', 'you', 'his', 'understanding.\\n\\nThe', 'musician', 'may', 'sing', 'to', 'you', 'of', 'the\\nrhythm', 'which', 'is', 'in', 'all', 'space,', 'but', 'he\\ncannot', 'give', 'you', 'the', 'ear', 'which', 'arrests\\nthe', 'rhythm', 'nor', 'the', 'voice', 'that', 'echoes', 'it.', 'he', 'who', 'is', 'versed', 'in', 'the', 'science\\nof', 'numbers', 'can', 'tell', 'of', 'the', 'regions\\nof', 'weight', 'and', 'measure,', 'but', 'he', 'cannot\\nconduct', 'you', 'thither.\\n\\nFor', 'the', 'vision', 'of', 'one', 'man', 'lends', 'not', 'its\\nwings', 'to', 'another', 'man.\\n\\nAnd', 'even', 'as', 'each', 'one', 'of', 'you', 'stands', 'alone\\nin', 'God’s', 'knowledge,', 'so', 'must', 'each', 'one', 'of\\nyou', 'be', 'alone', 'in', 'his', 'knowledge', 'of', 'God', 'and\\nin', 'his', 'understanding', 'of', 'the', 'earth.\\n\\n*****', '*****', 'a', 'youth', 'said,', 'Speak', 'to', 'us', 'of\\n_Friendship_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYour', 'friend', 'is', 'your', 'needs', 'answered.\\n\\nHe', 'is', 'your', 'field', 'which', 'you', 'sow', 'with', 'love\\nand', 'reap', 'with', 'thanksgiving.\\n\\nAnd', 'he', 'is', 'your', 'board', 'and', 'your', 'fireside.\\n\\nFor', 'you', 'come', 'to', 'him', 'with', 'your', 'hunger,\\nand', 'you', 'seek', 'him', 'for', 'peace.\\n\\nWhen', 'your', 'friend', 'speaks', 'his', 'mind', 'you\\nfear', 'not', 'the', '“nay”', 'in', 'your', 'own', 'mind,', 'nor\\ndo', 'you', 'withhold', 'the', '“ay.”\\n\\nAnd', 'when', 'he', 'is', 'silent', 'your', 'heart', 'ceases\\nnot', 'to', 'listen', 'to', 'his', 'heart;\\n\\nFor', 'without', 'words,', 'in', 'friendship,', 'all\\nthoughts,', 'all', 'desires,', 'all', 'expectations\\nare', 'born', 'and', 'shared,', 'with', 'joy', 'that', 'is\\nunacclaimed.\\n\\nWhen', 'you', 'part', 'from', 'your', 'friend,', 'you\\ngrieve', 'not;\\n\\nFor', 'that', 'which', 'you', 'love', 'most', 'in', 'him\\nmay', 'be', 'clearer', 'in', 'his', 'absence,', 'as', 'the\\nmountain', 'to', 'the', 'climber', 'is', 'clearer\\nfrom', 'the', 'plain.', '', 'let', 'there', 'be', 'no\\npurpose', 'in', 'friendship', 'save', 'the', 'deepening\\nof', 'the', 'spirit.\\n\\nFor', 'love', 'that', 'seeks', 'aught', 'but', 'the\\ndisclosure', 'of', 'its', 'own', 'mystery', 'is', 'not\\nlove', 'but', 'a', 'net', 'cast', 'forth:', 'and', 'only', 'the\\nunprofitable', 'is', 'caught.\\n\\n*****\\n\\nAnd', 'let', 'your', 'best', 'be', 'for', 'your', 'friend.\\n\\nIf', 'he', 'must', 'know', 'the', 'ebb', 'of', 'your', 'tide,\\nlet', 'him', 'know', 'its', 'flood', 'also.\\n\\nFor', 'what', 'is', 'your', 'friend', 'that', 'you', 'should\\nseek', 'him', 'with', 'hours', 'to', 'kill?\\n\\nSeek', 'him', 'always', 'with', 'hours', 'to', 'live.\\n\\nFor', 'it', 'is', 'his', 'to', 'fill', 'your', 'need,', 'but', 'not\\nyour', 'emptiness.\\n\\nAnd', 'in', 'the', 'sweetness', 'of', 'friendship\\nlet', 'there', 'be', 'laughter,', 'and', 'sharing', 'of\\npleasures.\\n\\nFor', 'in', 'the', 'dew', 'of', 'little', 'things\\nthe', 'heart', 'finds', 'its', 'morning', 'and', 'is\\nrefreshed.\\n\\n*****', '*****', 'then', 'a', 'scholar', 'said,', 'Speak', 'of\\n_Talking_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYou', 'talk', 'when', 'you', 'cease', 'to', 'be', 'at', 'peace\\nwith', 'your', 'thoughts;\\n\\nAnd', 'when', 'you', 'can', 'no', 'longer', 'dwell', 'in', 'the\\nsolitude', 'of', 'your', 'heart', 'you', 'live', 'in', 'your\\nlips,', 'and', 'sound', 'is', 'a', 'diversion', 'and', 'a\\npastime.\\n\\nAnd', 'in', 'much', 'of', 'your', 'talking,', 'thinking', 'is\\nhalf', 'murdered.\\n\\nFor', 'thought', 'is', 'a', 'bird', 'of', 'space,', 'that', 'in\\na', 'cage', 'of', 'words', 'may', 'indeed', 'unfold', 'its\\nwings', 'but', 'cannot', 'fly.\\n\\nThere', 'are', 'those', 'among', 'you', 'who', 'seek', 'the\\ntalkative', 'through', 'fear', 'of', 'being', 'alone.\\n\\nThe', 'silence', 'of', 'aloneness', 'reveals', 'to\\ntheir', 'eyes', 'their', 'naked', 'selves', 'and', 'they\\nwould', 'escape.\\n\\nAnd', 'there', 'are', 'those', 'who', 'talk,', 'and', 'knowledge', 'or', 'forethought', 'reveal\\na', 'truth', 'which', 'they', 'themselves', 'do', 'not\\nunderstand.\\n\\nAnd', 'there', 'are', 'those', 'who', 'have', 'the', 'truth\\nwithin', 'them,', 'but', 'they', 'tell', 'it', 'not', 'in\\nwords.\\n\\nIn', 'the', 'bosom', 'of', 'such', 'as', 'these', 'the', 'spirit\\ndwells', 'in', 'rhythmic', 'silence.\\n\\n*****\\n\\nWhen', 'you', 'meet', 'your', 'friend', 'on', 'the\\nroadside', 'or', 'in', 'the', 'market', 'place,', 'let', 'the\\nspirit', 'in', 'you', 'move', 'your', 'lips', 'and', 'direct\\nyour', 'tongue.\\n\\nLet', 'the', 'voice', 'within', 'your', 'voice', 'speak', 'to\\nthe', 'ear', 'of', 'his', 'ear;\\n\\nFor', 'his', 'soul', 'will', 'keep', 'the', 'truth', 'of\\nyour', 'heart', 'as', 'the', 'taste', 'of', 'the', 'wine', 'is\\nremembered\\n\\nWhen', 'the', 'colour', 'is', 'forgotten', 'and', 'the\\nvessel', 'is', 'no', 'more.\\n\\n*****', '*****', 'an', 'astronomer', 'said,', 'Master,', 'what\\nof', '_Time_?\\n\\nAnd', 'he', 'answered:\\n\\nYou', 'would', 'measure', 'time', 'the', 'measureless\\nand', 'the', 'immeasurable.\\n\\nYou', 'would', 'adjust', 'your', 'conduct', 'and\\neven', 'direct', 'the', 'course', 'of', 'your', 'spirit\\naccording', 'to', 'hours', 'and', 'seasons.\\n\\nOf', 'time', 'you', 'would', 'make', 'a', 'stream', 'upon\\nwhose', 'bank', 'you', 'would', 'sit', 'and', 'watch', 'its\\nflowing.\\n\\nYet', 'the', 'timeless', 'in', 'you', 'is', 'aware', 'of\\nlife’s', 'timelessness,\\n\\nAnd', 'knows', 'that', 'yesterday', 'is', 'but', 'today’s\\nmemory', 'and', 'tomorrow', 'is', 'today’s', 'dream.\\n\\nAnd', 'that', 'that', 'which', 'sings', 'and\\ncontemplates', 'in', 'you', 'is', 'still', 'dwelling\\nwithin', 'the', 'bounds', 'of', 'that', 'first', 'moment\\nwhich', 'scattered', 'the', 'stars', 'into', 'space.', 'among', 'you', 'does', 'not', 'feel', 'that', 'his\\npower', 'to', 'love', 'is', 'boundless?\\n\\nAnd', 'yet', 'who', 'does', 'not', 'feel', 'that', 'very\\nlove,', 'though', 'boundless,', 'encompassed\\nwithin', 'the', 'centre', 'of', 'his', 'being,', 'and\\nmoving', 'not', 'from', 'love', 'thought', 'to', 'love\\nthought,', 'nor', 'from', 'love', 'deeds', 'to', 'other\\nlove', 'deeds?\\n\\nAnd', 'is', 'not', 'time', 'even', 'as', 'love', 'is,\\nundivided', 'and', 'paceless?\\n\\n*****\\n\\nBut', 'if', 'in', 'your', 'thought', 'you', 'must', 'measure\\ntime', 'into', 'seasons,', 'let', 'each', 'season\\nencircle', 'all', 'the', 'other', 'seasons,\\n\\nAnd', 'let', 'today', 'embrace', 'the', 'past', 'with\\nremembrance', 'and', 'the', 'future', 'with', 'longing.\\n\\n*****', '*****', 'one', 'of', 'the', 'elders', 'of', 'the', 'city\\nsaid,', 'Speak', 'to', 'us', 'of', '_Good', 'and', 'Evil_.\\n\\nAnd', 'he', 'answered:\\n\\nOf', 'the', 'good', 'in', 'you', 'I', 'can', 'speak,', 'but', 'not\\nof', 'the', 'evil.\\n\\nFor', 'what', 'is', 'evil', 'but', 'good', 'tortured', 'by\\nits', 'own', 'hunger', 'and', 'thirst?\\n\\nVerily', 'when', 'good', 'is', 'hungry', 'it', 'seeks', 'food\\neven', 'in', 'dark', 'caves,', 'and', 'when', 'it', 'thirsts\\nit', 'drinks', 'even', 'of', 'dead', 'waters.\\n\\nYou', 'are', 'good', 'when', 'you', 'are', 'one', 'with\\nyourself.\\n\\nYet', 'when', 'you', 'are', 'not', 'one', 'with', 'yourself\\nyou', 'are', 'not', 'evil.\\n\\nFor', 'a', 'divided', 'house', 'is', 'not', 'a', 'den', 'of\\nthieves;', 'it', 'is', 'only', 'a', 'divided', 'house.\\n\\nAnd', 'a', 'ship', 'without', 'rudder', 'may', 'wander\\naimlessly', 'among', 'perilous', 'isles', 'yet', 'sink\\nnot', 'to', 'the', 'bottom.', '', 'are', 'good', 'when\\nyou', 'strive', 'to', 'give', 'of', 'yourself.\\n\\nYet', 'you', 'are', 'not', 'evil', 'when', 'you', 'seek', 'gain\\nfor', 'yourself.\\n\\nFor', 'when', 'you', 'strive', 'for', 'gain', 'you', 'are\\nbut', 'a', 'root', 'that', 'clings', 'to', 'the', 'earth', 'and\\nsucks', 'at', 'her', 'breast.\\n\\nSurely', 'the', 'fruit', 'cannot', 'say', 'to', 'the', 'root,\\n“Be', 'like', 'me,', 'ripe', 'and', 'full', 'and', 'ever\\ngiving', 'of', 'your', 'abundance.”\\n\\nFor', 'to', 'the', 'fruit', 'giving', 'is', 'a', 'need,', 'as\\nreceiving', 'is', 'a', 'need', 'to', 'the', 'root.\\n\\n*****\\n\\nYou', 'are', 'good', 'when', 'you', 'are', 'fully', 'awake', 'in\\nyour', 'speech,\\n\\nYet', 'you', 'are', 'not', 'evil', 'when', 'you', 'sleep\\nwhile', 'your', 'tongue', 'staggers', 'without\\npurpose.\\n\\nAnd', 'even', 'stumbling', 'speech', 'may', 'strengthen\\na', 'weak', 'tongue.\\n\\nYou', 'are', 'good', 'when', 'you', 'walk', 'to', 'your', 'goal\\nfirmly', 'and', 'with', 'bold', 'steps.\\n\\nYet', 'you', 'are', 'not', 'evil', 'when', 'you', 'go', 'thither\\nlimping.', '', 'those', 'who', 'limp', 'go', 'not\\nbackward.\\n\\nBut', 'you', 'who', 'are', 'strong', 'and', 'swift,', 'see\\nthat', 'you', 'do', 'not', 'limp', 'before', 'the', 'lame,\\ndeeming', 'it', 'kindness.\\n\\n*****\\n\\nYou', 'are', 'good', 'in', 'countless', 'ways,', 'and', 'you\\nare', 'not', 'evil', 'when', 'you', 'are', 'not', 'good,\\n\\nYou', 'are', 'only', 'loitering', 'and', 'sluggard.\\n\\nPity', 'that', 'the', 'stags', 'cannot', 'teach\\nswiftness', 'to', 'the', 'turtles.\\n\\nIn', 'your', 'longing', 'for', 'your', 'giant', 'self', 'lies\\nyour', 'goodness:', 'and', 'that', 'longing', 'is', 'in\\nall', 'of', 'you.\\n\\nBut', 'in', 'some', 'of', 'you', 'that', 'longing', 'is', 'a\\ntorrent', 'rushing', 'with', 'might', 'to', 'the', 'sea,\\ncarrying', 'the', 'secrets', 'of', 'the', 'hillsides\\nand', 'the', 'songs', 'of', 'the', 'forest.\\n\\nAnd', 'in', 'others', 'it', 'is', 'a', 'flat', 'stream', 'that\\nloses', 'itself', 'in', 'angles', 'and', 'bends', 'and\\nlingers', 'before', 'it', 'reaches', 'the', 'shore.\\n\\nBut', 'let', 'not', 'him', 'who', 'longs', 'much', 'say', 'to', 'who', 'longs', 'little,', '“Wherefore', 'are\\nyou', 'slow', 'and', 'halting?”\\n\\nFor', 'the', 'truly', 'good', 'ask', 'not', 'the', 'naked,\\n“Where', 'is', 'your', 'garment?”', 'nor', 'the\\nhouseless,', '“What', 'has', 'befallen', 'your\\nhouse?”\\n\\n*****', '*****', 'a', 'priestess', 'said,', 'Speak', 'to', 'us\\nof', '_Prayer_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYou', 'pray', 'in', 'your', 'distress', 'and', 'in', 'your\\nneed;', 'would', 'that', 'you', 'might', 'pray', 'also\\nin', 'the', 'fullness', 'of', 'your', 'joy', 'and', 'in', 'your\\ndays', 'of', 'abundance.\\n\\nFor', 'what', 'is', 'prayer', 'but', 'the', 'expansion', 'of\\nyourself', 'into', 'the', 'living', 'ether?\\n\\nAnd', 'if', 'it', 'is', 'for', 'your', 'comfort', 'to', 'pour\\nyour', 'darkness', 'into', 'space,', 'it', 'is', 'also', 'for\\nyour', 'delight', 'to', 'pour', 'forth', 'the', 'dawning\\nof', 'your', 'heart.\\n\\nAnd', 'if', 'you', 'cannot', 'but', 'weep', 'when', 'your\\nsoul', 'summons', 'you', 'to', 'prayer,', 'she', 'should\\nspur', 'you', 'again', 'and', 'yet', 'again,', 'though\\nweeping,', 'until', 'you', 'shall', 'come', 'laughing.\\n\\nWhen', 'you', 'pray', 'you', 'rise', 'to', 'meet', 'in', 'the\\nair', 'those', 'who', 'are', 'praying', 'at', 'that', 'very', 'and', 'whom', 'save', 'in', 'prayer', 'you\\nmay', 'not', 'meet.\\n\\nTherefore', 'let', 'your', 'visit', 'to', 'that', 'temple\\ninvisible', 'be', 'for', 'naught', 'but', 'ecstasy', 'and\\nsweet', 'communion.\\n\\nFor', 'if', 'you', 'should', 'enter', 'the', 'temple', 'for\\nno', 'other', 'purpose', 'than', 'asking', 'you', 'shall\\nnot', 'receive:\\n\\nAnd', 'if', 'you', 'should', 'enter', 'into', 'it', 'to\\nhumble', 'yourself', 'you', 'shall', 'not', 'be', 'lifted:\\n\\nOr', 'even', 'if', 'you', 'should', 'enter', 'into', 'it', 'to\\nbeg', 'for', 'the', 'good', 'of', 'others', 'you', 'shall', 'not\\nbe', 'heard.\\n\\nIt', 'is', 'enough', 'that', 'you', 'enter', 'the', 'temple\\ninvisible.\\n\\n*****\\n\\nI', 'cannot', 'teach', 'you', 'how', 'to', 'pray', 'in', 'words.\\n\\nGod', 'listens', 'not', 'to', 'your', 'words', 'save', 'when\\nHe', 'Himself', 'utters', 'them', 'through', 'your\\nlips.\\n\\nAnd', 'I', 'cannot', 'teach', 'you', 'the', 'prayer', 'of', 'the\\nseas', 'and', 'the', 'forests', 'and', 'the', 'mountains.', 'you', 'who', 'are', 'born', 'of', 'the\\nmountains', 'and', 'the', 'forests', 'and', 'the', 'seas\\ncan', 'find', 'their', 'prayer', 'in', 'your', 'heart,\\n\\nAnd', 'if', 'you', 'but', 'listen', 'in', 'the', 'stillness\\nof', 'the', 'night', 'you', 'shall', 'hear', 'them', 'saying\\nin', 'silence,\\n\\n“Our', 'God,', 'who', 'art', 'our', 'winged', 'self,', 'it', 'is\\nthy', 'will', 'in', 'us', 'that', 'willeth.\\n\\nIt', 'is', 'thy', 'desire', 'in', 'us', 'that', 'desireth.\\n\\nIt', 'is', 'thy', 'urge', 'in', 'us', 'that', 'would', 'turn', 'our\\nnights,', 'which', 'are', 'thine,', 'into', 'days', 'which\\nare', 'thine', 'also.\\n\\nWe', 'cannot', 'ask', 'thee', 'for', 'aught,', 'for', 'thou\\nknowest', 'our', 'needs', 'before', 'they', 'are', 'born\\nin', 'us:\\n\\nThou', 'art', 'our', 'need;', 'and', 'in', 'giving', 'us', 'more\\nof', 'thyself', 'thou', 'givest', 'us', 'all.”\\n\\n[Illustration:', '0100]\\n\\n*****', '*****', 'a', 'hermit,', 'who', 'visited', 'the', 'city\\nonce', 'a', 'year,', 'came', 'forth', 'and', 'said,', 'Speak\\nto', 'us', 'of', '_Pleasure_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nPleasure', 'is', 'a', 'freedom-song,\\n\\nBut', 'it', 'is', 'not', 'freedom.\\n\\nIt', 'is', 'the', 'blossoming', 'of', 'your', 'desires,\\n\\nBut', 'it', 'is', 'not', 'their', 'fruit.\\n\\nIt', 'is', 'a', 'depth', 'calling', 'unto', 'a', 'height,\\n\\nBut', 'it', 'is', 'not', 'the', 'deep', 'nor', 'the', 'high.\\n\\nIt', 'is', 'the', 'caged', 'taking', 'wing,\\n\\nBut', 'it', 'is', 'not', 'space', 'encompassed.\\n\\nAy,', 'in', 'very', 'truth,', 'pleasure', 'is', 'a\\nfreedom-song.\\n\\nAnd', 'I', 'fain', 'would', 'have', 'you', 'sing', 'it', 'with\\nfullness', 'of', 'heart;', 'yet', 'I', 'would', 'not', 'have\\nyou', 'lose', 'your', 'hearts', 'in', 'the', 'singing.\\n\\nSome', 'of', 'your', 'youth', 'seek', 'pleasure', 'as', 'if\\nit', 'were', 'all,', 'and', 'they', 'are', 'judged', 'and\\nrebuked.', '', 'would', 'not', 'judge', 'nor\\nrebuke', 'them.', 'I', 'would', 'have', 'them', 'seek.\\n\\nFor', 'they', 'shall', 'find', 'pleasure,', 'but', 'not\\nher', 'alone;\\n\\nSeven', 'are', 'her', 'sisters,', 'and', 'the', 'least', 'of\\nthem', 'is', 'more', 'beautiful', 'than', 'pleasure.\\n\\nHave', 'you', 'not', 'heard', 'of', 'the', 'man', 'who', 'was\\ndigging', 'in', 'the', 'earth', 'for', 'roots', 'and', 'found\\na', 'treasure?\\n\\n*****\\n\\nAnd', 'some', 'of', 'your', 'elders', 'remember\\npleasures', 'with', 'regret', 'like', 'wrongs\\ncommitted', 'in', 'drunkenness.\\n\\nBut', 'regret', 'is', 'the', 'beclouding', 'of', 'the', 'mind\\nand', 'not', 'its', 'chastisement.\\n\\nThey', 'should', 'remember', 'their', 'pleasures\\nwith', 'gratitude,', 'as', 'they', 'would', 'the\\nharvest', 'of', 'a', 'summer.\\n\\nYet', 'if', 'it', 'comforts', 'them', 'to', 'regret,', 'let\\nthem', 'be', 'comforted.\\n\\nAnd', 'there', 'are', 'among', 'you', 'those', 'who\\nare', 'neither', 'young', 'to', 'seek', 'nor', 'old', 'to\\nremember;\\n\\nAnd', 'in', 'their', 'fear', 'of', 'seeking', 'and\\nremembering', '', 'shun', 'all', 'pleasures,\\nlest', 'they', 'neglect', 'the', 'spirit', 'or', 'offend\\nagainst', 'it.\\n\\nBut', 'even', 'in', 'their', 'foregoing', 'is', 'their\\npleasure.\\n\\nAnd', 'thus', 'they', 'too', 'find', 'a', 'treasure', 'though\\nthey', 'dig', 'for', 'roots', 'with', 'quivering', 'hands.\\n\\nBut', 'tell', 'me,', 'who', 'is', 'he', 'that', 'can', 'offend\\nthe', 'spirit?\\n\\nShall', 'the', 'nightingale', 'offend', 'the\\nstillness', 'of', 'the', 'night,', 'or', 'the', 'firefly\\nthe', 'stars?\\n\\nAnd', 'shall', 'your', 'flame', 'or', 'your', 'smoke\\nburden', 'the', 'wind?\\n\\nThink', 'you', 'the', 'spirit', 'is', 'a', 'still', 'pool\\nwhich', 'you', 'can', 'trouble', 'with', 'a', 'staff?\\n\\n*****\\n\\nOftentimes', 'in', 'denying', 'yourself', 'pleasure\\nyou', 'do', 'but', 'store', 'the', 'desire', 'in', 'the\\nrecesses', 'of', 'your', 'being.\\n\\nWho', 'knows', 'but', 'that', 'which', 'seems', 'omitted\\ntoday,', 'waits', 'for', 'tomorrow?\\n\\nEven', 'your', 'body', 'knows', 'its', 'heritage\\nand', 'its', 'rightful', 'need', 'and', 'will', 'not', 'be\\ndeceived.\\n\\nAnd', 'your', 'body', 'is', 'the', 'harp', 'of', 'your', 'soul,\\n\\nAnd', 'it', 'is', 'yours', 'to', 'bring', 'forth', '', 'from', 'it', 'or', 'confused', 'sounds.\\n\\n*****\\n\\nAnd', 'now', 'you', 'ask', 'in', 'your', 'heart,', '“How\\nshall', 'we', 'distinguish', 'that', 'which', 'is\\ngood', 'in', 'pleasure', 'from', 'that', 'which', 'is', 'not\\ngood?”\\n\\nGo', 'to', 'your', 'fields', 'and', 'your', 'gardens,', 'and\\nyou', 'shall', 'learn', 'that', 'it', 'is', 'the', 'pleasure\\nof', 'the', 'bee', 'to', 'gather', 'honey', 'of', 'the\\nflower,\\n\\nBut', 'it', 'is', 'also', 'the', 'pleasure', 'of', 'the\\nflower', 'to', 'yield', 'its', 'honey', 'to', 'the', 'bee.\\n\\nFor', 'to', 'the', 'bee', 'a', 'flower', 'is', 'a', 'fountain', 'of\\nlife,\\n\\nAnd', 'to', 'the', 'flower', 'a', 'bee', 'is', 'a', 'messenger\\nof', 'love,\\n\\nAnd', 'to', 'both,', 'bee', 'and', 'flower,', 'the', 'giving\\nand', 'the', 'receiving', 'of', 'pleasure', 'is', 'a', 'need\\nand', 'an', 'ecstasy.\\n\\nPeople', 'of', 'Orphalese,', 'be', 'in', 'your\\npleasures', 'like', 'the', 'flowers', 'and', 'the', 'bees.\\n\\n*****', '*****', 'a', 'poet', 'said,', 'Speak', 'to', 'us', 'of\\n_Beauty_.\\n\\nAnd', 'he', 'answered:\\n\\nWhere', 'shall', 'you', 'seek', 'beauty,', 'and', 'how\\nshall', 'you', 'find', 'her', 'unless', 'she', 'herself', 'be\\nyour', 'way', 'and', 'your', 'guide?\\n\\nAnd', 'how', 'shall', 'you', 'speak', 'of', 'her', 'except\\nshe', 'be', 'the', 'weaver', 'of', 'your', 'speech?\\n\\nThe', 'aggrieved', 'and', 'the', 'injured', 'say,\\n“Beauty', 'is', 'kind', 'and', 'gentle.\\n\\nLike', 'a', 'young', 'mother', 'half-shy', 'of', 'her', 'own\\nglory', 'she', 'walks', 'among', 'us.”\\n\\nAnd', 'the', 'passionate', 'say,', '“Nay,', 'beauty', 'is\\na', 'thing', 'of', 'might', 'and', 'dread.\\n\\nLike', 'the', 'tempest', 'she', 'shakes', 'the', 'earth\\nbeneath', 'us', 'and', 'the', 'sky', 'above', 'us.”\\n\\nThe', 'tired', 'and', 'the', 'weary', 'say,', '“Beauty', 'is\\nof', 'soft', 'whisperings.', 'She', 'speaks', 'in', 'our\\nspirit.', '', 'voice', 'yields', 'to', 'our\\nsilences', 'like', 'a', 'faint', 'light', 'that', 'quivers\\nin', 'fear', 'of', 'the', 'shadow.”\\n\\nBut', 'the', 'restless', 'say,', '“We', 'have', 'heard', 'her\\nshouting', 'among', 'the', 'mountains,\\n\\nAnd', 'with', 'her', 'cries', 'came', 'the', 'sound', 'of\\nhoofs,', 'and', 'the', 'beating', 'of', 'wings', 'and', 'the\\nroaring', 'of', 'lions.”\\n\\nAt', 'night', 'the', 'watchmen', 'of', 'the', 'city', 'say,\\n“Beauty', 'shall', 'rise', 'with', 'the', 'dawn', 'from\\nthe', 'east.”\\n\\nAnd', 'at', 'noontide', 'the', 'toilers', 'and', 'the\\nwayfarers', 'say,', '“We', 'have', 'seen', 'her', 'leaning\\nover', 'the', 'earth', 'from', 'the', 'windows', 'of', 'the\\nsunset.”\\n\\n*****\\n\\nIn', 'winter', 'say', 'the', 'snow-bound,', '“She', 'shall\\ncome', 'with', 'the', 'spring', 'leaping', 'upon', 'the\\nhills.”\\n\\nAnd', 'in', 'the', 'summer', 'heat', 'the', 'reapers\\nsay,', '“We', 'have', 'seen', 'her', 'dancing', 'with', 'the\\nautumn', 'leaves,', 'and', 'we', 'saw', 'a', 'drift', 'of\\nsnow', 'in', 'her', 'hair.”', '', 'these', 'things\\nhave', 'you', 'said', 'of', 'beauty,\\n\\nYet', 'in', 'truth', 'you', 'spoke', 'not', 'of', 'her', 'but', 'of\\nneeds', 'unsatisfied,\\n\\nAnd', 'beauty', 'is', 'not', 'a', 'need', 'but', 'an', 'ecstasy.\\n\\nIt', 'is', 'not', 'a', 'mouth', 'thirsting', 'nor', 'an', 'empty\\nhand', 'stretched', 'forth,\\n\\nBut', 'rather', 'a', 'heart', 'enflamed', 'and', 'a', 'soul\\nenchanted.\\n\\nIt', 'is', 'not', 'the', 'image', 'you', 'would', 'see', 'nor\\nthe', 'song', 'you', 'would', 'hear,\\n\\nBut', 'rather', 'an', 'image', 'you', 'see', 'though', 'you\\nclose', 'your', 'eyes', 'and', 'a', 'song', 'you', 'hear\\nthough', 'you', 'shut', 'your', 'ears.\\n\\nIt', 'is', 'not', 'the', 'sap', 'within', 'the', 'furrowed\\nbark,', 'nor', 'a', 'wing', 'attached', 'to', 'a', 'claw,\\n\\nBut', 'rather', 'a', 'garden', 'for', 'ever', 'in', 'bloom\\nand', 'a', 'flock', 'of', 'angels', 'for', 'ever', 'in\\nflight.\\n\\n*****\\n\\nPeople', 'of', 'Orphalese,', 'beauty', 'is', 'life', 'when\\nlife', 'unveils', 'her', 'holy', 'face.\\n\\nBut', 'you', 'are', 'life', 'and', 'you', 'are', 'the', 'veil.', 'is', 'eternity', 'gazing', 'at', 'itself\\nin', 'a', 'mirror.\\n\\nBut', 'you', 'are', 'eternity', 'and', 'you', 'are', 'the\\nmirror.\\n\\n*****', '*****', 'an', 'old', 'priest', 'said,', 'Speak', 'to', 'us\\nof', '_Religion_.\\n\\nAnd', 'he', 'said:\\n\\nHave', 'I', 'spoken', 'this', 'day', 'of', 'aught', 'else?\\n\\nIs', 'not', 'religion', 'all', 'deeds', 'and', 'all\\nreflection,\\n\\nAnd', 'that', 'which', 'is', 'neither', 'deed', 'nor\\nreflection,', 'but', 'a', 'wonder', 'and', 'a', 'surprise\\never', 'springing', 'in', 'the', 'soul,', 'even', 'while\\nthe', 'hands', 'hew', 'the', 'stone', 'or', 'tend', 'the\\nloom?\\n\\nWho', 'can', 'separate', 'his', 'faith', 'from\\nhis', 'actions,', 'or', 'his', 'belief', 'from', 'his\\noccupations?\\n\\nWho', 'can', 'spread', 'his', 'hours', 'before', 'him,\\nsaving,', '“This', 'for', 'God', 'and', 'this', 'for\\nmyself;', 'This', 'for', 'my', 'soul,', 'and', 'this', 'other\\nfor', 'my', 'body?”\\n\\nAll', 'your', 'hours', 'are', 'wings', 'that', 'beat\\nthrough', 'space', 'from', 'self', 'to', 'self.', '', 'wears', 'his', 'morality', 'but', 'as', 'his', 'best\\ngarment', 'were', 'better', 'naked.\\n\\nThe', 'wind', 'and', 'the', 'sun', 'will', 'tear', 'no', 'holes\\nin', 'his', 'skin.\\n\\nAnd', 'he', 'who', 'defines', 'his', 'conduct', 'by', 'ethics\\nimprisons', 'his', 'song-bird', 'in', 'a', 'cage.\\n\\nThe', 'freest', 'song', 'comes', 'not', 'through', 'bars\\nand', 'wires.\\n\\nAnd', 'he', 'to', 'whom', 'worshipping', 'is', 'a', 'window,\\nto', 'open', 'but', 'also', 'to', 'shut,', 'has', 'not', 'yet\\nvisited', 'the', 'house', 'of', 'his', 'soul', 'whose\\nwindows', 'are', 'from', 'dawn', 'to', 'dawn.\\n\\n*****\\n\\nYour', 'daily', 'life', 'is', 'your', 'temple', 'and', 'your\\nreligion.\\n\\nWhenever', 'you', 'enter', 'into', 'it', 'take', 'with', 'you\\nyour', 'all.\\n\\nTake', 'the', 'plough', 'and', 'the', 'forge', 'and', 'the\\nmallet', 'and', 'the', 'lute,\\n\\nThe', 'things', 'you', 'have', 'fashioned', 'in\\nnecessity', 'or', 'for', 'delight.\\n\\nFor', 'in', 'revery', 'you', 'cannot', 'rise', 'above', 'your\\nachievements', 'nor', 'fall', 'lower', 'than', 'your\\nfailures.\\n\\nAnd', 'take', 'with', 'you', 'all', 'men:', '', 'in\\nadoration', 'you', 'cannot', 'fly', 'higher', 'than\\ntheir', 'hopes', 'nor', 'humble', 'yourself', 'lower\\nthan', 'their', 'despair.\\n\\n*****\\n\\nAnd', 'if', 'you', 'would', 'know', 'God', 'be', 'not\\ntherefore', 'a', 'solver', 'of', 'riddles.\\n\\nRather', 'look', 'about', 'you', 'and', 'you', 'shall', 'see\\nHim', 'playing', 'with', 'your', 'children.\\n\\nAnd', 'look', 'into', 'space;', 'you', 'shall', 'see', 'Him\\nwalking', 'in', 'the', 'cloud,', 'outstretching', 'His\\narms', 'in', 'the', 'lightning', 'and', 'descending', 'in\\nrain.\\n\\nYou', 'shall', 'see', 'Him', 'smiling', 'in', 'flowers,\\nthen', 'rising', 'and', 'waving', 'His', 'hands', 'in\\ntrees.\\n\\n*****', '*****', 'Almitra', 'spoke,', 'saying,', 'We', 'would\\nask', 'now', 'of', '_Death_.\\n\\nAnd', 'he', 'said:\\n\\nYou', 'would', 'know', 'the', 'secret', 'of', 'death.\\n\\nBut', 'how', 'shall', 'you', 'find', 'it', 'unless', 'you\\nseek', 'it', 'in', 'the', 'heart', 'of', 'life?\\n\\nThe', 'owl', 'whose', 'night-bound', 'eyes', 'are', 'blind\\nunto', 'the', 'day', 'cannot', 'unveil', 'the', 'mystery\\nof', 'light.\\n\\nIf', 'you', 'would', 'indeed', 'behold', 'the', 'spirit\\nof', 'death,', 'open', 'your', 'heart', 'wide', 'unto', 'the\\nbody', 'of', 'life.\\n\\nFor', 'life', 'and', 'death', 'are', 'one,', 'even', 'as', 'the\\nriver', 'and', 'the', 'sea', 'are', 'one.\\n\\nIn', 'the', 'depth', 'of', 'your', 'hopes', 'and', 'desires\\nlies', 'your', 'silent', 'knowledge', 'of', 'the\\nbeyond;\\n\\nAnd', 'like', 'seeds', 'dreaming', 'beneath', 'the', 'snow\\nyour', 'heart', 'dreams', 'of', 'spring.\\n\\nTrust', 'the', 'dreams,', 'for', 'in', 'them', 'is', 'hidden\\nthe', 'gate', 'to', 'eternity.', '', 'fear\\nof', 'death', 'is', 'but', 'the', 'trembling', 'of', 'the\\nshepherd', 'when', 'he', 'stands', 'before', 'the', 'king\\nwhose', 'hand', 'is', 'to', 'be', 'laid', 'upon', 'him', 'in\\nhonour.\\n\\nIs', 'the', 'shepherd', 'not', 'joyful', 'beneath', 'his\\ntrembling,', 'that', 'he', 'shall', 'wear', 'the', 'mark\\nof', 'the', 'king?\\n\\nYet', 'is', 'he', 'not', 'more', 'mindful', 'of', 'his\\ntrembling?\\n\\n*****\\n\\nFor', 'what', 'is', 'it', 'to', 'die', 'but', 'to', 'stand', 'naked\\nin', 'the', 'wind', 'and', 'to', 'melt', 'into', 'the', 'sun?\\n\\nAnd', 'what', 'is', 'it', 'to', 'cease', 'breathing,', 'but\\nto', 'free', 'the', 'breath', 'from', 'its', 'restless\\ntides,', 'that', 'it', 'may', 'rise', 'and', 'expand', 'and\\nseek', 'God', 'unencumbered?\\n\\nOnly', 'when', 'you', 'drink', 'from', 'the', 'river', 'of\\nsilence', 'shall', 'you', 'indeed', 'sing.\\n\\nAnd', 'when', 'you', 'have', 'reached', 'the', 'mountain\\ntop,', 'then', 'you', 'shall', 'begin', 'to', 'climb.\\n\\nAnd', 'when', 'the', 'earth', 'shall', 'claim', 'your\\nlimbs,', 'then', 'shall', 'you', 'truly', 'dance.', 'now', 'it', 'was', 'evening.\\n\\nAnd', 'Almitra', 'the', 'seeress', 'said,', 'Blessed', 'be\\nthis', 'day', 'and', 'this', 'place', 'and', 'your', 'spirit\\nthat', 'has', 'spoken.\\n\\nAnd', 'he', 'answered,', 'Was', 'it', 'I', 'who', 'spoke?', 'Was\\nI', 'not', 'also', 'a', 'listener?\\n\\n*****\\n\\nThen', 'he', 'descended', 'the', 'steps', 'of', 'the\\nTemple', 'and', 'all', 'the', 'people', 'followed', 'him.\\nAnd', 'he', 'reached', 'his', 'ship', 'and', 'stood', 'upon\\nthe', 'deck.\\n\\nAnd', 'facing', 'the', 'people', 'again,', 'he', 'raised\\nhis', 'voice', 'and', 'said:\\n\\nPeople', 'of', 'Orphalese,', 'the', 'wind', 'bids', 'me\\nleave', 'you.\\n\\nLess', 'hasty', 'am', 'I', 'than', 'the', 'wind,', 'yet', 'I\\nmust', 'go.\\n\\nWe', 'wanderers,', 'ever', 'seeking', 'the', 'lonelier\\nway,', 'begin', 'no', 'day', 'where', 'we', 'have', 'ended\\nanother', 'day;', 'and', 'no', 'sunrise', 'finds', 'us\\nwhere', 'sunset', 'left', 'us.', '', 'while', 'the\\nearth', 'sleeps', 'we', 'travel.\\n\\nWe', 'are', 'the', 'seeds', 'of', 'the', 'tenacious\\nplant,', 'and', 'it', 'is', 'in', 'our', 'ripeness', 'and', 'our\\nfullness', 'of', 'heart', 'that', 'we', 'are', 'given', 'to\\nthe', 'wind', 'and', 'are', 'scattered.\\n\\n*****\\n\\nBrief', 'were', 'my', 'days', 'among', 'you,', 'and\\nbriefer', 'still', 'the', 'words', 'I', 'have', 'spoken.\\n\\nBut', 'should', 'my', 'voice', 'fade', 'in', 'your', 'ears,\\nand', 'my', 'love', 'vanish', 'in', 'your', 'memory,', 'then\\nI', 'will', 'come', 'again,\\n\\nAnd', 'with', 'a', 'richer', 'heart', 'and', 'lips', 'more\\nyielding', 'to', 'the', 'spirit', 'will', 'I', 'speak.\\n\\nYea,', 'I', 'shall', 'return', 'with', 'the', 'tide,\\n\\nAnd', 'though', 'death', 'may', 'hide', 'me,', 'and', 'the\\ngreater', 'silence', 'enfold', 'me,', 'yet', 'again\\nwill', 'I', 'seek', 'your', 'understanding.\\n\\nAnd', 'not', 'in', 'vain', 'will', 'I', 'seek.\\n\\nIf', 'aught', 'I', 'have', 'said', 'is', 'truth,', 'that\\ntruth', 'shall', 'reveal', 'itself', 'in', 'a', 'clearer\\nvoice,', 'and', 'in', 'words', 'more', 'kin', 'to', 'your\\nthoughts.\\n\\nI', 'go', 'with', 'the', 'wind,', 'people', 'of\\nOrphalese,', 'but', 'not', 'down', 'into', 'emptiness;', 'if', 'this', 'day', 'is', 'not', 'a', 'fulfilment\\nof', 'your', 'needs', 'and', 'my', 'love,', 'then', 'let', 'it\\nbe', 'a', 'promise', 'till', 'another', 'day.\\n\\nMan’s', 'needs', 'change,', 'but', 'not', 'his', 'love,\\nnor', 'his', 'desire', 'that', 'his', 'love', 'should\\nsatisfy', 'his', 'needs.\\n\\nKnow', 'therefore,', 'that', 'from', 'the', 'greater\\nsilence', 'I', 'shall', 'return.\\n\\nThe', 'mist', 'that', 'drifts', 'away', 'at', 'dawn,\\nleaving', 'but', 'dew', 'in', 'the', 'fields,', 'shall\\nrise', 'and', 'gather', 'into', 'a', 'cloud', 'and', 'then\\nfall', 'down', 'in', 'rain.\\n\\nAnd', 'not', 'unlike', 'the', 'mist', 'have', 'I', 'been.\\n\\nIn', 'the', 'stillness', 'of', 'the', 'night', 'I', 'have\\nwalked', 'in', 'your', 'streets,', 'and', 'my', 'spirit\\nhas', 'entered', 'your', 'houses,\\n\\nAnd', 'your', 'heart-beats', 'were', 'in', 'my', 'heart,\\nand', 'your', 'breath', 'was', 'upon', 'my', 'face,', 'and', 'I\\nknew', 'you', 'all.\\n\\nAy,', 'I', 'knew', 'your', 'joy', 'and', 'your', 'pain,\\nand', 'in', 'your', 'sleep', 'your', 'dreams', 'were', 'my\\ndreams.\\n\\nAnd', 'oftentimes', 'I', 'was', 'among', 'you', 'a', 'lake\\namong', 'the', 'mountains.\\n\\nI', 'mirrored', 'the', 'summits', 'in', 'you', 'and', 'the', 'slopes,', 'and', 'even', 'the\\npassing', 'flocks', 'of', 'your', 'thoughts', 'and', 'your\\ndesires.\\n\\nAnd', 'to', 'my', 'silence', 'came', 'the', 'laughter\\nof', 'your', 'children', 'in', 'streams,', 'and', 'the\\nlonging', 'of', 'your', 'youths', 'in', 'rivers.\\n\\nAnd', 'when', 'they', 'reached', 'my', 'depth', 'the\\nstreams', 'and', 'the', 'rivers', 'ceased', 'not', 'yet', 'to\\nsing.\\n\\n[Illustration:', '0119]\\n\\nBut', 'sweeter', 'still', 'than', 'laughter', 'and\\ngreater', 'than', 'longing', 'came', 'to', 'me.\\n\\nIt', 'was', 'the', 'boundless', 'in', 'you;\\n\\nThe', 'vast', 'man', 'in', 'whom', 'you', 'are', 'all', 'but\\ncells', 'and', 'sinews;\\n\\nHe', 'in', 'whose', 'chant', 'all', 'your', 'singing', 'is\\nbut', 'a', 'soundless', 'throbbing.\\n\\nIt', 'is', 'in', 'the', 'vast', 'man', 'that', 'you', 'are', 'vast,\\n\\nAnd', 'in', 'beholding', 'him', 'that', 'I', 'beheld', 'you\\nand', 'loved', 'you.\\n\\nFor', 'what', 'distances', 'can', 'love', 'reach', 'that\\nare', 'not', 'in', 'that', 'vast', 'sphere?\\n\\nWhat', 'visions,', 'what', 'expectations', 'and', 'what\\npresumptions', 'can', 'outsoar', 'that', 'flight?\\n\\nLike', 'a', 'giant', 'oak', 'tree', 'covered', 'with', 'apple\\nblossoms', 'is', 'the', 'vast', 'man', 'in', 'you.', '', 'binds', 'you', 'to', 'the', 'earth,', 'his\\nfragrance', 'lifts', 'you', 'into', 'space,', 'and', 'in\\nhis', 'durability', 'you', 'are', 'deathless.\\n\\n*****\\n\\nYou', 'have', 'been', 'told', 'that,', 'even', 'like', 'a\\nchain,', 'you', 'are', 'as', 'weak', 'as', 'your', 'weakest\\nlink.\\n\\nThis', 'is', 'but', 'half', 'the', 'truth.', 'You', 'are', 'also\\nas', 'strong', 'as', 'your', 'strongest', 'link.\\n\\nTo', 'measure', 'you', 'by', 'your', 'smallest', 'deed\\nis', 'to', 'reckon', 'the', 'power', 'of', 'ocean', 'by', 'the\\nfrailty', 'of', 'its', 'foam.\\n\\nTo', 'judge', 'you', 'by', 'your', 'failures', 'is', 'to\\ncast', 'blame', 'upon', 'the', 'seasons', 'for', 'their\\ninconstancy.\\n\\nAy,', 'you', 'are', 'like', 'an', 'ocean,\\n\\nAnd', 'though', 'heavy-grounded', 'ships', 'await\\nthe', 'tide', 'upon', 'your', 'shores,', 'yet,', 'even\\nlike', 'an', 'ocean,', 'you', 'cannot', 'hasten', 'your\\ntides.\\n\\nAnd', 'like', 'the', 'seasons', 'you', 'are', 'also,\\n\\nAnd', 'though', 'in', 'your', 'winter', 'you', 'deny', 'your\\nspring,\\n\\nYet', 'spring,', 'reposing', 'within', 'you,', 'smiles\\nin', 'her', 'drowsiness', 'and', 'is', 'not', 'offended.', 'not', 'I', 'say', 'these', 'things', 'in\\norder', 'that', 'you', 'may', 'say', 'the', 'one', 'to', 'the\\nother,', '“He', 'praised', 'us', 'well.', 'He', 'saw', 'but\\nthe', 'good', 'in', 'us.”\\n\\nI', 'only', 'speak', 'to', 'you', 'in', 'words', 'of', 'that\\nwhich', 'you', 'yourselves', 'know', 'in', 'thought.\\n\\nAnd', 'what', 'is', 'word', 'knowledge', 'but', 'a', 'shadow\\nof', 'wordless', 'knowledge?\\n\\nYour', 'thoughts', 'and', 'my', 'words', 'are', 'waves\\nfrom', 'a', 'sealed', 'memory', 'that', 'keeps', 'records\\nof', 'our', 'yesterdays,\\n\\nAnd', 'of', 'the', 'ancient', 'days', 'when', 'the', 'earth\\nknew', 'not', 'us', 'nor', 'herself,\\n\\nAnd', 'of', 'nights', 'when', 'earth', 'was', 'up-wrought\\nwith', 'confusion.\\n\\n*****\\n\\nWise', 'men', 'have', 'come', 'to', 'you', 'to', 'give', 'you\\nof', 'their', 'wisdom.', 'I', 'came', 'to', 'take', 'of', 'your\\nwisdom:\\n\\nAnd', 'behold', 'I', 'have', 'found', 'that', 'which', 'is\\ngreater', 'than', 'wisdom.\\n\\nIt', 'is', 'a', 'flame', 'spirit', 'in', 'you', 'ever\\ngathering', 'more', 'of', 'itself,\\n\\nWhile', 'you,', 'heedless', 'of', 'its', 'expansion,\\nbewail', 'the', 'withering', 'of', 'your', 'days.', 'is', 'life', 'in', 'quest', 'of', 'life', 'in\\nbodies', 'that', 'fear', 'the', 'grave.\\n\\n*****\\n\\nThere', 'are', 'no', 'graves', 'here.\\n\\nThese', 'mountains', 'and', 'plains', 'are', 'a', 'cradle\\nand', 'a', 'stepping-stone.\\n\\nWhenever', 'you', 'pass', 'by', 'the', 'field', 'where\\nyou', 'have', 'laid', 'your', 'ancestors', 'look', 'well\\nthereupon,', 'and', 'you', 'shall', 'see', 'yourselves\\nand', 'your', 'children', 'dancing', 'hand', 'in', 'hand.\\n\\nVerily', 'you', 'often', 'make', 'merry', 'without\\nknowing.\\n\\nOthers', 'have', 'come', 'to', 'you', 'to', 'whom', 'for\\ngolden', 'promises', 'made', 'unto', 'your', 'faith\\nyou', 'have', 'given', 'but', 'riches', 'and', 'power', 'and\\nglory.\\n\\nLess', 'than', 'a', 'promise', 'have', 'I', 'given,', 'and\\nyet', 'more', 'generous', 'have', 'you', 'been', 'to', 'me.\\n\\nYou', 'have', 'given', 'me', 'my', 'deeper', 'thirsting\\nafter', 'life.\\n\\nSurely', 'there', 'is', 'no', 'greater', 'gift', 'to', 'a', 'man\\nthan', 'that', 'which', 'turns', 'all', 'his', 'aims\\ninto', 'parching', 'lips', 'and', 'all', 'life', 'into', 'a\\nfountain.\\n\\n[Illustration:', '0125]', 'in', 'this', 'lies', 'my', 'honour', 'and', 'my\\nreward,--\\n\\nThat', 'whenever', 'I', 'come', 'to', 'the', 'fountain\\nto', 'drink', 'I', 'find', 'the', 'living', 'water', 'itself\\nthirsty;\\n\\nAnd', 'it', 'drinks', 'me', 'while', 'I', 'drink', 'it.\\n\\n*****\\n\\nSome', 'of', 'you', 'have', 'deemed', 'me', 'proud', 'and\\nover-shy', 'to', 'receive', 'gifts.\\n\\nToo', 'proud', 'indeed', 'am', 'I', 'to', 'receive', 'wages,\\nbut', 'not', 'gifts.\\n\\nAnd', 'though', 'I', 'have', 'eaten', 'berries', 'among\\nthe', 'hills', 'when', 'you', 'would', 'have', 'had', 'me', 'sit\\nat', 'your', 'board,\\n\\nAnd', 'slept', 'in', 'the', 'portico', 'of', 'the', 'temple\\nwhen', 'you', 'would', 'gladly', 'have', 'sheltered', 'me,\\n\\nYet', 'was', 'it', 'not', 'your', 'loving', 'mindfulness\\nof', 'my', 'days', 'and', 'my', 'nights', 'that', 'made', 'food\\nsweet', 'to', 'my', 'mouth', 'and', 'girdled', 'my', 'sleep\\nwith', 'visions?\\n\\nFor', 'this', 'I', 'bless', 'you', 'most:\\n\\nYou', 'give', 'much', 'and', 'know', 'not', 'that', 'you', 'give\\nat', 'all.', '', 'the', 'kindness', 'that\\ngazes', 'upon', 'itself', 'in', 'a', 'mirror', 'turns', 'to\\nstone,\\n\\nAnd', 'a', 'good', 'deed', 'that', 'calls', 'itself', 'by\\ntender', 'names', 'becomes', 'the', 'parent', 'to', 'a\\ncurse.\\n\\n*****\\n\\nAnd', 'some', 'of', 'you', 'have', 'called', 'me', 'aloof,\\nand', 'drunk', 'with', 'my', 'own', 'aloneness,\\n\\nAnd', 'you', 'have', 'said,', '“He', 'holds', 'council\\nwith', 'the', 'trees', 'of', 'the', 'forest,', 'but', 'not\\nwith', 'men.\\n\\nHe', 'sits', 'alone', 'on', 'hill-tops', 'and', 'looks\\ndown', 'upon', 'our', 'city.”\\n\\nTrue', 'it', 'is', 'that', 'I', 'have', 'climbed', 'the', 'hills\\nand', 'walked', 'in', 'remote', 'places.\\n\\nHow', 'could', 'I', 'have', 'seen', 'you', 'save', 'from', 'a\\ngreat', 'height', 'or', 'a', 'great', 'distance?\\n\\nHow', 'can', 'one', 'be', 'indeed', 'near', 'unless', 'he', 'be\\ntar?\\n\\nAnd', 'others', 'among', 'you', 'called', 'unto', 'me,', 'not\\nin', 'words,', 'and', 'they', 'said,\\n\\n“Stranger,', 'stranger,', 'lover', 'of\\nunreachable', 'heights,', 'why', 'dwell', 'you', 'among\\nthe', 'summits', 'where', 'eagles', 'build\\ntheir', 'nests?', '', 'seek', 'you', 'the\\nunattainable?\\n\\nWhat', 'storms', 'would', 'you', 'trap', 'in', 'your', 'net,\\n\\nAnd', 'what', 'vaporous', 'birds', 'do', 'you', 'hunt', 'in\\nthe', 'sky?\\n\\nCome', 'and', 'be', 'one', 'of', 'us.\\n\\nDescend', 'and', 'appease', 'your', 'hunger', 'with', 'our\\nbread', 'and', 'quench', 'your', 'thirst', 'with', 'our\\nwine.”\\n\\nIn', 'the', 'solitude', 'of', 'their', 'souls', 'they', 'said\\nthese', 'things;\\n\\nBut', 'were', 'their', 'solitude', 'deeper', 'they\\nwould', 'have', 'known', 'that', 'I', 'sought', 'but', 'the\\nsecret', 'of', 'your', 'joy', 'and', 'your', 'pain,\\n\\nAnd', 'I', 'hunted', 'only', 'your', 'larger', 'selves\\nthat', 'walk', 'the', 'sky.\\n\\n*****\\n\\nBut', 'the', 'hunter', 'was', 'also', 'the', 'hunted;\\n\\nFor', 'many', 'of', 'my', 'arrows', 'left', 'my', 'bow', 'only\\nto', 'seek', 'my', 'own', 'breast.\\n\\nAnd', 'the', 'flier', 'was', 'also', 'the', 'creeper;\\n\\nFor', 'when', 'my', 'wings', 'were', 'spread', 'in', 'the\\nsun', 'their', 'shadow', 'upon', 'the', 'earth', 'was', 'a\\nturtle.\\n\\nAnd', 'I', 'the', 'believer', 'was', 'also', 'the', 'doubter;', 'often', 'have', 'I', 'put', 'my', 'finger\\nin', 'my', 'own', 'wound', 'that', 'I', 'might', 'have', 'the\\ngreater', 'belief', 'in', 'you', 'and', 'the', 'greater\\nknowledge', 'of', 'you.\\n\\n*****\\n\\nAnd', 'it', 'is', 'with', 'this', 'belief', 'and', 'this\\nknowledge', 'that', 'I', 'say,\\n\\nYou', 'are', 'not', 'enclosed', 'within', 'your', 'bodies,\\nnor', 'confined', 'to', 'houses', 'or', 'fields.\\n\\nThat', 'which', 'is', 'you', 'dwells', 'above', 'the\\nmountain', 'and', 'roves', 'with', 'the', 'wind.\\n\\nIt', 'is', 'not', 'a', 'thing', 'that', 'crawls', 'into\\nthe', 'sun', 'for', 'warmth', 'or', 'digs', 'holes', 'into\\ndarkness', 'for', 'safety,\\n\\nBut', 'a', 'thing', 'free,', 'a', 'spirit', 'that', 'envelops\\nthe', 'earth', 'and', 'moves', 'in', 'the', 'ether.\\n\\nIf', 'these', 'be', 'vague', 'words,', 'then', 'seek', 'not\\nto', 'clear', 'them.\\n\\nVague', 'and', 'nebulous', 'is', 'the', 'beginning', 'of\\nall', 'things,', 'but', 'not', 'their', 'end,\\n\\nAnd', 'I', 'fain', 'would', 'have', 'you', 'remember', 'me', 'as\\na', 'beginning.\\n\\nLife,', 'and', 'all', 'that', 'lives,', 'is', 'conceived\\nin', 'the', 'mist', 'and', 'not', 'in', 'the', 'crystal.', 'who', 'knows', 'but', 'a', 'crystal', 'is', 'mist\\nin', 'decay?\\n\\n*****\\n\\nThis', 'would', 'I', 'have', 'you', 'remember', 'in\\nremembering', 'me:\\n\\nThat', 'which', 'seems', 'most', 'feeble', 'and\\nbewildered', 'in', 'you', 'is', 'the', 'strongest', 'and\\nmost', 'determined.\\n\\nIs', 'it', 'not', 'your', 'breath', 'that', 'has', 'erected\\nand', 'hardened', 'the', 'structure', 'of', 'your\\nbones?\\n\\nAnd', 'is', 'it', 'not', 'a', 'dream', 'which', 'none', 'of', 'you\\nremember', 'having', 'dreamt,', 'that', 'builded\\nyour', 'city', 'and', 'fashioned', 'all', 'there', 'is', 'in\\nit?\\n\\nCould', 'you', 'but', 'see', 'the', 'tides', 'of', 'that\\nbreath', 'you', 'would', 'cease', 'to', 'see', 'all', 'else,\\n\\nAnd', 'if', 'you', 'could', 'hear', 'the', 'whispering', 'of\\nthe', 'dream', 'you', 'would', 'hear', 'no', 'other', 'sound.\\n\\nBut', 'you', 'do', 'not', 'see,', 'nor', 'do', 'you', 'hear,', 'and\\nit', 'is', 'well.\\n\\nThe', 'veil', 'that', 'clouds', 'your', 'eyes', 'shall', 'be\\nlifted', 'by', 'the', 'hands', 'that', 'wove', 'it,\\n\\nAnd', 'the', 'clay', 'that', 'fills', 'your', 'ears', 'shall\\nbe', 'pierced', 'by', 'those', 'fingers', 'that', 'kneaded\\nit.', '', 'you', 'shall', 'see.\\n\\nAnd', 'you', 'shall', 'hear.\\n\\nYet', 'you', 'shall', 'not', 'deplore', 'having', 'known\\nblindness,', 'nor', 'regret', 'having', 'been', 'deaf.\\n\\nFor', 'in', 'that', 'day', 'you', 'shall', 'know', 'the\\nhidden', 'purposes', 'in', 'all', 'things,\\n\\nAnd', 'you', 'shall', 'bless', 'darkness', 'as', 'you\\nwould', 'bless', 'light.\\n\\nAfter', 'saying', 'these', 'things', 'he', 'looked\\nabout', 'him,', 'and', 'he', 'saw', 'the', 'pilot', 'of', 'his\\nship', 'standing', 'by', 'the', 'helm', 'and', 'gazing\\nnow', 'at', 'the', 'full', 'sails', 'and', 'now', 'at', 'the\\ndistance.\\n\\nAnd', 'he', 'said:\\n\\nPatient,', 'over', 'patient,', 'is', 'the', 'captain', 'of\\nmy', 'ship.\\n\\nThe', 'wind', 'blows,', 'and', 'restless', 'are', 'the\\nsails;\\n\\nEven', 'the', 'rudder', 'begs', 'direction;\\n\\nYet', 'quietly', 'my', 'captain', 'awaits', 'my\\nsilence.\\n\\nAnd', 'these', 'my', 'mariners,', 'who', 'have', 'heard\\nthe', 'choir', 'of', 'the', 'greater', 'sea,', 'they', 'too\\nhave', 'heard', 'me', 'patiently.', '', 'they\\nshall', 'wait', 'no', 'longer.\\n\\nI', 'am', 'ready.\\n\\nThe', 'stream', 'has', 'reached', 'the', 'sea,', 'and\\nonce', 'more', 'the', 'great', 'mother', 'holds', 'her', 'son\\nagainst', 'her', 'breast.\\n\\n*****\\n\\nFare', 'you', 'well,', 'people', 'of', 'Orphalese.\\n\\nThis', 'day', 'has', 'ended.\\n\\nIt', 'is', 'closing', 'upon', 'us', 'even', 'as', 'the\\nwater-lily', 'upon', 'its', 'own', 'tomorrow.\\n\\nWhat', 'was', 'given', 'us', 'here', 'we', 'shall', 'keep,\\n\\nAnd', 'if', 'it', 'suffices', 'not,', 'then', 'again', 'must\\nwe', 'come', 'together', 'and', 'together', 'stretch\\nour', 'hands', 'unto', 'the', 'giver.\\n\\nForget', 'not', 'that', 'I', 'shall', 'come', 'back', 'to\\nyou.\\n\\nA', 'little', 'while,', 'and', 'my', 'longing', 'shall\\ngather', 'dust', 'and', 'foam', 'for', 'another', 'body.\\n\\nA', 'little', 'while,', 'a', 'moment', 'of', 'rest', 'upon\\nthe', 'wind,', 'and', 'another', 'woman', 'shall', 'bear\\nme.\\n\\nFarewell', 'to', 'you', 'and', 'the', 'youth', 'I', 'have\\nspent', 'with', 'you.\\n\\nIt', 'was', 'but', 'yesterday', 'we', 'met', 'in', 'a\\ndream.', '', 'have', 'sung', 'to', 'me', 'in', 'my\\naloneness,', 'and', 'I', 'of', 'your', 'longings', 'have\\nbuilt', 'a', 'tower', 'in', 'the', 'sky.\\n\\nBut', 'now', 'our', 'sleep', 'has', 'fled', 'and', 'our', 'dream\\nis', 'over,', 'and', 'it', 'is', 'no', 'longer', 'dawn.\\n\\nThe', 'noontide', 'is', 'upon', 'us', 'and', 'our', 'half\\nwaking', 'has', 'turned', 'to', 'fuller', 'day,', 'and', 'we\\nmust', 'part.\\n\\nIf', 'in', 'the', 'twilight', 'of', 'memory', 'we', 'should\\nmeet', 'once', 'more,', 'we', 'shall', 'speak', 'again\\ntogether', 'and', 'you', 'shall', 'sing', 'to', 'me', 'a\\ndeeper', 'song.\\n\\nAnd', 'if', 'our', 'hands', 'should', 'meet', 'in', 'another\\ndream', 'we', 'shall', 'build', 'another', 'tower', 'in\\nthe', 'sky.\\n\\n*****\\n\\nSo', 'saying', 'he', 'made', 'a', 'signal', 'to', 'the\\nseamen,', 'and', 'straightway', 'they', 'weighed\\nanchor', 'and', 'cast', 'the', 'ship', 'loose', 'from', 'its\\nmoorings,', 'and', 'they', 'moved', 'eastward.\\n\\nAnd', 'a', 'cry', 'came', 'from', 'the', 'people', 'as', 'from', 'a\\nsingle', 'heart,', 'and', 'it', 'rose', 'into', 'the', 'dusk\\nand', 'was', 'carried', 'out', 'over', 'the', 'sea', 'like', 'a\\ngreat', 'trumpeting.\\n\\nOnly', 'Almitra', 'was', 'silent,', 'gazing', 'after', 'ship', 'until', 'it', 'had', 'vanished', 'into\\nthe', 'mist.\\n\\nAnd', 'when', 'all', 'the', 'people', 'were', 'dispersed\\nshe', 'still', 'stood', 'alone', 'upon', 'the', 'sea-wall,\\nremembering', 'in', 'her', 'heart', 'his', 'saying,\\n\\n“A', 'little', 'while,', 'a', 'moment', 'of', 'rest', 'upon\\nthe', 'wind,', 'and', 'another', 'woman', 'shall', 'bear\\nme.”\\n\\n[Illustration:', '0134]\\n\\n\\n\\n\\n\\n\\n\\n\\nEnd', 'of', 'the', 'Project', 'Gutenberg', 'EBook', 'of', 'The', 'Prophet,', 'by', 'Kahlil', 'Gibran\\n\\n***', 'END', 'OF', 'THIS', 'PROJECT', 'GUTENBERG', 'EBOOK', 'THE', 'PROPHET', '***\\n\\n*****', 'This', 'file', 'should', 'be', 'named', '58585-0.txt', 'or', '58585-0.zip', '*****\\nThis', 'and', 'all', 'associated', 'files', 'of', 'various', 'formats', 'will', 'be', 'found', 'in:', 'http://www.gutenberg.org/5/8/5/8/58585/\\n\\nProduced', 'by', 'David', 'Widger', 'from', 'page', 'images', 'generously\\nprovided', 'by', 'the', 'Internet', 'Archive\\n\\n\\nUpdated', 'editions', 'will', 'replace', 'the', 'previous', 'one--the', 'old', 'editions', 'will\\nbe', 'renamed.\\n\\nCreating', 'the', 'works', 'from', 'print', 'editions', 'not', 'protected', 'by', 'U.S.', 'copyright\\nlaw', 'means', 'that', 'no', 'one', 'owns', 'a', 'United', 'States', 'copyright', 'in', 'these', 'works,\\nso', 'the', 'Foundation', '(and', 'you!)', 'can', 'copy', 'and', 'distribute', 'it', 'in', 'the', 'United\\nStates', 'without', 'permission', 'and', 'without', 'paying', 'copyright\\nroyalties.', 'Special', 'rules,', 'set', 'forth', 'in', 'the', 'General', 'Terms', 'of', 'Use', 'part\\nof', 'this', 'license,', 'apply', 'to', 'copying', 'and', 'distributing', 'Project\\nGutenberg-tm', 'electronic', 'works', 'to', 'protect', 'the', 'PROJECT', 'GUTENBERG-tm\\nconcept', 'and', 'trademark.', 'Project', 'Gutenberg', 'is', 'a', 'registered', 'trademark,\\nand', 'may', 'not', 'be', 'used', 'if', 'you', 'charge', 'for', 'the', 'eBooks,', 'unless', 'you', 'receive\\nspecific', 'permission.', 'If', 'you', 'do', 'not', 'charge', 'anything', 'for', 'copies', 'of', 'this\\neBook,', 'complying', 'with', 'the', 'rules', 'is', 'very', 'easy.', 'You', 'may', 'use', 'this', 'eBook\\nfor', 'nearly', 'any', 'purpose', 'such', 'as', 'creation', 'of', 'derivative', 'works,', 'reports,\\nperformances', 'and', 'research.', 'They', 'may', 'be', 'modified', 'and', 'printed', 'and', 'given\\naway--you', 'may', 'do', 'practically', 'ANYTHING', 'in', 'the', 'United', 'States', 'with', 'eBooks\\nnot', 'protected', 'by', 'U.S.', 'copyright', 'law.', 'Redistribution', 'is', 'subject', 'to', 'the\\ntrademark', 'license,', 'especially', 'commercial', 'redistribution.\\n\\nSTART:', 'FULL', 'LICENSE\\n\\nTHE', 'FULL', 'PROJECT', 'GUTENBERG', 'LICENSE\\nPLEASE', 'READ', 'THIS', 'BEFORE', 'YOU', 'DISTRIBUTE', 'OR', 'USE', 'THIS', 'WORK\\n\\nTo', 'protect', 'the', 'Project', 'Gutenberg-tm', 'mission', 'of', 'promoting', 'the', 'free\\ndistribution', 'of', 'electronic', 'works,', 'by', 'using', 'or', 'distributing', 'this', 'work\\n(or', 'any', 'other', 'work', 'associated', 'in', 'any', 'way', 'with', 'the', 'phrase', '\"Project\\nGutenberg\"),', 'you', 'agree', 'to', 'comply', 'with', 'all', 'the', 'terms', 'of', 'the', 'Full\\nProject', 'Gutenberg-tm', 'License', 'available', 'with', 'this', 'file', 'or', 'online', 'at\\nwww.gutenberg.org/license.\\n\\nSection', '1.', 'General', 'Terms', 'of', 'Use', 'and', 'Redistributing', 'Project\\nGutenberg-tm', 'electronic', 'works\\n\\n1.A.', 'By', 'reading', 'or', 'using', 'any', 'part', 'of', 'this', 'Project', 'Gutenberg-tm\\nelectronic', 'work,', 'you', 'indicate', 'that', 'you', 'have', 'read,', 'understand,', 'agree', 'to\\nand', 'accept', 'all', 'the', 'terms', 'of', 'this', 'license', 'and', 'intellectual', 'property\\n(trademark/copyright)', 'agreement.', 'If', 'you', 'do', 'not', 'agree', 'to', 'abide', 'by', 'all\\nthe', 'terms', 'of', 'this', 'agreement,', 'you', 'must', 'cease', 'using', 'and', 'return', 'or\\ndestroy', 'all', 'copies', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'in', 'your\\npossession.', 'If', 'you', 'paid', 'a', 'fee', 'for', 'obtaining', 'a', 'copy', 'of', 'or', 'access', 'to', 'a\\nProject', 'Gutenberg-tm', 'electronic', 'work', 'and', 'you', 'do', 'not', 'agree', 'to', 'be', 'bound\\nby', 'the', 'terms', 'of', 'this', 'agreement,', 'you', 'may', 'obtain', 'a', 'refund', 'from', 'the\\nperson', 'or', 'entity', 'to', 'whom', 'you', 'paid', 'the', 'fee', 'as', 'set', 'forth', 'in', 'paragraph\\n1.E.8.\\n\\n1.B.', '\"Project', 'Gutenberg\"', 'is', 'a', 'registered', 'trademark.', 'It', 'may', 'only', 'be\\nused', 'on', 'or', 'associated', 'in', 'any', 'way', 'with', 'an', 'electronic', 'work', 'by', 'people', 'who\\nagree', 'to', 'be', 'bound', 'by', 'the', 'terms', 'of', 'this', 'agreement.', 'There', 'are', 'a', 'few\\nthings', 'that', 'you', 'can', 'do', 'with', 'most', 'Project', 'Gutenberg-tm', 'electronic', 'works\\neven', 'without', 'complying', 'with', 'the', 'full', 'terms', 'of', 'this', 'agreement.', 'See\\nparagraph', '1.C', 'below.', 'There', 'are', 'a', 'lot', 'of', 'things', 'you', 'can', 'do', 'with', 'Project\\nGutenberg-tm', 'electronic', 'works', 'if', 'you', 'follow', 'the', 'terms', 'of', 'this\\nagreement', 'and', 'help', 'preserve', 'free', 'future', 'access', 'to', 'Project', 'Gutenberg-tm\\nelectronic', 'works.', 'See', 'paragraph', '1.E', 'below.\\n\\n1.C.', 'The', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', '(\"the\\nFoundation\"', 'or', 'PGLAF),', 'owns', 'a', 'compilation', 'copyright', 'in', 'the', 'collection\\nof', 'Project', 'Gutenberg-tm', 'electronic', 'works.', 'Nearly', 'all', 'the', 'individual\\nworks', 'in', 'the', 'collection', 'are', 'in', 'the', 'public', 'domain', 'in', 'the', 'United\\nStates.', 'If', 'an', 'individual', 'work', 'is', 'unprotected', 'by', 'copyright', 'law', 'in', 'the\\nUnited', 'States', 'and', 'you', 'are', 'located', 'in', 'the', 'United', 'States,', 'we', 'do', 'not\\nclaim', 'a', 'right', 'to', 'prevent', 'you', 'from', 'copying,', 'distributing,', 'performing,\\ndisplaying', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'the', 'work', 'as', 'long', 'as\\nall', 'references', 'to', 'Project', 'Gutenberg', 'are', 'removed.', 'Of', 'course,', 'we', 'hope\\nthat', 'you', 'will', 'support', 'the', 'Project', 'Gutenberg-tm', 'mission', 'of', 'promoting\\nfree', 'access', 'to', 'electronic', 'works', 'by', 'freely', 'sharing', 'Project', 'Gutenberg-tm\\nworks', 'in', 'compliance', 'with', 'the', 'terms', 'of', 'this', 'agreement', 'for', 'keeping', 'the\\nProject', 'Gutenberg-tm', 'name', 'associated', 'with', 'the', 'work.', 'You', 'can', 'easily\\ncomply', 'with', 'the', 'terms', 'of', 'this', 'agreement', 'by', 'keeping', 'this', 'work', 'in', 'the\\nsame', 'format', 'with', 'its', 'attached', 'full', 'Project', 'Gutenberg-tm', 'License', 'when\\nyou', 'share', 'it', 'without', 'charge', 'with', 'others.\\n\\n1.D.', 'The', 'copyright', 'laws', 'of', 'the', 'place', 'where', 'you', 'are', 'located', 'also', 'govern\\nwhat', 'you', 'can', 'do', 'with', 'this', 'work.', 'Copyright', 'laws', 'in', 'most', 'countries', 'are\\nin', 'a', 'constant', 'state', 'of', 'change.', 'If', 'you', 'are', 'outside', 'the', 'United', 'States,\\ncheck', 'the', 'laws', 'of', 'your', 'country', 'in', 'addition', 'to', 'the', 'terms', 'of', 'this\\nagreement', 'before', 'downloading,', 'copying,', 'displaying,', 'performing,\\ndistributing', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'this', 'work', 'or', 'any\\nother', 'Project', 'Gutenberg-tm', 'work.', 'The', 'Foundation', 'makes', 'no\\nrepresentations', 'concerning', 'the', 'copyright', 'status', 'of', 'any', 'work', 'in', 'any\\ncountry', 'outside', 'the', 'United', 'States.\\n\\n1.E.', 'Unless', 'you', 'have', 'removed', 'all', 'references', 'to', 'Project', 'Gutenberg:\\n\\n1.E.1.', 'The', 'following', 'sentence,', 'with', 'active', 'links', 'to,', 'or', 'other\\nimmediate', 'access', 'to,', 'the', 'full', 'Project', 'Gutenberg-tm', 'License', 'must', 'appear\\nprominently', 'whenever', 'any', 'copy', 'of', 'a', 'Project', 'Gutenberg-tm', 'work', '(any', 'work\\non', 'which', 'the', 'phrase', '\"Project', 'Gutenberg\"', 'appears,', 'or', 'with', 'which', 'the\\nphrase', '\"Project', 'Gutenberg\"', 'is', 'associated)', 'is', 'accessed,', 'displayed,\\nperformed,', 'viewed,', 'copied', 'or', 'distributed:', 'This', 'eBook', 'is', 'for', 'the', 'use', 'of', 'anyone', 'anywhere', 'in', 'the', 'United', 'States', 'and', 'most', 'other', 'parts', 'of', 'the', 'world', 'at', 'no', 'cost', 'and', 'with', 'almost', 'no', 'restrictions', 'whatsoever.', 'You', 'may', 'copy', 'it,', 'give', 'it', 'away', 'or', 're-use', 'it', 'under', 'the', 'terms', 'of', 'the', 'Project', 'Gutenberg', 'License', 'included', 'with', 'this', 'eBook', 'or', 'online', 'at', 'www.gutenberg.org.', 'If', 'you', 'are', 'not', 'located', 'in', 'the', 'United', 'States,', \"you'll\", 'have', 'to', 'check', 'the', 'laws', 'of', 'the', 'country', 'where', 'you', 'are', 'located', 'before', 'using', 'this', 'ebook.\\n\\n1.E.2.', 'If', 'an', 'individual', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'is\\nderived', 'from', 'texts', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', '(does', 'not\\ncontain', 'a', 'notice', 'indicating', 'that', 'it', 'is', 'posted', 'with', 'permission', 'of', 'the\\ncopyright', 'holder),', 'the', 'work', 'can', 'be', 'copied', 'and', 'distributed', 'to', 'anyone', 'in\\nthe', 'United', 'States', 'without', 'paying', 'any', 'fees', 'or', 'charges.', 'If', 'you', 'are\\nredistributing', 'or', 'providing', 'access', 'to', 'a', 'work', 'with', 'the', 'phrase', '\"Project\\nGutenberg\"', 'associated', 'with', 'or', 'appearing', 'on', 'the', 'work,', 'you', 'must', 'comply\\neither', 'with', 'the', 'requirements', 'of', 'paragraphs', '1.E.1', 'through', '1.E.7', 'or\\nobtain', 'permission', 'for', 'the', 'use', 'of', 'the', 'work', 'and', 'the', 'Project', 'Gutenberg-tm\\ntrademark', 'as', 'set', 'forth', 'in', 'paragraphs', '1.E.8', 'or', '1.E.9.\\n\\n1.E.3.', 'If', 'an', 'individual', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'is', 'posted\\nwith', 'the', 'permission', 'of', 'the', 'copyright', 'holder,', 'your', 'use', 'and', 'distribution\\nmust', 'comply', 'with', 'both', 'paragraphs', '1.E.1', 'through', '1.E.7', 'and', 'any\\nadditional', 'terms', 'imposed', 'by', 'the', 'copyright', 'holder.', 'Additional', 'terms\\nwill', 'be', 'linked', 'to', 'the', 'Project', 'Gutenberg-tm', 'License', 'for', 'all', 'works\\nposted', 'with', 'the', 'permission', 'of', 'the', 'copyright', 'holder', 'found', 'at', 'the\\nbeginning', 'of', 'this', 'work.\\n\\n1.E.4.', 'Do', 'not', 'unlink', 'or', 'detach', 'or', 'remove', 'the', 'full', 'Project', 'Gutenberg-tm\\nLicense', 'terms', 'from', 'this', 'work,', 'or', 'any', 'files', 'containing', 'a', 'part', 'of', 'this\\nwork', 'or', 'any', 'other', 'work', 'associated', 'with', 'Project', 'Gutenberg-tm.\\n\\n1.E.5.', 'Do', 'not', 'copy,', 'display,', 'perform,', 'distribute', 'or', 'redistribute', 'this\\nelectronic', 'work,', 'or', 'any', 'part', 'of', 'this', 'electronic', 'work,', 'without\\nprominently', 'displaying', 'the', 'sentence', 'set', 'forth', 'in', 'paragraph', '1.E.1', 'with\\nactive', 'links', 'or', 'immediate', 'access', 'to', 'the', 'full', 'terms', 'of', 'the', 'Project\\nGutenberg-tm', 'License.\\n\\n1.E.6.', 'You', 'may', 'convert', 'to', 'and', 'distribute', 'this', 'work', 'in', 'any', 'binary,\\ncompressed,', 'marked', 'up,', 'nonproprietary', 'or', 'proprietary', 'form,', 'including\\nany', 'word', 'processing', 'or', 'hypertext', 'form.', 'However,', 'if', 'you', 'provide', 'access\\nto', 'or', 'distribute', 'copies', 'of', 'a', 'Project', 'Gutenberg-tm', 'work', 'in', 'a', 'format\\nother', 'than', '\"Plain', 'Vanilla', 'ASCII\"', 'or', 'other', 'format', 'used', 'in', 'the', 'official\\nversion', 'posted', 'on', 'the', 'official', 'Project', 'Gutenberg-tm', 'web', 'site\\n(www.gutenberg.org),', 'you', 'must,', 'at', 'no', 'additional', 'cost,', 'fee', 'or', 'expense\\nto', 'the', 'user,', 'provide', 'a', 'copy,', 'a', 'means', 'of', 'exporting', 'a', 'copy,', 'or', 'a', 'means\\nof', 'obtaining', 'a', 'copy', 'upon', 'request,', 'of', 'the', 'work', 'in', 'its', 'original', '\"Plain\\nVanilla', 'ASCII\"', 'or', 'other', 'form.', 'Any', 'alternate', 'format', 'must', 'include', 'the\\nfull', 'Project', 'Gutenberg-tm', 'License', 'as', 'specified', 'in', 'paragraph', '1.E.1.\\n\\n1.E.7.', 'Do', 'not', 'charge', 'a', 'fee', 'for', 'access', 'to,', 'viewing,', 'displaying,\\nperforming,', 'copying', 'or', 'distributing', 'any', 'Project', 'Gutenberg-tm', 'works\\nunless', 'you', 'comply', 'with', 'paragraph', '1.E.8', 'or', '1.E.9.\\n\\n1.E.8.', 'You', 'may', 'charge', 'a', 'reasonable', 'fee', 'for', 'copies', 'of', 'or', 'providing\\naccess', 'to', 'or', 'distributing', 'Project', 'Gutenberg-tm', 'electronic', 'works\\nprovided', 'that\\n\\n*', 'You', 'pay', 'a', 'royalty', 'fee', 'of', '20%', 'of', 'the', 'gross', 'profits', 'you', 'derive', 'from', 'the', 'use', 'of', 'Project', 'Gutenberg-tm', 'works', 'calculated', 'using', 'the', 'method', 'you', 'already', 'use', 'to', 'calculate', 'your', 'applicable', 'taxes.', 'The', 'fee', 'is', 'owed', 'to', 'the', 'owner', 'of', 'the', 'Project', 'Gutenberg-tm', 'trademark,', 'but', 'he', 'has', 'agreed', 'to', 'donate', 'royalties', 'under', 'this', 'paragraph', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation.', 'Royalty', 'payments', 'must', 'be', 'paid', 'within', '60', 'days', 'following', 'each', 'date', 'on', 'which', 'you', 'prepare', '(or', 'are', 'legally', 'required', 'to', 'prepare)', 'your', 'periodic', 'tax', 'returns.', 'Royalty', 'payments', 'should', 'be', 'clearly', 'marked', 'as', 'such', 'and', 'sent', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'at', 'the', 'address', 'specified', 'in', 'Section', '4,', '\"Information', 'about', 'donations', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation.\"\\n\\n*', 'You', 'provide', 'a', 'full', 'refund', 'of', 'any', 'money', 'paid', 'by', 'a', 'user', 'who', 'notifies', 'you', 'in', 'writing', '(or', 'by', 'e-mail)', 'within', '30', 'days', 'of', 'receipt', 'that', 's/he', 'does', 'not', 'agree', 'to', 'the', 'terms', 'of', 'the', 'full', 'Project', 'Gutenberg-tm', 'License.', 'You', 'must', 'require', 'such', 'a', 'user', 'to', 'return', 'or', 'destroy', 'all', 'copies', 'of', 'the', 'works', 'possessed', 'in', 'a', 'physical', 'medium', 'and', 'discontinue', 'all', 'use', 'of', 'and', 'all', 'access', 'to', 'other', 'copies', 'of', 'Project', 'Gutenberg-tm', 'works.\\n\\n*', 'You', 'provide,', 'in', 'accordance', 'with', 'paragraph', '1.F.3,', 'a', 'full', 'refund', 'of', 'any', 'money', 'paid', 'for', 'a', 'work', 'or', 'a', 'replacement', 'copy,', 'if', 'a', 'defect', 'in', 'the', 'electronic', 'work', 'is', 'discovered', 'and', 'reported', 'to', 'you', 'within', '90', 'days', 'of', 'receipt', 'of', 'the', 'work.\\n\\n*', 'You', 'comply', 'with', 'all', 'other', 'terms', 'of', 'this', 'agreement', 'for', 'free', 'distribution', 'of', 'Project', 'Gutenberg-tm', 'works.\\n\\n1.E.9.', 'If', 'you', 'wish', 'to', 'charge', 'a', 'fee', 'or', 'distribute', 'a', 'Project\\nGutenberg-tm', 'electronic', 'work', 'or', 'group', 'of', 'works', 'on', 'different', 'terms', 'than\\nare', 'set', 'forth', 'in', 'this', 'agreement,', 'you', 'must', 'obtain', 'permission', 'in', 'writing\\nfrom', 'both', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'and', 'The\\nProject', 'Gutenberg', 'Trademark', 'LLC,', 'the', 'owner', 'of', 'the', 'Project', 'Gutenberg-tm\\ntrademark.', 'Contact', 'the', 'Foundation', 'as', 'set', 'forth', 'in', 'Section', '3', 'below.\\n\\n1.F.\\n\\n1.F.1.', 'Project', 'Gutenberg', 'volunteers', 'and', 'employees', 'expend', 'considerable\\neffort', 'to', 'identify,', 'do', 'copyright', 'research', 'on,', 'transcribe', 'and', 'proofread\\nworks', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', 'in', 'creating', 'the', 'Project\\nGutenberg-tm', 'collection.', 'Despite', 'these', 'efforts,', 'Project', 'Gutenberg-tm\\nelectronic', 'works,', 'and', 'the', 'medium', 'on', 'which', 'they', 'may', 'be', 'stored,', 'may\\ncontain', '\"Defects,\"', 'such', 'as,', 'but', 'not', 'limited', 'to,', 'incomplete,', 'inaccurate\\nor', 'corrupt', 'data,', 'transcription', 'errors,', 'a', 'copyright', 'or', 'other\\nintellectual', 'property', 'infringement,', 'a', 'defective', 'or', 'damaged', 'disk', 'or\\nother', 'medium,', 'a', 'computer', 'virus,', 'or', 'computer', 'codes', 'that', 'damage', 'or\\ncannot', 'be', 'read', 'by', 'your', 'equipment.\\n\\n1.F.2.', 'LIMITED', 'WARRANTY,', 'DISCLAIMER', 'OF', 'DAMAGES', '-', 'Except', 'for', 'the', '\"Right\\nof', 'Replacement', 'or', 'Refund\"', 'described', 'in', 'paragraph', '1.F.3,', 'the', 'Project\\nGutenberg', 'Literary', 'Archive', 'Foundation,', 'the', 'owner', 'of', 'the', 'Project\\nGutenberg-tm', 'trademark,', 'and', 'any', 'other', 'party', 'distributing', 'a', 'Project\\nGutenberg-tm', 'electronic', 'work', 'under', 'this', 'agreement,', 'disclaim', 'all\\nliability', 'to', 'you', 'for', 'damages,', 'costs', 'and', 'expenses,', 'including', 'legal\\nfees.', 'YOU', 'AGREE', 'THAT', 'YOU', 'HAVE', 'NO', 'REMEDIES', 'FOR', 'NEGLIGENCE,', 'STRICT\\nLIABILITY,', 'BREACH', 'OF', 'WARRANTY', 'OR', 'BREACH', 'OF', 'CONTRACT', 'EXCEPT', 'THOSE\\nPROVIDED', 'IN', 'PARAGRAPH', '1.F.3.', 'YOU', 'AGREE', 'THAT', 'THE', 'FOUNDATION,', 'THE\\nTRADEMARK', 'OWNER,', 'AND', 'ANY', 'DISTRIBUTOR', 'UNDER', 'THIS', 'AGREEMENT', 'WILL', 'NOT', 'BE\\nLIABLE', 'TO', 'YOU', 'FOR', 'ACTUAL,', 'DIRECT,', 'INDIRECT,', 'CONSEQUENTIAL,', 'PUNITIVE', 'OR\\nINCIDENTAL', 'DAMAGES', 'EVEN', 'IF', 'YOU', 'GIVE', 'NOTICE', 'OF', 'THE', 'POSSIBILITY', 'OF', 'SUCH\\nDAMAGE.\\n\\n1.F.3.', 'LIMITED', 'RIGHT', 'OF', 'REPLACEMENT', 'OR', 'REFUND', '-', 'If', 'you', 'discover', 'a\\ndefect', 'in', 'this', 'electronic', 'work', 'within', '90', 'days', 'of', 'receiving', 'it,', 'you', 'can\\nreceive', 'a', 'refund', 'of', 'the', 'money', '(if', 'any)', 'you', 'paid', 'for', 'it', 'by', 'sending', 'a\\nwritten', 'explanation', 'to', 'the', 'person', 'you', 'received', 'the', 'work', 'from.', 'If', 'you\\nreceived', 'the', 'work', 'on', 'a', 'physical', 'medium,', 'you', 'must', 'return', 'the', 'medium\\nwith', 'your', 'written', 'explanation.', 'The', 'person', 'or', 'entity', 'that', 'provided', 'you\\nwith', 'the', 'defective', 'work', 'may', 'elect', 'to', 'provide', 'a', 'replacement', 'copy', 'in\\nlieu', 'of', 'a', 'refund.', 'If', 'you', 'received', 'the', 'work', 'electronically,', 'the', 'person\\nor', 'entity', 'providing', 'it', 'to', 'you', 'may', 'choose', 'to', 'give', 'you', 'a', 'second\\nopportunity', 'to', 'receive', 'the', 'work', 'electronically', 'in', 'lieu', 'of', 'a', 'refund.', 'If\\nthe', 'second', 'copy', 'is', 'also', 'defective,', 'you', 'may', 'demand', 'a', 'refund', 'in', 'writing\\nwithout', 'further', 'opportunities', 'to', 'fix', 'the', 'problem.\\n\\n1.F.4.', 'Except', 'for', 'the', 'limited', 'right', 'of', 'replacement', 'or', 'refund', 'set', 'forth\\nin', 'paragraph', '1.F.3,', 'this', 'work', 'is', 'provided', 'to', 'you', \"'AS-IS',\", 'WITH', 'NO\\nOTHER', 'WARRANTIES', 'OF', 'ANY', 'KIND,', 'EXPRESS', 'OR', 'IMPLIED,', 'INCLUDING', 'BUT', 'NOT\\nLIMITED', 'TO', 'WARRANTIES', 'OF', 'MERCHANTABILITY', 'OR', 'FITNESS', 'FOR', 'ANY', 'PURPOSE.\\n\\n1.F.5.', 'Some', 'states', 'do', 'not', 'allow', 'disclaimers', 'of', 'certain', 'implied\\nwarranties', 'or', 'the', 'exclusion', 'or', 'limitation', 'of', 'certain', 'types', 'of\\ndamages.', 'If', 'any', 'disclaimer', 'or', 'limitation', 'set', 'forth', 'in', 'this', 'agreement\\nviolates', 'the', 'law', 'of', 'the', 'state', 'applicable', 'to', 'this', 'agreement,', 'the\\nagreement', 'shall', 'be', 'interpreted', 'to', 'make', 'the', 'maximum', 'disclaimer', 'or\\nlimitation', 'permitted', 'by', 'the', 'applicable', 'state', 'law.', 'The', 'invalidity', 'or\\nunenforceability', 'of', 'any', 'provision', 'of', 'this', 'agreement', 'shall', 'not', 'void', 'the\\nremaining', 'provisions.\\n\\n1.F.6.', 'INDEMNITY', '-', 'You', 'agree', 'to', 'indemnify', 'and', 'hold', 'the', 'Foundation,', 'the\\ntrademark', 'owner,', 'any', 'agent', 'or', 'employee', 'of', 'the', 'Foundation,', 'anyone\\nproviding', 'copies', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'in\\naccordance', 'with', 'this', 'agreement,', 'and', 'any', 'volunteers', 'associated', 'with', 'the\\nproduction,', 'promotion', 'and', 'distribution', 'of', 'Project', 'Gutenberg-tm\\nelectronic', 'works,', 'harmless', 'from', 'all', 'liability,', 'costs', 'and', 'expenses,\\nincluding', 'legal', 'fees,', 'that', 'arise', 'directly', 'or', 'indirectly', 'from', 'any', 'of\\nthe', 'following', 'which', 'you', 'do', 'or', 'cause', 'to', 'occur:', '(a)', 'distribution', 'of', 'this\\nor', 'any', 'Project', 'Gutenberg-tm', 'work,', '(b)', 'alteration,', 'modification,', 'or\\nadditions', 'or', 'deletions', 'to', 'any', 'Project', 'Gutenberg-tm', 'work,', 'and', '(c)', 'any\\nDefect', 'you', 'cause.\\n\\nSection', '2.', 'Information', 'about', 'the', 'Mission', 'of', 'Project', 'Gutenberg-tm\\n\\nProject', 'Gutenberg-tm', 'is', 'synonymous', 'with', 'the', 'free', 'distribution', 'of\\nelectronic', 'works', 'in', 'formats', 'readable', 'by', 'the', 'widest', 'variety', 'of\\ncomputers', 'including', 'obsolete,', 'old,', 'middle-aged', 'and', 'new', 'computers.', 'It\\nexists', 'because', 'of', 'the', 'efforts', 'of', 'hundreds', 'of', 'volunteers', 'and', 'donations\\nfrom', 'people', 'in', 'all', 'walks', 'of', 'life.\\n\\nVolunteers', 'and', 'financial', 'support', 'to', 'provide', 'volunteers', 'with', 'the\\nassistance', 'they', 'need', 'are', 'critical', 'to', 'reaching', 'Project', \"Gutenberg-tm's\\ngoals\", 'and', 'ensuring', 'that', 'the', 'Project', 'Gutenberg-tm', 'collection', 'will\\nremain', 'freely', 'available', 'for', 'generations', 'to', 'come.', 'In', '2001,', 'the', 'Project\\nGutenberg', 'Literary', 'Archive', 'Foundation', 'was', 'created', 'to', 'provide', 'a', 'secure\\nand', 'permanent', 'future', 'for', 'Project', 'Gutenberg-tm', 'and', 'future\\ngenerations.', 'To', 'learn', 'more', 'about', 'the', 'Project', 'Gutenberg', 'Literary\\nArchive', 'Foundation', 'and', 'how', 'your', 'efforts', 'and', 'donations', 'can', 'help,', 'see\\nSections', '3', 'and', '4', 'and', 'the', 'Foundation', 'information', 'page', 'at\\nwww.gutenberg.org', 'Section', '3.', 'Information', 'about', 'the', 'Project', 'Gutenberg\\nLiterary', 'Archive', 'Foundation\\n\\nThe', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'is', 'a', 'non', 'profit\\n501(c)(3)', 'educational', 'corporation', 'organized', 'under', 'the', 'laws', 'of', 'the\\nstate', 'of', 'Mississippi', 'and', 'granted', 'tax', 'exempt', 'status', 'by', 'the', 'Internal\\nRevenue', 'Service.', 'The', \"Foundation's\", 'EIN', 'or', 'federal', 'tax', 'identification\\nnumber', 'is', '64-6221541.', 'Contributions', 'to', 'the', 'Project', 'Gutenberg', 'Literary\\nArchive', 'Foundation', 'are', 'tax', 'deductible', 'to', 'the', 'full', 'extent', 'permitted', 'by\\nU.S.', 'federal', 'laws', 'and', 'your', \"state's\", 'laws.\\n\\nThe', \"Foundation's\", 'principal', 'office', 'is', 'in', 'Fairbanks,', 'Alaska,', 'with', 'the\\nmailing', 'address:', 'PO', 'Box', '750175,', 'Fairbanks,', 'AK', '99775,', 'but', 'its\\nvolunteers', 'and', 'employees', 'are', 'scattered', 'throughout', 'numerous\\nlocations.', 'Its', 'business', 'office', 'is', 'located', 'at', '809', 'North', '1500', 'West,', 'Salt\\nLake', 'City,', 'UT', '84116,', '(801)', '596-1887.', 'Email', 'contact', 'links', 'and', 'up', 'to\\ndate', 'contact', 'information', 'can', 'be', 'found', 'at', 'the', \"Foundation's\", 'web', 'site', 'and\\nofficial', 'page', 'at', 'www.gutenberg.org/contact\\n\\nFor', 'additional', 'contact', 'information:', 'Dr.', 'Gregory', 'B.', 'Newby', 'Chief', 'Executive', 'and', 'Director', 'gbnewby@pglaf.org\\n\\nSection', '4.', 'Information', 'about', 'Donations', 'to', 'the', 'Project', 'Gutenberg\\nLiterary', 'Archive', 'Foundation\\n\\nProject', 'Gutenberg-tm', 'depends', 'upon', 'and', 'cannot', 'survive', 'without', 'wide\\nspread', 'public', 'support', 'and', 'donations', 'to', 'carry', 'out', 'its', 'mission', 'of\\nincreasing', 'the', 'number', 'of', 'public', 'domain', 'and', 'licensed', 'works', 'that', 'can', 'be\\nfreely', 'distributed', 'in', 'machine', 'readable', 'form', 'accessible', 'by', 'the', 'widest\\narray', 'of', 'equipment', 'including', 'outdated', 'equipment.', 'Many', 'small', 'donations\\n($1', 'to', '$5,000)', 'are', 'particularly', 'important', 'to', 'maintaining', 'tax', 'exempt\\nstatus', 'with', 'the', 'IRS.\\n\\nThe', 'Foundation', 'is', 'committed', 'to', 'complying', 'with', 'the', 'laws', 'regulating\\ncharities', 'and', 'charitable', 'donations', 'in', 'all', '50', 'states', 'of', 'the', 'United\\nStates.', 'Compliance', 'requirements', 'are', 'not', 'uniform', 'and', 'it', 'takes', 'a\\nconsiderable', 'effort,', 'much', 'paperwork', 'and', 'many', 'fees', 'to', 'meet', 'and', 'keep', 'up\\nwith', 'these', 'requirements.', 'We', 'do', 'not', 'solicit', 'donations', 'in', 'locations\\nwhere', 'we', 'have', 'not', 'received', 'written', 'confirmation', 'of', 'compliance.', 'To', 'SEND\\nDONATIONS', 'or', 'determine', 'the', 'status', 'of', 'compliance', 'for', 'any', 'particular\\nstate', 'visit', 'www.gutenberg.org/donate\\n\\nWhile', 'we', 'cannot', 'and', 'do', 'not', 'solicit', 'contributions', 'from', 'states', 'where', 'we\\nhave', 'not', 'met', 'the', 'solicitation', 'requirements,', 'we', 'know', 'of', 'no', 'prohibition\\nagainst', 'accepting', 'unsolicited', 'donations', 'from', 'donors', 'in', 'such', 'states', 'who\\napproach', 'us', 'with', 'offers', 'to', 'donate.\\n\\nInternational', 'donations', 'are', 'gratefully', 'accepted,', 'but', 'we', 'cannot', 'make\\nany', 'statements', 'concerning', 'tax', 'treatment', 'of', 'donations', 'received', 'from\\noutside', 'the', 'United', 'States.', 'U.S.', 'laws', 'alone', 'swamp', 'our', 'small', 'staff.\\n\\nPlease', 'check', 'the', 'Project', 'Gutenberg', 'Web', 'pages', 'for', 'current', 'donation\\nmethods', 'and', 'addresses.', 'Donations', 'are', 'accepted', 'in', 'a', 'number', 'of', 'other\\nways', 'including', 'checks,', 'online', 'payments', 'and', 'credit', 'card', 'donations.', 'To\\ndonate,', 'please', 'visit:', 'www.gutenberg.org/donate\\n\\nSection', '5.', 'General', 'Information', 'About', 'Project', 'Gutenberg-tm', 'electronic', 'works.\\n\\nProfessor', 'Michael', 'S.', 'Hart', 'was', 'the', 'originator', 'of', 'the', 'Project\\nGutenberg-tm', 'concept', 'of', 'a', 'library', 'of', 'electronic', 'works', 'that', 'could', 'be\\nfreely', 'shared', 'with', 'anyone.', 'For', 'forty', 'years,', 'he', 'produced', 'and\\ndistributed', 'Project', 'Gutenberg-tm', 'eBooks', 'with', 'only', 'a', 'loose', 'network', 'of\\nvolunteer', 'support.\\n\\nProject', 'Gutenberg-tm', 'eBooks', 'are', 'often', 'created', 'from', 'several', 'printed\\neditions,', 'all', 'of', 'which', 'are', 'confirmed', 'as', 'not', 'protected', 'by', 'copyright', 'in\\nthe', 'U.S.', 'unless', 'a', 'copyright', 'notice', 'is', 'included.', 'Thus,', 'we', 'do', 'not\\nnecessarily', 'keep', 'eBooks', 'in', 'compliance', 'with', 'any', 'particular', 'paper\\nedition.\\n\\nMost', 'people', 'start', 'at', 'our', 'Web', 'site', 'which', 'has', 'the', 'main', 'PG', 'search\\nfacility:', 'www.gutenberg.org\\n\\nThis', 'Web', 'site', 'includes', 'information', 'about', 'Project', 'Gutenberg-tm,\\nincluding', 'how', 'to', 'make', 'donations', 'to', 'the', 'Project', 'Gutenberg', 'Literary\\nArchive', 'Foundation,', 'how', 'to', 'help', 'produce', 'our', 'new', 'eBooks,', 'and', 'how', 'to\\nsubscribe', 'to', 'our', 'email', 'newsletter', 'to', 'hear', 'about', 'new', 'eBooks.']\n" + ] + } + ], "source": [ - "# your code here" + "new_prophet = list(map(remove_words, range(len(prophet)), prophet))\n", + "new_prophet = list(filter(None, new_prophet))\n", + "prophet_reference = list(map(reference, new_prophet))\n", + "print(prophet_reference)" ] }, { @@ -130,21 +164,16 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ + "prophet_reference2 = str(prophet_reference)\n", + "\n", "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" + " return x.split(\"\\n\")\n", + "\n", + "\n" ] }, { @@ -156,11 +185,22 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[['PROPHET', '', '|Almustafa,'], ['the'], ['chosen'], ['and'], ['the', 'beloved,'], ['who'], ['was'], ['a'], ['dawn'], ['unto'], ['his'], ['own', 'day,'], ['had'], ['waited'], ['twelve'], ['years'], ['in'], ['the'], ['city', 'of'], ['Orphalese'], ['for'], ['his'], ['ship'], ['that'], ['was'], ['to', 'return'], ['and'], ['bear'], ['him'], ['back'], ['to'], ['the'], ['isle'], ['of', 'his'], ['birth.', '', 'And'], ['in'], ['the'], ['twelfth'], ['year,'], ['on'], ['the'], ['seventh', 'day'], ['of'], ['Ielool,'], ['the'], ['month'], ['of'], ['reaping,'], ['he', 'climbed'], ['the'], ['hill'], ['without'], ['the'], ['city'], ['walls', 'and'], ['looked'], ['seaward;'], ['and'], ['he'], ['beheld'], ['his', 'ship'], ['coming'], ['with'], ['the'], ['mist.', '', 'Then'], ['the'], ['gates'], ['of'], ['his'], ['heart'], ['were'], ['flung', 'open,'], ['and'], ['his'], ['joy'], ['flew'], ['far'], ['over'], ['the'], ['sea.', 'And'], ['he'], ['closed'], ['his'], ['eyes'], ['and'], ['prayed'], ['in'], ['the', 'silences'], ['of'], ['his'], ['soul.', '', '*****', '', 'But'], ['as'], ['he'], ['descended'], ['the'], ['hill,'], ['a'], ['sadness', 'came'], ['upon'], ['him,'], ['and'], ['he'], ['thought'], ['in'], ['his', 'heart:', '', 'How'], ['shall'], ['I'], ['go'], ['in'], ['peace'], ['and'], ['without', 'sorrow?'], ['Nay,'], ['not'], ['without'], ['a'], ['wound'], ['in'], ['the', 'spirit'], ['shall'], ['I'], ['leave'], ['this'], ['city.'], [''], ['the'], ['days'], ['of'], ['pain'], ['I'], ['have'], ['spent', 'within'], ['its'], ['walls,'], ['and'], ['long'], ['were'], ['the', 'nights'], ['of'], ['aloneness;'], ['and'], ['who'], ['can'], ['depart', 'from'], ['his'], ['pain'], ['and'], ['his'], ['aloneness'], ['without', 'regret?', '', 'Too'], ['many'], ['fragments'], ['of'], ['the'], ['spirit'], ['have'], ['I', 'scattered'], ['in'], ['these'], ['streets,'], ['and'], ['too'], ['many', 'are'], ['the'], ['children'], ['of'], ['my'], ['longing'], ['that'], ['walk', 'naked'], ['among'], ['these'], ['hills,'], ['and'], ['I'], ['cannot', 'withdraw'], ['from'], ['them'], ['without'], ['a'], ['burden'], ['and', 'an'], ['ache.', '', 'It'], ['is'], ['not'], ['a'], ['garment'], ['I'], ['cast'], ['off'], ['this', 'day,'], ['but'], ['a'], ['skin'], ['that'], ['I'], ['tear'], ['with'], ['my'], ['own', 'hands.', '', 'Nor'], ['is'], ['it'], ['a'], ['thought'], ['I'], ['leave'], ['behind'], ['me,', 'but'], ['a'], ['heart'], ['made'], ['sweet'], ['with'], ['hunger'], ['and', 'with'], ['thirst.', '', '*****', '', 'Yet'], ['I'], ['cannot'], ['tarry'], ['longer.', '', 'The'], ['sea'], ['that'], ['calls'], ['all'], ['things'], ['unto'], ['her', 'calls'], ['me,'], ['and'], ['I'], ['must'], ['embark.', '', 'For'], ['to'], ['stay,'], ['though'], ['the'], ['hours'], ['burn'], ['in', 'the'], ['night,'], ['is'], ['to'], ['freeze'], ['and'], ['crystallize', 'and'], ['be'], ['bound'], ['in'], ['a'], ['mould.', '', 'Fain'], ['would'], ['I'], ['take'], ['with'], ['me'], ['all'], ['that'], ['is', 'here.'], ['But'], ['how'], ['shall'], ['I?', '', 'A'], ['voice'], ['cannot'], ['carry'], ['the'], ['tongue'], ['and'], ['lips'], ['that'], ['gave'], ['it'], ['wings.'], ['Alone', 'must'], ['it'], ['seek'], ['the'], ['ether.', '', 'And'], ['alone'], ['and'], ['without'], ['his'], ['nest'], ['shall'], ['the', 'eagle'], ['fly'], ['across'], ['the'], ['sun.', '', '*****', '', 'Now'], ['when'], ['he'], ['reached'], ['the'], ['foot'], ['of'], ['the', 'hill,'], ['he'], ['turned'], ['again'], ['towards'], ['the'], ['sea,', 'and'], ['he'], ['saw'], ['his'], ['ship'], ['approaching'], ['the', 'harbour,'], ['and'], ['upon'], ['her'], ['prow'], ['the'], ['mariners,', 'the'], ['men'], ['of'], ['his'], ['own'], ['land.', '', 'And'], ['his'], ['soul'], ['cried'], ['out'], ['to'], ['them,'], ['and'], ['he', 'said:', '', 'Sons'], ['of'], ['my'], ['ancient'], ['mother,'], ['you'], ['riders'], ['of', 'the'], ['tides,', '', 'How'], ['often'], ['have'], ['you'], ['sailed'], ['in'], ['my'], ['dreams.', 'And'], ['now'], ['you'], ['come'], ['in'], ['my'], ['awakening,'], ['which', 'is'], ['my'], ['deeper'], ['dream.', '', 'Ready'], ['am'], ['I'], ['to'], ['go,'], ['and'], ['my'], ['eagerness'], ['with', 'sails'], ['full'], ['set'], ['awaits'], ['the'], ['wind.', '', 'Only'], ['another'], ['breath'], ['will'], ['I'], ['breathe'], ['in', 'this'], ['still'], ['air,'], ['only'], ['another'], ['loving'], ['look', 'cast'], ['backward,', '', 'And'], ['then'], ['I'], ['shall'], ['stand'], ['among'], ['you,'], ['a', 'seafarer'], ['among'], ['seafarers.'], [''], ['you,', 'vast'], ['sea,'], ['sleepless'], ['mother,', '', 'Who'], ['alone'], ['are'], ['peace'], ['and'], ['freedom'], ['to'], ['the', 'river'], ['and'], ['the'], ['stream,', '', 'Only'], ['another'], ['winding'], ['will'], ['this'], ['stream', 'make,'], ['only'], ['another'], ['murmur'], ['in'], ['this'], ['glade,', '', 'And'], ['then'], ['shall'], ['I'], ['come'], ['to'], ['you,'], ['a', 'boundless'], ['drop'], ['to'], ['a'], ['boundless'], ['ocean.', '', '*****', '', 'And'], ['as'], ['he'], ['walked'], ['he'], ['saw'], ['from'], ['afar'], ['men', 'and'], ['women'], ['leaving'], ['their'], ['fields'], ['and'], ['their', 'vineyards'], ['and'], ['hastening'], ['towards'], ['the'], ['city', 'gates.', '', 'And'], ['he'], ['heard'], ['their'], ['voices'], ['calling'], ['his', 'name,'], ['and'], ['shouting'], ['from'], ['field'], ['to'], ['field', 'telling'], ['one'], ['another'], ['of'], ['the'], ['coming'], ['of'], ['his', 'ship.', '', 'And'], ['he'], ['said'], ['to'], ['himself:', '', 'Shall'], ['the'], ['day'], ['of'], ['parting'], ['be'], ['the'], ['day'], ['of', 'gathering?', '', 'And'], ['shall'], ['it'], ['be'], ['said'], ['that'], ['my'], ['eve'], ['was'], ['in', 'truth'], ['my'], ['dawn?', '', 'And'], ['what'], ['shall'], ['I'], ['give'], ['unto'], ['him'], ['who'], ['has', 'left'], ['his'], ['plough'], ['in'], ['midfurrow,'], ['or'], ['to', 'him'], ['who'], ['has'], ['stopped'], ['the'], ['wheel'], ['of'], ['his', 'winepress?'], [''], ['my'], ['heart'], ['become'], ['a', 'tree'], ['heavy-laden'], ['with'], ['fruit'], ['that'], ['I'], ['may', 'gather'], ['and'], ['give'], ['unto'], ['them?', '', 'And'], ['shall'], ['my'], ['desires'], ['flow'], ['like'], ['a', 'fountain'], ['that'], ['I'], ['may'], ['fill'], ['their'], ['cups?', '', 'Am'], ['I'], ['a'], ['harp'], ['that'], ['the'], ['hand'], ['of'], ['the'], ['mighty', 'may'], ['touch'], ['me,'], ['or'], ['a'], ['flute'], ['that'], ['his'], ['breath', 'may'], ['pass'], ['through'], ['me?', '', 'A'], ['seeker'], ['of'], ['silences'], ['am'], ['I,'], ['and'], ['what', 'treasure'], ['have'], ['I'], ['found'], ['in'], ['silences'], ['that'], ['I', 'may'], ['dispense'], ['with'], ['confidence?', '', 'If'], ['this'], ['is'], ['my'], ['day'], ['of'], ['harvest,'], ['in'], ['what', 'fields'], ['have'], ['I'], ['sowed'], ['the'], ['seed,'], ['and'], ['in', 'what'], ['unremembered'], ['seasons?', '', 'If'], ['this'], ['indeed'], ['be'], ['the'], ['hour'], ['in'], ['which'], ['I', 'lift'], ['up'], ['my'], ['lantern,'], ['it'], ['is'], ['not'], ['my'], ['flame', 'that'], ['shall'], ['burn'], ['therein.', '', 'Empty'], ['and'], ['dark'], ['shall'], ['I'], ['raise'], ['my'], ['lantern,', '', 'And'], ['the'], ['guardian'], ['of'], ['the'], ['night'], ['shall'], ['fill', 'it'], ['with'], ['oil'], ['and'], ['he'], ['shall'], ['light'], ['it'], ['also.', '', '*****', '', 'These'], ['things'], ['he'], ['said'], ['in'], ['words.'], ['But'], ['much', 'in'], ['his'], ['heart'], ['remained'], ['unsaid.'], ['For'], [''], ['could'], ['not'], ['speak'], ['his'], ['deeper', 'secret.', '', '*****', '', '[Illustration:'], ['0020]', '', 'And'], ['when'], ['he'], ['entered'], ['into'], ['the'], ['city'], ['all', 'the'], ['people'], ['came'], ['to'], ['meet'], ['him,'], ['and'], ['they', 'were'], ['crying'], ['out'], ['to'], ['him'], ['as'], ['with'], ['one', 'voice.', '', 'And'], ['the'], ['elders'], ['of'], ['the'], ['city'], ['stood'], ['forth', 'and'], ['said:', '', 'Go'], ['not'], ['yet'], ['away'], ['from'], ['us.', '', 'A'], ['noontide'], ['have'], ['you'], ['been'], ['in'], ['our', 'twilight,'], ['and'], ['your'], ['youth'], ['has'], ['given'], ['us', 'dreams'], ['to'], ['dream.', '', 'No'], ['stranger'], ['are'], ['you'], ['among'], ['us,'], ['nor', 'a'], ['guest,'], ['but'], ['our'], ['son'], ['and'], ['our'], ['dearly', 'beloved.', '', 'Suffer'], ['not'], ['yet'], ['our'], ['eyes'], ['to'], ['hunger'], ['for', 'your'], ['face.', '', '*****', '', 'And'], ['the'], ['priests'], ['and'], ['the'], ['priestesses'], ['said', 'unto'], ['him:', '', 'Let'], ['not'], ['the'], ['waves'], ['of'], ['the'], ['sea'], ['separate'], ['us', 'now,'], ['and'], ['the'], ['years'], ['you'], ['have'], ['spent'], ['in'], ['our', 'midst'], ['become'], ['a'], ['memory.', '', 'You'], ['have'], ['walked'], ['among'], ['us'], ['a'], ['spirit,'], ['your'], ['shadow'], ['has'], ['been'], ['a'], ['light', 'upon'], ['our'], ['faces.', '', 'Much'], ['have'], ['we'], ['loved'], ['you.'], ['But'], ['speechless', 'was'], ['our'], ['love,'], ['and'], ['with'], ['veils'], ['has'], ['it'], ['been', 'veiled.', '', 'Yet'], ['now'], ['it'], ['cries'], ['aloud'], ['unto'], ['you,'], ['and', 'would'], ['stand'], ['revealed'], ['before'], ['you.', '', 'And'], ['ever'], ['has'], ['it'], ['been'], ['that'], ['love'], ['knows', 'not'], ['its'], ['own'], ['depth'], ['until'], ['the'], ['hour'], ['of', 'separation.', '', '*****', '', 'And'], ['others'], ['came'], ['also'], ['and'], ['entreated'], ['him.', 'But'], ['he'], ['answered'], ['them'], ['not.'], ['He'], ['only'], ['bent', 'his'], ['head;'], ['and'], ['those'], ['who'], ['stood'], ['near'], ['saw', 'his'], ['tears'], ['falling'], ['upon'], ['his'], ['breast.', '', 'And'], ['he'], ['and'], ['the'], ['people'], ['proceeded'], ['towards', 'the'], ['great'], ['square'], ['before'], ['the'], ['temple.', '', 'And'], ['there'], ['came'], ['out'], ['of'], ['the'], ['sanctuary'], ['a', 'woman'], ['whose'], ['name'], ['was'], ['Almitra.'], ['And'], ['she', 'was'], ['a'], ['seeress.', '', 'And'], ['he'], ['looked'], ['upon'], ['her'], ['with'], ['exceeding', 'tenderness,'], ['for'], ['it'], ['was'], ['she'], ['who'], ['had'], ['first', 'sought'], ['and'], ['believed'], ['in'], ['him'], ['when'], ['he'], ['had', 'been'], ['but'], ['a'], ['day'], ['in'], ['their'], ['city.'], [''], ['hailed'], ['him,'], ['saying:', '', 'Prophet'], ['of'], ['God,'], ['in'], ['quest'], ['of'], ['the', 'uttermost,'], ['long'], ['have'], ['you'], ['searched'], ['the', 'distances'], ['for'], ['your'], ['ship.', '', 'And'], ['now'], ['your'], ['ship'], ['has'], ['come,'], ['and'], ['you'], ['must', 'needs'], ['go.', '', 'Deep'], ['is'], ['your'], ['longing'], ['for'], ['the'], ['land'], ['of', 'your'], ['memories'], ['and'], ['the'], ['dwelling'], ['place', 'of'], ['your'], ['greater'], ['desires;'], ['and'], ['our'], ['love', 'would'], ['not'], ['bind'], ['you'], ['nor'], ['our'], ['needs'], ['hold', 'you.', '', 'Yet'], ['this'], ['we'], ['ask'], ['ere'], ['you'], ['leave'], ['us,'], ['that', 'you'], ['speak'], ['to'], ['us'], ['and'], ['give'], ['us'], ['of'], ['your', 'truth.', '', 'And'], ['we'], ['will'], ['give'], ['it'], ['unto'], ['our'], ['children,', 'and'], ['they'], ['unto'], ['their'], ['children,'], ['and'], ['it', 'shall'], ['not'], ['perish.', '', 'In'], ['your'], ['aloneness'], ['you'], ['have'], ['watched'], ['with', 'our'], ['days,'], ['and'], ['in'], ['your'], ['wakefulness'], ['you', 'have'], ['listened'], ['to'], ['the'], ['weeping'], ['and'], ['the', 'laughter'], ['of'], ['our'], ['sleep.', '', 'Now'], ['therefore'], ['disclose'], ['us'], ['to'], ['ourselves,', 'and'], ['tell'], ['us'], ['all'], ['that'], ['has'], ['been'], ['shown', 'you'], ['of'], ['that'], ['which'], ['is'], ['between'], ['birth'], ['and', 'death.', '', '*****', '', 'And'], ['he'], ['answered,', '', 'People'], ['of'], ['Orphalese,'], ['of'], ['what'], ['can'], ['I'], ['save'], ['of'], ['that'], ['which'], ['is'], ['even'], ['now', 'moving'], ['within'], ['your'], ['souls?', '', '*****'], ['*****', '', 'Then'], ['said'], ['Almitra,'], ['Speak'], ['to'], ['us'], ['of', '_Love_.', '', 'And'], ['he'], ['raised'], ['his'], ['head'], ['and'], ['looked'], ['upon', 'the'], ['people,'], ['and'], ['there'], ['fell'], ['a'], ['stillness', 'upon'], ['them.'], ['And'], ['with'], ['a'], ['great'], ['voice'], ['he', 'said:', '', 'When'], ['love'], ['beckons'], ['to'], ['you,'], ['follow'], ['him,', '', 'Though'], ['his'], ['ways'], ['are'], ['hard'], ['and'], ['steep.', '', 'And'], ['when'], ['his'], ['wings'], ['enfold'], ['you'], ['yield'], ['to', 'him,', '', 'Though'], ['the'], ['sword'], ['hidden'], ['among'], ['his', 'pinions'], ['may'], ['wound'], ['you.', '', 'And'], ['when'], ['he'], ['speaks'], ['to'], ['you'], ['believe'], ['in', 'him,', '', 'Though'], ['his'], ['voice'], ['may'], ['shatter'], ['your'], ['dreams', 'as'], ['the'], ['north'], ['wind'], ['lays'], ['waste'], ['the'], ['garden.', '', 'For'], ['even'], ['as'], ['love'], ['crowns'], ['you'], ['so'], ['shall', 'he'], ['crucify'], ['you.'], ['Even'], ['as'], ['he'], ['is'], ['for'], ['your', 'growth'], ['so'], ['is'], ['he'], ['for'], ['your'], ['pruning.', '', 'Even'], ['as'], ['he'], ['ascends'], ['to'], ['your'], ['height'], ['and'], ['your'], ['tenderest'], ['branches', 'that'], ['quiver'], ['in'], ['the'], ['sun,', '', 'So'], ['shall'], ['he'], ['descend'], ['to'], ['your'], ['roots'], ['and', 'shake'], ['them'], ['in'], ['their'], ['clinging'], ['to'], ['the', 'earth.', '', '*****', '', 'Like'], ['sheaves'], ['of'], ['corn'], ['he'], ['gathers'], ['you'], ['unto', 'himself.', '', 'He'], ['threshes'], ['you'], ['to'], ['make'], ['you'], ['naked.', '', 'He'], ['sifts'], ['you'], ['to'], ['free'], ['you'], ['from'], ['your', 'husks.', '', 'He'], ['grinds'], ['you'], ['to'], ['whiteness.', '', 'He'], ['kneads'], ['you'], ['until'], ['you'], ['are'], ['pliant;', '', 'And'], ['then'], ['he'], ['assigns'], ['you'], ['to'], ['his'], ['sacred', 'fire,'], ['that'], ['you'], ['may'], ['become'], ['sacred'], ['bread', 'for'], ['God’s'], ['sacred'], ['feast.', '', '*****', '', 'All'], ['these'], ['things'], ['shall'], ['love'], ['do'], ['unto'], ['you', 'that'], ['you'], ['may'], ['know'], ['the'], ['secrets'], ['of'], ['your', 'heart,'], ['and'], ['in'], ['that'], ['knowledge'], ['become'], ['a', 'fragment'], ['of'], ['Life’s'], ['heart.', '', 'But'], ['if'], ['in'], ['your'], ['fear'], ['you'], ['would'], ['seek'], ['only', 'love’s'], ['peace'], ['and'], ['love’s'], ['pleasure,', '', 'Then'], ['it'], ['is'], ['better'], ['for'], ['you'], ['that'], ['you', 'cover'], [''], ['nakedness'], ['and'], ['pass'], ['out'], ['of', 'love’s'], ['threshing-floor,', '', 'Into'], ['the'], ['seasonless'], ['world'], ['where'], ['you', 'shall'], ['laugh,'], ['but'], ['not'], ['all'], ['of'], ['your', 'laughter,'], ['and'], ['weep,'], ['but'], ['not'], ['all'], ['of'], ['your', 'tears.', '', '*****', '', 'Love'], ['gives'], ['naught'], ['but'], ['itself'], ['and'], ['takes', 'naught'], ['but'], ['from'], ['itself.', '', 'Love'], ['possesses'], ['not'], ['nor'], ['would'], ['it'], ['be', 'possessed;', '', 'For'], ['love'], ['is'], ['sufficient'], ['unto'], ['love.', '', 'When'], ['you'], ['love'], ['you'], ['should'], ['not'], ['say,'], ['“God', 'is'], ['in'], ['my'], ['heart,”'], ['but'], ['rather,'], ['“I'], ['am'], ['in', 'the'], ['heart'], ['of'], ['God.”', '', 'And'], ['think'], ['not'], ['you'], ['can'], ['direct'], ['the'], ['course', 'of'], ['love,'], ['for'], ['love,'], ['if'], ['it'], ['finds'], ['you', 'worthy,'], ['directs'], ['your'], ['course.', '', 'Love'], ['has'], ['no'], ['other'], ['desire'], ['but'], ['to'], ['fulfil', 'itself.', '', 'But'], ['if'], ['you'], ['love'], ['and'], ['must'], ['needs'], ['have', 'desires,'], ['let'], ['these'], ['be'], ['your'], ['desires:', '', 'To'], ['melt'], ['and'], ['be'], ['like'], ['a'], ['running'], ['brook'], ['that', 'sings'], ['its'], ['melody'], ['to'], ['the'], ['night.'], [''], ['the'], ['pain'], ['of'], ['too'], ['much'], ['tenderness.', '', 'To'], ['be'], ['wounded'], ['by'], ['your'], ['own'], ['understanding', 'of'], ['love;', '', 'And'], ['to'], ['bleed'], ['willingly'], ['and'], ['joyfully.', '', 'To'], ['wake'], ['at'], ['dawn'], ['with'], ['a'], ['winged'], ['heart'], ['and', 'give'], ['thanks'], ['for'], ['another'], ['day'], ['of'], ['loving;', '', 'To'], ['rest'], ['at'], ['the'], ['noon'], ['hour'], ['and'], ['meditate', 'love’s'], ['ecstacy;', '', 'To'], ['return'], ['home'], ['at'], ['eventide'], ['with', 'gratitude;', '', 'And'], ['then'], ['to'], ['sleep'], ['with'], ['a'], ['prayer'], ['for', 'the'], ['beloved'], ['in'], ['your'], ['heart'], ['and'], ['a'], ['song'], ['of', 'praise'], ['upon'], ['your'], ['lips.', '', '[Illustration:'], ['0029]', '', '*****'], ['*****'], ['Almitra'], ['spoke'], ['again'], ['and'], ['said,', 'And'], ['what'], ['of'], ['_Marriage_'], ['master?', '', 'And'], ['he'], ['answered'], ['saying:', '', 'You'], ['were'], ['born'], ['together,'], ['and'], ['together'], ['you', 'shall'], ['be'], ['forevermore.', '', 'You'], ['shall'], ['be'], ['together'], ['when'], ['the'], ['white', 'wings'], ['of'], ['death'], ['scatter'], ['your'], ['days.', '', 'Aye,'], ['you'], ['shall'], ['be'], ['together'], ['even'], ['in'], ['the', 'silent'], ['memory'], ['of'], ['God.', '', 'But'], ['let'], ['there'], ['be'], ['spaces'], ['in'], ['your', 'togetherness,', '', 'And'], ['let'], ['the'], ['winds'], ['of'], ['the'], ['heavens'], ['dance', 'between'], ['you.', '', '*****', '', 'Love'], ['one'], ['another,'], ['but'], ['make'], ['not'], ['a'], ['bond'], ['of', 'love:', '', 'Let'], ['it'], ['rather'], ['be'], ['a'], ['moving'], ['sea'], ['between', 'the'], ['shores'], ['of'], ['your'], ['souls.', '', 'Fill'], ['each'], ['other’s'], ['cup'], ['but'], ['drink'], ['not'], ['from', 'one'], ['cup.', '', 'Give'], ['one'], ['another'], ['of'], ['your'], ['bread'], ['but'], ['eat', 'not'], ['from'], ['the'], ['same'], ['loaf.'], [''], ['and', 'dance'], ['together'], ['and'], ['be'], ['joyous,'], ['but'], ['let', 'each'], ['one'], ['of'], ['you'], ['be'], ['alone,', '', 'Even'], ['as'], ['the'], ['strings'], ['of'], ['a'], ['lute'], ['are'], ['alone', 'though'], ['they'], ['quiver'], ['with'], ['the'], ['same'], ['music.', '', '*****', '', 'Give'], ['your'], ['hearts,'], ['but'], ['not'], ['into'], ['each', 'other’s'], ['keeping.', '', 'For'], ['only'], ['the'], ['hand'], ['of'], ['Life'], ['can'], ['contain', 'your'], ['hearts.', '', 'And'], ['stand'], ['together'], ['yet'], ['not'], ['too'], ['near', 'together:', '', 'For'], ['the'], ['pillars'], ['of'], ['the'], ['temple'], ['stand', 'apart,', '', 'And'], ['the'], ['oak'], ['tree'], ['and'], ['the'], ['cypress'], ['grow', 'not'], ['in'], ['each'], ['other’s'], ['shadow.', '', '[Illustration:'], ['0032]', '', '*****'], ['*****'], ['a'], ['woman'], ['who'], ['held'], ['a'], ['babe', 'against'], ['her'], ['bosom'], ['said,'], ['Speak'], ['to'], ['us'], ['of', '_Children_.', '', 'And'], ['he'], ['said:', '', 'Your'], ['children'], ['are'], ['not'], ['your'], ['children.', '', 'They'], ['are'], ['the'], ['sons'], ['and'], ['daughters'], ['of', 'Life’s'], ['longing'], ['for'], ['itself.', '', 'They'], ['come'], ['through'], ['you'], ['but'], ['not'], ['from'], ['you,', '', 'And'], ['though'], ['they'], ['are'], ['with'], ['you'], ['yet'], ['they', 'belong'], ['not'], ['to'], ['you.', '', '*****', '', 'You'], ['may'], ['give'], ['them'], ['your'], ['love'], ['but'], ['not'], ['your', 'thoughts,', '', 'For'], ['they'], ['have'], ['their'], ['own'], ['thoughts.', '', 'You'], ['may'], ['house'], ['their'], ['bodies'], ['but'], ['not'], ['their', 'souls,', '', 'For'], ['their'], ['souls'], ['dwell'], ['in'], ['the'], ['house'], ['of', 'tomorrow,'], ['which'], ['you'], ['cannot'], ['visit,'], ['not', 'even'], ['in'], ['your'], ['dreams.', '', 'You'], ['may'], ['strive'], ['to'], ['be'], ['like'], ['them,'], ['but'], ['seek', 'not'], ['to'], ['make'], ['them'], ['like'], ['you.'], [''], ['goes'], ['not'], ['backward'], ['nor'], ['tarries'], ['with', 'yesterday.', '', 'You'], ['are'], ['the'], ['bows'], ['from'], ['which'], ['your', 'children'], ['as'], ['living'], ['arrows'], ['are'], ['sent', 'forth.', '', 'The'], ['archer'], ['sees'], ['the'], ['mark'], ['upon'], ['the'], ['path', 'of'], ['the'], ['infinite,'], ['and'], ['He'], ['bends'], ['you'], ['with', 'His'], ['might'], ['that'], ['His'], ['arrows'], ['may'], ['go'], ['swift', 'and'], ['far.', '', 'Let'], ['your'], ['bending'], ['in'], ['the'], ['Archer’s'], ['hand'], ['be', 'for'], ['gladness;', '', 'For'], ['even'], ['as'], ['he'], ['loves'], ['the'], ['arrow'], ['that', 'flies,'], ['so'], ['He'], ['loves'], ['also'], ['the'], ['bow'], ['that'], ['is', 'stable.', '', '*****'], ['*****'], ['said'], ['a'], ['rich'], ['man,'], ['Speak'], ['to'], ['us'], ['of', '_Giving_.', '', 'And'], ['he'], ['answered:', '', 'You'], ['give'], ['but'], ['little'], ['when'], ['you'], ['give'], ['of', 'your'], ['possessions.', '', 'It'], ['is'], ['when'], ['you'], ['give'], ['of'], ['yourself'], ['that'], ['you', 'truly'], ['give.', '', 'For'], ['what'], ['are'], ['your'], ['possessions'], ['but'], ['things', 'you'], ['keep'], ['and'], ['guard'], ['for'], ['fear'], ['you'], ['may'], ['need', 'them'], ['tomorrow?', '', 'And'], ['tomorrow,'], ['what'], ['shall'], ['tomorrow'], ['bring', 'to'], ['the'], ['overprudent'], ['dog'], ['burying'], ['bones', 'in'], ['the'], ['trackless'], ['sand'], ['as'], ['he'], ['follows'], ['the', 'pilgrims'], ['to'], ['the'], ['holy'], ['city?', '', 'And'], ['what'], ['is'], ['fear'], ['of'], ['need'], ['but'], ['need', 'itself?', '', 'Is'], ['not'], ['dread'], ['of'], ['thirst'], ['when'], ['your'], ['well'], ['is', 'full,'], ['the'], ['thirst'], ['that'], ['is'], ['unquenchable?', '', 'There'], ['are'], ['those'], ['who'], ['give'], ['little'], ['of'], ['the'], ['which'], ['they'], ['have--and'], ['they'], ['give', 'it'], ['for'], ['recognition'], ['and'], ['their'], ['hidden', 'desire'], ['makes'], ['their'], ['gifts'], ['unwholesome.', '', 'And'], ['there'], ['are'], ['those'], ['who'], ['have'], ['little'], ['and', 'give'], ['it'], ['all.', '', 'These'], ['are'], ['the'], ['believers'], ['in'], ['life'], ['and', 'the'], ['bounty'], ['of'], ['life,'], ['and'], ['their'], ['coffer'], ['is', 'never'], ['empty.', '', 'There'], ['are'], ['those'], ['who'], ['give'], ['with'], ['joy,'], ['and', 'that'], ['joy'], ['is'], ['their'], ['reward.', '', 'And'], ['there'], ['are'], ['those'], ['who'], ['give'], ['with'], ['pain,', 'and'], ['that'], ['pain'], ['is'], ['their'], ['baptism.', '', 'And'], ['there'], ['are'], ['those'], ['who'], ['give'], ['and'], ['know', 'not'], ['pain'], ['in'], ['giving,'], ['nor'], ['do'], ['they'], ['seek', 'joy,'], ['nor'], ['give'], ['with'], ['mindfulness'], ['of', 'virtue;', '', 'They'], ['give'], ['as'], ['in'], ['yonder'], ['valley'], ['the'], ['myrtle', 'breathes'], ['its'], ['fragrance'], ['into'], ['space.', '', 'Through'], ['the'], ['hands'], ['of'], ['such'], ['as'], ['these'], ['God', 'speaks,'], ['and'], ['from'], ['behind'], ['their'], ['eyes'], ['He', 'smiles'], ['upon'], ['the'], ['earth.', '', '[Illustration:'], ['0039]', '', 'It'], ['is'], ['well'], ['to'], ['give'], ['when'], ['asked,'], ['but'], ['it', 'is'], ['better'], ['to'], ['give'], ['unasked,'], ['through', 'understanding;', '', 'And'], ['to'], ['the'], ['open-handed'], ['the'], ['search'], ['for'], ['who'], ['shall'], ['receive'], ['is'], ['joy'], ['greater', 'than'], ['giving.', '', 'And'], ['is'], ['there'], ['aught'], ['you'], ['would'], ['withhold?', '', 'All'], ['you'], ['have'], ['shall'], ['some'], ['day'], ['be'], ['given;', '', 'Therefore'], ['give'], ['now,'], ['that'], ['the'], ['season', 'of'], ['giving'], ['may'], ['be'], ['yours'], ['and'], ['not'], ['your', 'inheritors’.', '', 'You'], ['often'], ['say,'], ['“I'], ['would'], ['give,'], ['but'], ['only', 'to'], ['the'], ['deserving.”', '', 'The'], ['trees'], ['in'], ['your'], ['orchard'], ['say'], ['not'], ['so,', 'nor'], ['the'], ['flocks'], ['in'], ['your'], ['pasture.', '', 'They'], ['give'], ['that'], ['they'], ['may'], ['live,'], ['for'], ['to', 'withhold'], ['is'], ['to'], ['perish.', '', 'Surely'], ['he'], ['who'], ['is'], ['worthy'], ['to'], ['receive'], ['his', 'days'], ['and'], ['his'], ['nights,'], ['is'], ['worthy'], ['of'], ['all', 'else'], ['from'], ['you.', '', 'And'], ['he'], ['who'], ['has'], ['deserved'], ['to'], ['drink'], ['from', 'the'], ['ocean'], ['of'], ['life'], ['deserves'], ['to'], ['fill'], ['his', 'cup'], ['from'], ['your'], ['little'], ['stream.', '', 'And'], ['what'], ['desert'], ['greater'], ['shall'], ['there'], ['be,', 'than'], ['that'], ['which'], ['lies'], ['in'], ['the'], ['courage', 'and'], ['the'], ['confidence,'], ['nay'], ['the'], ['charity,'], ['of', 'receiving?', '', 'And'], ['who'], ['are'], ['you'], ['that'], ['men'], ['should'], ['rend'], ['bosom'], ['and'], ['unveil'], ['their'], ['pride,', 'that'], ['you'], ['may'], ['see'], ['their'], ['worth'], ['naked'], ['and', 'their'], ['pride'], ['unabashed?', '', 'See'], ['first'], ['that'], ['you'], ['yourself'], ['deserve'], ['to', 'be'], ['a'], ['giver,'], ['and'], ['an'], ['instrument'], ['of'], ['giving.', '', 'For'], ['in'], ['truth'], ['it'], ['is'], ['life'], ['that'], ['gives'], ['unto', 'life--while'], ['you,'], ['who'], ['deem'], ['yourself'], ['a', 'giver,'], ['are'], ['but'], ['a'], ['witness.', '', 'And'], ['you'], ['receivers--and'], ['you'], ['are', 'all'], ['receivers--assume'], ['no'], ['weight'], ['of', 'gratitude,'], ['lest'], ['you'], ['lay'], ['a'], ['yoke'], ['upon', 'yourself'], ['and'], ['upon'], ['him'], ['who'], ['gives.', '', 'Rather'], ['rise'], ['together'], ['with'], ['the'], ['giver'], ['on', 'his'], ['gifts'], ['as'], ['on'], ['wings;', '', 'For'], ['to'], ['be'], ['overmindful'], ['of'], ['your'], ['debt,'], ['is', 'ito'], ['doubt'], ['his'], ['generosity'], ['who'], ['has'], ['the', 'freehearted'], ['earth'], ['for'], ['mother,'], ['and'], ['God', 'for'], ['father.', '', '[Illustration:'], ['0042]', '', '*****'], ['*****'], ['an'], ['old'], ['man,'], ['a'], ['keeper'], ['of'], ['an', 'inn,'], ['said,'], ['Speak'], ['to'], ['us'], ['of'], ['_Eating'], ['and', 'Drinking_.', '', 'And'], ['he'], ['said:', '', 'Would'], ['that'], ['you'], ['could'], ['live'], ['on'], ['the', 'fragrance'], ['of'], ['the'], ['earth,'], ['and'], ['like'], ['an'], ['air', 'plant'], ['be'], ['sustained'], ['by'], ['the'], ['light.', '', 'But'], ['since'], ['you'], ['must'], ['kill'], ['to'], ['eat,'], ['and'], ['rob', 'the'], ['newly'], ['born'], ['of'], ['its'], ['mother’s'], ['milk'], ['to', 'quench'], ['your'], ['thirst,'], ['let'], ['it'], ['then'], ['be'], ['an', 'act'], ['of'], ['worship,', '', 'And'], ['let'], ['your'], ['board'], ['stand'], ['an'], ['altar'], ['on', 'which'], ['the'], ['pure'], ['and'], ['the'], ['innocent'], ['of', 'forest'], ['and'], ['plain'], ['are'], ['sacrificed'], ['for'], ['that', 'which'], ['is'], ['purer'], ['and'], ['still'], ['more'], ['innocent', 'in'], ['man.', '', '*****', '', 'When'], ['you'], ['kill'], ['a'], ['beast'], ['say'], ['to'], ['him'], ['in'], ['your', 'heart,', '', '“By'], ['the'], ['same'], ['power'], ['that'], ['slays'], ['you,'], ['I'], ['too', 'am'], ['slain;'], ['and'], ['I'], ['too'], ['shall'], ['be'], ['consumed.'], ['the'], ['law'], ['that'], ['delivered'], ['you'], ['into', 'my'], ['hand'], ['shall'], ['deliver'], ['me'], ['into'], ['a'], ['mightier', 'hand.', '', 'Your'], ['blood'], ['and'], ['my'], ['blood'], ['is'], ['naught'], ['but', 'the'], ['sap'], ['that'], ['feeds'], ['the'], ['tree'], ['of'], ['heaven.”', '', '*****', '', 'And'], ['when'], ['you'], ['crush'], ['an'], ['apple'], ['with'], ['your', 'teeth,'], ['say'], ['to'], ['it'], ['in'], ['your'], ['heart,', '', '“Your'], ['seeds'], ['shall'], ['live'], ['in'], ['my'], ['body,', '', 'And'], ['the'], ['buds'], ['of'], ['your'], ['tomorrow'], ['shall', 'blossom'], ['in'], ['my'], ['heart,', '', 'And'], ['your'], ['fragrance'], ['shall'], ['be'], ['my'], ['breath,', 'And'], ['together'], ['we'], ['shall'], ['rejoice'], ['through', 'all'], ['the'], ['seasons.”', '', '*****', '', 'And'], ['in'], ['the'], ['autumn,'], ['when'], ['you'], ['gather', 'the'], ['grapes'], ['of'], ['your'], ['vineyards'], ['for'], ['the', 'winepress,'], ['say'], ['in'], ['your'], ['heart,', '', '“I'], ['too'], ['am'], ['a'], ['vineyard,'], ['and'], ['my'], ['fruit'], ['shall', 'be'], ['gathered'], ['for'], ['the'], ['winepress,', '', 'And'], ['like'], ['new'], ['wine'], ['I'], ['shall'], ['be'], ['kept'], ['in', 'eternal'], ['vessels.”', '', 'And'], ['in'], ['winter,'], ['when'], ['you'], ['draw'], ['the'], ['wine,'], ['there'], ['be'], ['in'], ['your'], ['heart'], ['a'], ['song', 'for'], ['each'], ['cup;', '', 'And'], ['let'], ['there'], ['be'], ['in'], ['the'], ['song'], ['a', 'remembrance'], ['for'], ['the'], ['autumn'], ['days,'], ['and'], ['for', 'the'], ['vineyard,'], ['and'], ['for'], ['the'], ['winepress.', '', '*****', '*****'], ['Then'], ['a'], ['ploughman'], ['said,'], ['Speak', 'to'], ['us'], ['of'], ['_Work_.', '', 'And'], ['he'], ['answered,'], ['saying:', '', 'You'], ['work'], ['that'], ['you'], ['may'], ['keep'], ['pace'], ['with'], ['the', 'earth'], ['and'], ['the'], ['soul'], ['of'], ['the'], ['earth.', '', 'For'], ['to'], ['be'], ['idle'], ['is'], ['to'], ['become'], ['a'], ['stranger', 'unto'], ['the'], ['seasons,'], ['and'], ['to'], ['step'], ['out'], ['of', 'life’s'], ['procession,'], ['that'], ['marches'], ['in', 'majesty'], ['and'], ['proud'], ['submission'], ['towards'], ['the', 'infinite.', '', 'When'], ['you'], ['work'], ['you'], ['are'], ['a'], ['flute'], ['through', 'whose'], ['heart'], ['the'], ['whispering'], ['of'], ['the'], ['hours', 'turns'], ['to'], ['music.', '', 'Which'], ['of'], ['you'], ['would'], ['be'], ['a'], ['reed,'], ['dumb'], ['and', 'silent,'], ['when'], ['all'], ['else'], ['sings'], ['together'], ['in', 'unison?', '', 'Always'], ['you'], ['have'], ['been'], ['told'], ['that'], ['work'], ['is'], ['a', 'curse'], ['and'], ['labour'], ['a'], ['misfortune.', '', 'But'], ['I'], ['say'], ['to'], ['you'], ['that'], ['when'], ['you'], ['work'], ['you', 'fulfil'], ['a'], ['part'], ['of'], ['earth’s'], ['furthest'], ['dream,'], ['to'], ['you'], ['when'], ['that'], ['dream'], ['was', 'born,', '', 'And'], ['in'], ['keeping'], ['yourself'], ['with'], ['labour'], ['you', 'are'], ['in'], ['truth'], ['loving'], ['life,', '', 'And'], ['to'], ['love'], ['life'], ['through'], ['labour'], ['is'], ['to'], ['be', 'intimate'], ['with'], ['life’s'], ['inmost'], ['secret.', '', '*****', '', 'But'], ['if'], ['you'], ['in'], ['your'], ['pain'], ['call'], ['birth'], ['an', 'affliction'], ['and'], ['the'], ['support'], ['of'], ['the'], ['flesh', 'a'], ['curse'], ['written'], ['upon'], ['your'], ['brow,'], ['then'], ['I', 'answer'], ['that'], ['naught'], ['but'], ['the'], ['sweat'], ['of', 'your'], ['brow'], ['shall'], ['wash'], ['away'], ['that'], ['which'], ['is', 'written.', '', 'You'], ['have'], ['been'], ['told'], ['also'], ['that'], ['life'], ['is', 'darkness,'], ['and'], ['in'], ['your'], ['weariness'], ['you'], ['echo', 'what'], ['was'], ['said'], ['by'], ['the'], ['weary.', '', 'And'], ['I'], ['say'], ['that'], ['life'], ['is'], ['indeed'], ['darkness', '‘save'], ['when'], ['there'], ['is'], ['urge,', '', 'And'], ['all'], ['urge'], ['is'], ['blind'], ['save'], ['when'], ['there'], ['is', 'knowledge,', '', 'And'], ['all'], ['knowledge'], ['is'], ['vain'], ['save'], ['when', 'there'], ['is'], ['work,', '', 'And'], ['all'], ['work'], ['is'], ['empty'], ['save'], ['when'], ['there'], ['is', 'love;', '', 'And'], ['when'], ['you'], ['work'], ['with'], ['love'], ['you'], ['bind'], ['to'], ['yourself,'], ['and'], ['to'], ['one', 'another,'], ['and'], ['to'], ['God.', '', '*****', '', 'And'], ['what'], ['is'], ['it'], ['to'], ['work'], ['with'], ['love?', '', 'It'], ['is'], ['to'], ['weave'], ['the'], ['cloth'], ['with'], ['threads', 'drawn'], ['from'], ['your'], ['heart,'], ['even'], ['as'], ['if'], ['your', 'beloved'], ['were'], ['to'], ['wear'], ['that'], ['cloth.', '', 'It'], ['is'], ['to'], ['build'], ['a'], ['house'], ['with'], ['affection,', 'even'], ['as'], ['if'], ['your'], ['beloved'], ['were'], ['to'], ['dwell'], ['in', 'that'], ['house.', '', 'It'], ['is'], ['to'], ['sow'], ['seeds'], ['with'], ['tenderness'], ['and', 'reap'], ['the'], ['harvest'], ['with'], ['joy,'], ['even'], ['as'], ['if', 'your'], ['beloved'], ['were'], ['to'], ['eat'], ['the'], ['fruit.', '', 'It'], ['is'], ['to'], ['charge'], ['all'], ['things'], ['you'], ['fashion', 'with'], ['a'], ['breath'], ['of'], ['your'], ['own'], ['spirit,', '', 'And'], ['to'], ['know'], ['that'], ['all'], ['the'], ['blessed'], ['dead', 'are'], ['standing'], ['about'], ['you'], ['and'], ['watching.', '', 'Often'], ['have'], ['I'], ['heard'], ['you'], ['say,'], ['as'], ['if', 'speaking'], ['in'], ['sleep,'], ['“He'], ['who'], ['works'], ['in', 'marble,'], ['and'], ['finds'], ['the'], ['shape'], ['of'], ['his'], ['own', 'soul'], ['in'], ['the'], ['stone,'], ['is'], ['nobler'], ['than'], ['he'], ['who', 'ploughs'], ['the'], ['soil.'], [''], ['he'], ['who'], ['seizes', 'the'], ['rainbow'], ['to'], ['lay'], ['it'], ['on'], ['a'], ['cloth'], ['in'], ['the', 'likeness'], ['of'], ['man,'], ['is'], ['more'], ['than'], ['he'], ['who', 'makes'], ['the'], ['sandals'], ['for'], ['our'], ['feet.”', '', 'But'], ['I'], ['say,'], ['not'], ['in'], ['sleep'], ['but'], ['in'], ['the', 'overwakefulness'], ['of'], ['noontide,'], ['that'], ['the', 'wind'], ['speaks'], ['not'], ['more'], ['sweetly'], ['to'], ['the', 'giant'], ['oaks'], ['than'], ['to'], ['the'], ['least'], ['of'], ['all'], ['the', 'blades'], ['of'], ['grass;', '', 'And'], ['he'], ['alone'], ['is'], ['great'], ['who'], ['turns'], ['the', 'voice'], ['of'], ['the'], ['wind'], ['into'], ['a'], ['song'], ['made', 'sweeter'], ['by'], ['his'], ['own'], ['loving.', '', '*****', '', 'Work'], ['is'], ['love'], ['made'], ['visible.', '', 'And'], ['if'], ['you'], ['cannot'], ['work'], ['with'], ['love'], ['but', 'only'], ['with'], ['distaste,'], ['it'], ['is'], ['better'], ['that', 'you'], ['should'], ['leave'], ['your'], ['work'], ['and'], ['sit'], ['at', 'the'], ['gate'], ['of'], ['the'], ['temple'], ['and'], ['take'], ['alms'], ['of', 'those'], ['who'], ['work'], ['with'], ['joy.', '', 'For'], ['if'], ['you'], ['bake'], ['bread'], ['with'], ['indifference,', 'you'], ['bake'], ['a'], ['bitter'], ['bread'], ['that'], ['feeds'], ['but', 'half'], ['man’s'], ['hunger.', '', 'And'], ['if'], ['you'], ['grudge'], ['the'], ['crushing'], ['of'], ['the', 'grapes,'], ['your'], ['grudge'], ['distils'], ['a'], ['poison'], ['in', 'the'], ['wine.'], [''], ['if'], ['you'], ['sing'], ['though'], ['as', 'angels,'], ['and'], ['love'], ['not'], ['the'], ['singing,'], ['you', 'muffle'], ['man’s'], ['ears'], ['to'], ['the'], ['voices'], ['of'], ['the', 'day'], ['and'], ['the'], ['voices'], ['of'], ['the'], ['night.', '', '*****'], ['*****'], ['a'], ['woman'], ['said,'], ['Speak'], ['to'], ['us'], ['of', '_Joy'], ['and'], ['Sorrow_.', '', 'And'], ['he'], ['answered:', '', 'Your'], ['joy'], ['is'], ['your'], ['sorrow'], ['unmasked.', '', 'And'], ['the'], ['selfsame'], ['well'], ['from'], ['which'], ['your', 'laughter'], ['rises'], ['was'], ['oftentimes'], ['filled', 'with'], ['your'], ['tears.', '', 'And'], ['how'], ['else'], ['can'], ['it'], ['be?', '', 'The'], ['deeper'], ['that'], ['sorrow'], ['carves'], ['into'], ['your', 'being,'], ['the'], ['more'], ['joy'], ['you'], ['can'], ['contain.', '', 'Is'], ['not'], ['the'], ['cup'], ['that'], ['holds'], ['your'], ['wine'], ['the', 'very'], ['cup'], ['that'], ['was'], ['burned'], ['in'], ['the'], ['potter’s', 'oven?', '', 'And'], ['is'], ['not'], ['the'], ['lute'], ['that'], ['soothes'], ['your', 'spirit,'], ['the'], ['very'], ['wood'], ['that'], ['was'], ['hollowed', 'with'], ['knives?', '', 'When'], ['you'], ['are'], ['joyous,'], ['look'], ['deep'], ['into'], ['your', 'heart'], ['and'], ['you'], ['shall'], ['find'], ['it'], ['is'], ['only', 'that'], ['which'], ['has'], ['given'], ['you'], ['sorrow'], ['that'], ['is', 'giving'], ['you'], ['joy.', '', 'When'], ['you'], ['are'], ['sorrowful'], ['look'], ['again'], ['in'], ['heart,'], ['and'], ['you'], ['shall'], ['see'], ['that', 'in'], ['truth'], ['you'], ['are'], ['weeping'], ['for'], ['that'], ['which', 'has'], ['been'], ['your'], ['delight.', '', '*****', '', 'Some'], ['of'], ['you'], ['say,'], ['“Joy'], ['is'], ['greater'], ['than', 'sorrow,”'], ['and'], ['others'], ['say,'], ['“Nay,'], ['sorrow'], ['is', 'the'], ['greater.”', '', 'But'], ['I'], ['say'], ['unto'], ['you,'], ['they'], ['are', 'inseparable.', '', 'Together'], ['they'], ['come,'], ['and'], ['when'], ['one'], ['sits', 'alone'], ['with'], ['you'], ['at'], ['your'], ['board,'], ['remember', 'that'], ['the'], ['other'], ['is'], ['asleep'], ['upon'], ['your'], ['bed.', '', 'Verily'], ['you'], ['are'], ['suspended'], ['like'], ['scales', 'between'], ['your'], ['sorrow'], ['and'], ['your'], ['joy.', '', 'Only'], ['when'], ['you'], ['are'], ['empty'], ['are'], ['you'], ['at', 'standstill'], ['and'], ['balanced.', '', 'When'], ['the'], ['treasure-keeper'], ['lifts'], ['you'], ['to', 'weigh'], ['his'], ['gold'], ['and'], ['his'], ['silver,'], ['needs', 'must'], ['your'], ['joy'], ['or'], ['your'], ['sorrow'], ['rise'], ['or', 'fall.', '', '*****'], ['*****'], ['a'], ['mason'], ['came'], ['forth'], ['and'], ['said,', 'Speak'], ['to'], ['us'], ['of'], ['_Houses_.', '', 'And'], ['he'], ['answered'], ['and'], ['said:', '', 'Build'], ['of'], ['your'], ['imaginings'], ['a'], ['bower'], ['in'], ['the', 'wilderness'], ['ere'], ['you'], ['build'], ['a'], ['house'], ['within', 'the'], ['city'], ['walls.', '', 'For'], ['even'], ['as'], ['you'], ['have'], ['home-comings'], ['in', 'your'], ['twilight,'], ['so'], ['has'], ['the'], ['wanderer'], ['in', 'you,'], ['the'], ['ever'], ['distant'], ['and'], ['alone.', '', 'Your'], ['house'], ['is'], ['your'], ['larger'], ['body.', '', 'It'], ['grows'], ['in'], ['the'], ['sun'], ['and'], ['sleeps'], ['in'], ['the', 'stillness'], ['of'], ['the'], ['night;'], ['and'], ['it'], ['is'], ['not', 'dreamless.'], ['Does'], ['not'], ['your'], ['house'], ['dream?', 'and'], ['dreaming,'], ['leave'], ['the'], ['city'], ['for'], ['grove', 'or'], ['hilltop?', '', 'Would'], ['that'], ['I'], ['could'], ['gather'], ['your'], ['houses', 'into'], ['my'], ['hand,'], ['and'], ['like'], ['a'], ['sower'], ['scatter', 'them'], ['in'], ['forest'], ['and'], ['meadow.', '', 'Would'], ['the'], ['valleys'], ['were'], ['your'], ['streets,'], ['and', 'the'], ['green'], ['paths'], ['your'], ['alleys,'], ['that'], ['you'], ['seek'], ['one'], ['another'], ['through', 'vineyards,'], ['and'], ['come'], ['with'], ['the'], ['fragrance', 'of'], ['the'], ['earth'], ['in'], ['your'], ['garments.', '', 'But'], ['these'], ['things'], ['are'], ['not'], ['yet'], ['to'], ['be.', '', 'In'], ['their'], ['fear'], ['your'], ['forefathers'], ['gathered', 'you'], ['too'], ['near'], ['together.'], ['And'], ['that'], ['fear', 'shall'], ['endure'], ['a'], ['little'], ['longer.'], ['A'], ['little', 'longer'], ['shall'], ['your'], ['city'], ['walls'], ['separate', 'your'], ['hearths'], ['from'], ['your'], ['fields.', '', '*****', '', 'And'], ['tell'], ['me,'], ['people'], ['of'], ['Orphalese,'], ['what', 'have'], ['you'], ['in'], ['these'], ['houses?'], ['And'], ['what'], ['is'], ['it', 'you'], ['guard'], ['with'], ['fastened'], ['doors?', '', 'Have'], ['you'], ['peace,'], ['the'], ['quiet'], ['urge'], ['that', 'reveals'], ['your'], ['power?', '', 'Have'], ['you'], ['remembrances,'], ['the'], ['glimmering', 'arches'], ['that'], ['span'], ['the'], ['summits'], ['of'], ['the', 'mind?', '', 'Have'], ['you'], ['beauty,'], ['that'], ['leads'], ['the'], ['heart', 'from'], ['things'], ['fashioned'], ['of'], ['wood'], ['and'], ['stone', 'to'], ['the'], ['holy'], ['mountain?', '', 'Tell'], ['me,'], ['have'], ['you'], ['these'], ['in'], ['your'], ['houses?', '', 'Or'], ['have'], ['you'], ['only'], ['comfort,'], ['and'], ['the'], ['lust', 'for'], ['comfort,'], ['that'], ['stealthy'], ['thing'], ['that'], ['the'], ['house'], ['a'], ['guest,'], ['and'], ['then', 'becomes'], ['a'], ['host,'], ['and'], ['then'], ['a'], ['master?', '', '*****', '', 'Ay,'], ['and'], ['it'], ['becomes'], ['a'], ['tamer,'], ['and'], ['with', 'hook'], ['and'], ['scourge'], ['makes'], ['puppets'], ['of'], ['your', 'larger'], ['desires.', '', 'Though'], ['its'], ['hands'], ['are'], ['silken,'], ['its'], ['heart', 'is'], ['of'], ['iron.', '', 'It'], ['lulls'], ['you'], ['to'], ['sleep'], ['only'], ['to'], ['stand'], ['by', 'your'], ['bed'], ['and'], ['jeer'], ['at'], ['the'], ['dignity'], ['of'], ['the', 'flesh.', '', 'It'], ['makes'], ['mock'], ['of'], ['your'], ['sound'], ['senses,'], ['and', 'lays'], ['them'], ['in'], ['thistledown'], ['like'], ['fragile', 'vessels.', '', 'Verily'], ['the'], ['lust'], ['for'], ['comfort'], ['murders', 'the'], ['passion'], ['of'], ['the'], ['soul,'], ['and'], ['then'], ['walks', 'grinning'], ['in'], ['the'], ['funeral.', '', 'But'], ['you,'], ['children'], ['of'], ['space,'], ['you'], ['restless', 'in'], ['rest,'], ['you'], ['shall'], ['not'], ['be'], ['trapped'], ['nor', 'tamed.', '', 'Your'], ['house'], ['shall'], ['be'], ['not'], ['an'], ['anchor'], ['but'], ['a', 'mast.', '', 'It'], ['shall'], ['not'], ['be'], ['a'], ['glistening'], ['film'], ['that'], ['a'], ['wound,'], ['but'], ['an'], ['eyelid'], ['that', 'guards'], ['the'], ['eye.', '', 'You'], ['shall'], ['not'], ['fold'], ['your'], ['wings'], ['that'], ['you', 'may'], ['pass'], ['through'], ['doors,'], ['nor'], ['bend'], ['your', 'heads'], ['that'], ['they'], ['strike'], ['not'], ['against'], ['a', 'ceiling,'], ['nor'], ['fear'], ['to'], ['breathe'], ['lest'], ['walls', 'should'], ['crack'], ['and'], ['fall'], ['down.', '', 'You'], ['shall'], ['not'], ['dwell'], ['in'], ['tombs'], ['made'], ['by'], ['the', 'dead'], ['for'], ['the'], ['living.', '', 'And'], ['though'], ['of'], ['magnificence'], ['and', 'splendour,'], ['your'], ['house'], ['shall'], ['not'], ['hold', 'your'], ['secret'], ['nor'], ['shelter'], ['your'], ['longing.', '', 'For'], ['that'], ['which'], ['is'], ['boundless'], ['in'], ['you', 'abides'], ['in'], ['the'], ['mansion'], ['of'], ['the'], ['sky,'], ['whose', 'door'], ['is'], ['the'], ['morning'], ['mist,'], ['and'], ['whose', 'windows'], ['are'], ['the'], ['songs'], ['and'], ['the'], ['silences', 'of'], ['night.', '', '*****'], ['*****'], ['the'], ['weaver'], ['said,'], ['Speak'], ['to'], ['us'], ['of', '_Clothes_.', '', 'And'], ['he'], ['answered:', '', 'Your'], ['clothes'], ['conceal'], ['much'], ['of'], ['your', 'beauty,'], ['yet'], ['they'], ['hide'], ['not'], ['the', 'unbeautiful.', '', 'And'], ['though'], ['you'], ['seek'], ['in'], ['garments'], ['the', 'freedom'], ['of'], ['privacy'], ['you'], ['may'], ['find'], ['in'], ['them', 'a'], ['harness'], ['and'], ['a'], ['chain.', '', 'Would'], ['that'], ['you'], ['could'], ['meet'], ['the'], ['sun'], ['and', 'the'], ['wind'], ['with'], ['more'], ['of'], ['your'], ['skin'], ['and'], ['less', 'of'], ['your'], ['raiment,', '', 'For'], ['the'], ['breath'], ['of'], ['life'], ['is'], ['in'], ['the', 'sunlight'], ['and'], ['the'], ['hand'], ['of'], ['life'], ['is'], ['in'], ['the', 'wind.', '', 'Some'], ['of'], ['you'], ['say,'], ['“It'], ['is'], ['the'], ['north'], ['wind', 'who'], ['has'], ['woven'], ['the'], ['clothes'], ['we'], ['wear.”', '', 'And'], ['I'], ['say,'], ['Ay,'], ['it'], ['was'], ['the'], ['north'], ['wind,', '', 'But'], ['shame'], ['was'], ['his'], ['loom,'], ['and'], ['the', 'softening'], ['of'], ['the'], ['sinews'], ['was'], ['his'], ['thread.', '', 'And'], ['when'], ['his'], ['work'], ['was'], ['done'], ['he'], ['laughed'], ['in', 'the'], ['forest.'], [''], ['not'], ['that'], ['modesty', 'is'], ['for'], ['a'], ['shield'], ['against'], ['the'], ['eye'], ['of'], ['the', 'unclean.', '', 'And'], ['when'], ['the'], ['unclean'], ['shall'], ['be'], ['no'], ['more,', 'what'], ['were'], ['modesty'], ['but'], ['a'], ['fetter'], ['and'], ['a', 'fouling'], ['of'], ['the'], ['mind?', '', 'And'], ['forget'], ['not'], ['that'], ['the'], ['earth'], ['delights', 'to'], ['feel'], ['your'], ['bare'], ['feet'], ['and'], ['the'], ['winds', 'long'], ['to'], ['play'], ['with'], ['your'], ['hair.', '', '*****'], ['*****'], ['a'], ['merchant'], ['said,'], ['Speak'], ['to'], ['us'], ['of', '_Buying'], ['and'], ['Selling_.', '', 'And'], ['he'], ['answered'], ['and'], ['said:', '', 'To'], ['you'], ['the'], ['earth'], ['yields'], ['her'], ['fruit,'], ['and', 'you'], ['shall'], ['not'], ['want'], ['if'], ['you'], ['but'], ['know'], ['how', 'to'], ['fill'], ['your'], ['hands.', '', 'It'], ['is'], ['in'], ['exchanging'], ['the'], ['gifts'], ['of'], ['the', 'earth'], ['that'], ['you'], ['shall'], ['find'], ['abundance'], ['and', 'be'], ['satisfied.', '', 'Yet'], ['unless'], ['the'], ['exchange'], ['be'], ['in'], ['love'], ['and', 'kindly'], ['justice,'], ['it'], ['will'], ['but'], ['lead'], ['some'], ['to', 'greed'], ['and'], ['others'], ['to'], ['hunger.', '', 'When'], ['in'], ['the'], ['market'], ['place'], ['you'], ['toilers'], ['of', 'the'], ['sea'], ['and'], ['fields'], ['and'], ['vineyards'], ['meet', 'the'], ['weavers'], ['and'], ['the'], ['potters'], ['and'], ['the', 'gatherers'], ['of'], ['spices,--', '', 'Invoke'], ['then'], ['the'], ['master'], ['spirit'], ['of'], ['the', 'earth,'], ['to'], ['come'], ['into'], ['your'], ['midst'], ['and', 'sanctify'], ['the'], ['scales'], ['and'], ['the'], ['reckoning', 'that'], ['weighs'], ['value'], ['against'], ['value.'], [''], ['not'], ['the'], ['barren-handed'], ['to'], ['take', 'part'], ['in'], ['your'], ['transactions,'], ['who'], ['would', 'sell'], ['their'], ['words'], ['for'], ['your'], ['labour.', '', 'To'], ['such'], ['men'], ['you'], ['should'], ['say,', '', '“Come'], ['with'], ['us'], ['to'], ['the'], ['field,'], ['or'], ['go'], ['with', 'our'], ['brothers'], ['to'], ['the'], ['sea'], ['and'], ['cast'], ['your', 'net;', '', 'For'], ['the'], ['land'], ['and'], ['the'], ['sea'], ['shall'], ['be', 'bountiful'], ['to'], ['you'], ['even'], ['as'], ['to'], ['us.”', '', '*****', '', 'And'], ['if'], ['there'], ['come'], ['the'], ['singers'], ['and'], ['the', 'dancers'], ['and'], ['the'], ['flute'], ['players,--buy'], ['of', 'their'], ['gifts'], ['also.', '', 'For'], ['they'], ['too'], ['are'], ['gatherers'], ['of'], ['fruit'], ['and', 'frankincense,'], ['and'], ['that'], ['which'], ['they'], ['bring,', 'though'], ['fashioned'], ['of'], ['dreams,'], ['is'], ['raiment', 'and'], ['food'], ['for'], ['your'], ['soul.', '', 'And'], ['before'], ['you'], ['leave'], ['the'], ['market'], ['place,', 'see'], ['that'], ['no'], ['one'], ['has'], ['gone'], ['his'], ['way'], ['with', 'empty'], ['hands.', '', 'For'], ['the'], ['master'], ['spirit'], ['of'], ['the'], ['earth'], ['shall', 'not'], ['sleep'], ['peacefully'], ['upon'], ['the'], ['wind', 'till'], ['the'], ['needs'], ['of'], ['the'], ['least'], ['of'], ['you'], ['are', 'satisfied.', '', '*****'], ['*****'], ['one'], ['of'], ['the'], ['judges'], ['of'], ['the'], ['city', 'stood'], ['forth'], ['and'], ['said,'], ['Speak'], ['to'], ['us'], ['of', '_Crime'], ['and'], ['Punishment_.', '', 'And'], ['he'], ['answered,'], ['saying:', '', 'It'], ['is'], ['when'], ['your'], ['spirit'], ['goes'], ['wandering', 'upon'], ['the'], ['wind,', '', 'That'], ['you,'], ['alone'], ['and'], ['unguarded,'], ['commit', 'a'], ['wrong'], ['unto'], ['others'], ['and'], ['therefore'], ['unto', 'yourself.', '', 'And'], ['for'], ['that'], ['wrong'], ['committed'], ['must'], ['you', 'knock'], ['and'], ['wait'], ['a'], ['while'], ['unheeded'], ['at'], ['the', 'gate'], ['of'], ['the'], ['blessed.', '', 'Like'], ['the'], ['ocean'], ['is'], ['your'], ['god-self;', '', 'It'], ['remains'], ['for'], ['ever'], ['undefiled.', '', 'And'], ['like'], ['the'], ['ether'], ['it'], ['lifts'], ['but'], ['the', 'winged.', '', 'Even'], ['like'], ['the'], ['sun'], ['is'], ['your'], ['god-self;', '', 'It'], ['knows'], ['not'], ['the'], ['ways'], ['of'], ['the'], ['mole'], ['nor', 'seeks'], ['it'], ['the'], ['holes'], ['of'], ['the'], ['serpent.'], ['your'], ['god-self'], ['dwells'], ['not'], ['alone', 'in'], ['your'], ['being.', '', 'Much'], ['in'], ['you'], ['is'], ['still'], ['man,'], ['and'], ['much'], ['in', 'you'], ['is'], ['not'], ['yet'], ['man,', '', 'But'], ['a'], ['shapeless'], ['pigmy'], ['that'], ['walks'], ['asleep', 'in'], ['the'], ['mist'], ['searching'], ['for'], ['its'], ['own', 'awakening.', '', 'And'], ['of'], ['the'], ['man'], ['in'], ['you'], ['would'], ['I'], ['now'], ['speak.', '', 'For'], ['it'], ['is'], ['he'], ['and'], ['not'], ['your'], ['god-self'], ['nor', 'the'], ['pigmy'], ['in'], ['the'], ['mist,'], ['that'], ['knows'], ['crime', 'and'], ['the'], ['punishment'], ['of'], ['crime.', '', '*****', '', 'Oftentimes'], ['have'], ['I'], ['heard'], ['you'], ['speak'], ['of'], ['one', 'who'], ['commits'], ['a'], ['wrong'], ['as'], ['though'], ['he'], ['were', 'not'], ['one'], ['of'], ['you,'], ['but'], ['a'], ['stranger'], ['unto'], ['you', 'and'], ['an'], ['intruder'], ['upon'], ['your'], ['world.', '', 'But'], ['I'], ['say'], ['that'], ['even'], ['as'], ['the'], ['holy'], ['and'], ['the', 'righteous'], ['cannot'], ['rise'], ['beyond'], ['the'], ['highest', 'which'], ['is'], ['in'], ['each'], ['one'], ['of'], ['you,', '', 'So'], ['the'], ['wicked'], ['and'], ['the'], ['weak'], ['cannot'], ['fall', 'lower'], ['than'], ['the'], ['lowest'], ['which'], ['is'], ['in'], ['you', 'also.', '', 'And'], ['as'], ['a'], ['single'], ['leaf'], ['turns'], ['not'], ['yellow', 'but'], ['with'], ['the'], ['silent'], ['knowledge'], ['of'], ['the', 'whole'], ['tree,'], [''], ['the'], ['wrong-doer'], ['cannot', 'do'], ['wrong'], ['without'], ['the'], ['hidden'], ['will'], ['of'], ['you', 'all.', '', 'Like'], ['a'], ['procession'], ['you'], ['walk'], ['together', 'towards'], ['your'], ['god-self.', '', '[Illustration:'], ['0064]', '', 'You'], ['are'], ['the'], ['way'], ['and'], ['the'], ['wayfarers.', '', 'And'], ['when'], ['one'], ['of'], ['you'], ['falls'], ['down'], ['he'], ['falls', 'for'], ['those'], ['behind'], ['him,'], ['a'], ['caution'], ['against', 'the'], ['stumbling'], ['stone.', '', 'Ay,'], ['and'], ['he'], ['falls'], ['for'], ['those'], ['ahead'], ['of'], ['him,', 'who'], ['though'], ['faster'], ['and'], ['surer'], ['of'], ['foot,'], ['yet', 'removed'], ['not'], ['the'], ['stumbling'], ['stone.', '', 'And'], ['this'], ['also,'], ['though'], ['the'], ['word'], ['lie'], ['heavy', 'upon'], ['your'], ['hearts:', '', 'The'], ['murdered'], ['is'], ['not'], ['unaccountable'], ['for', 'his'], ['own'], ['murder,', '', 'And'], ['the'], ['robbed'], ['is'], ['not'], ['blameless'], ['in'], ['being', 'robbed.', '', 'The'], ['righteous'], ['is'], ['not'], ['innocent'], ['of'], ['the', 'deeds'], ['of'], ['the'], ['wicked,', '', 'And'], ['the'], ['white-handed'], ['is'], ['not'], ['clean'], ['in'], ['the', 'doings'], ['of'], ['the'], ['felon.', '', 'Yea,'], ['the'], ['guilty'], ['is'], ['oftentimes'], ['the'], ['victim', 'of'], ['the'], ['injured,', '', 'And'], ['still'], ['more'], ['often'], ['the'], ['condemned'], ['is'], ['burden'], ['bearer'], ['for'], ['the'], ['guiltless', 'and'], ['unblamed.', '', 'You'], ['cannot'], ['separate'], ['the'], ['just'], ['from'], ['the', 'unjust'], ['and'], ['the'], ['good'], ['from'], ['the'], ['wicked;', '', 'For'], ['they'], ['stand'], ['together'], ['before'], ['the'], ['face', 'of'], ['the'], ['sun'], ['even'], ['as'], ['the'], ['black'], ['thread'], ['and', 'the'], ['white'], ['are'], ['woven'], ['together.', '', 'And'], ['when'], ['the'], ['black'], ['thread'], ['breaks,'], ['the', 'weaver'], ['shall'], ['look'], ['into'], ['the'], ['whole'], ['cloth,', 'and'], ['he'], ['shall'], ['examine'], ['the'], ['loom'], ['also.', '', '*****', '', 'If'], ['any'], ['of'], ['you'], ['would'], ['bring'], ['to'], ['judgment', 'the'], ['unfaithful'], ['wife,', '', 'Let'], ['him'], ['also'], ['weigh'], ['the'], ['heart'], ['of'], ['her', 'husband'], ['in'], ['scales,'], ['and'], ['measure'], ['his'], ['soul', 'with'], ['measurements.', '', 'And'], ['let'], ['him'], ['who'], ['would'], ['lash'], ['the'], ['offender', 'look'], ['unto'], ['the'], ['spirit'], ['of'], ['the'], ['offended.', '', 'And'], ['if'], ['any'], ['of'], ['you'], ['would'], ['punish'], ['in'], ['the', 'name'], ['of'], ['righteousness'], ['and'], ['lay'], ['the'], ['ax', 'unto'], ['the'], ['evil'], ['tree,'], ['let'], ['him'], ['see'], ['to'], ['its', 'roots;', '', 'And'], ['verily'], ['he'], ['will'], ['find'], ['the'], ['roots'], ['of'], ['the', 'good'], ['and'], ['the'], ['bad,'], ['the'], ['fruitful'], ['and'], ['the'], ['all'], ['entwined'], ['together'], ['in', 'the'], ['silent'], ['heart'], ['of'], ['the'], ['earth.', '', 'And'], ['you'], ['judges'], ['who'], ['would'], ['be'], ['just,', '', 'What'], ['judgment'], ['pronounce'], ['you'], ['upon'], ['him', 'who'], ['though'], ['honest'], ['in'], ['the'], ['flesh'], ['yet'], ['is'], ['a', 'thief'], ['in'], ['spirit?', '', 'What'], ['penalty'], ['lay'], ['you'], ['upon'], ['him'], ['who'], ['slays', 'in'], ['the'], ['flesh'], ['yet'], ['is'], ['himself'], ['slain'], ['in'], ['the', 'spirit?', '', 'And'], ['how'], ['prosecute'], ['you'], ['him'], ['who'], ['in'], ['action', 'is'], ['a'], ['deceiver'], ['and'], ['an'], ['oppressor,', '', 'Yet'], ['who'], ['also'], ['is'], ['aggrieved'], ['and'], ['outraged?', '', '*****', '', 'And'], ['how'], ['shall'], ['you'], ['punish'], ['those'], ['whose', 'remorse'], ['is'], ['already'], ['greater'], ['than'], ['their', 'misdeeds?', '', 'Is'], ['not'], ['remorse'], ['the'], ['justice'], ['which'], ['is', 'administered'], ['by'], ['that'], ['very'], ['law'], ['which'], ['you', 'would'], ['fain'], ['serve?', '', 'Yet'], ['you'], ['cannot'], ['lay'], ['remorse'], ['upon'], ['the', 'innocent'], ['nor'], ['lift'], ['it'], ['from'], ['the'], ['heart'], ['of', 'the'], ['guilty.', '', 'Unbidden'], ['shall'], ['it'], ['call'], ['in'], ['the'], ['night,', 'that'], ['men'], ['may'], ['wake'], ['and'], ['gaze'], ['upon', 'themselves.'], [''], ['you'], ['who'], ['would', 'understand'], ['justice,'], ['how'], ['shall'], ['you'], ['unless', 'you'], ['look'], ['upon'], ['all'], ['deeds'], ['in'], ['the'], ['fullness', 'of'], ['light?', '', 'Only'], ['then'], ['shall'], ['you'], ['know'], ['that'], ['the'], ['erect', 'and'], ['the'], ['fallen'], ['are'], ['but'], ['one'], ['man'], ['standing', 'in'], ['twilight'], ['between'], ['the'], ['night'], ['of'], ['his', 'pigmy-self'], ['and'], ['the'], ['day'], ['of'], ['his'], ['god-self,', 'And'], ['that'], ['the'], ['corner-stone'], ['of'], ['the'], ['temple', 'is'], ['not'], ['higher'], ['than'], ['the'], ['lowest'], ['stone'], ['in', 'its'], ['foundation.', '', '*****'], ['*****'], ['a'], ['lawyer'], ['said,'], ['But'], ['what'], ['of'], ['our', '_Laws_,'], ['master?', '', 'And'], ['he'], ['answered:', '', 'You'], ['delight'], ['in'], ['laying'], ['down'], ['laws,', '', 'Yet'], ['you'], ['delight'], ['more'], ['in'], ['breaking'], ['them.', '', 'Like'], ['children'], ['playing'], ['by'], ['the'], ['ocean'], ['who', 'build'], ['sand-towers'], ['with'], ['constancy'], ['and', 'then'], ['destroy'], ['them'], ['with'], ['laughter.', '', 'But'], ['while'], ['you'], ['build'], ['your'], ['sand-towers'], ['the', 'ocean'], ['brings'], ['more'], ['sand'], ['to'], ['the'], ['shore,', '', 'And'], ['when'], ['you'], ['destroy'], ['them'], ['the'], ['ocean', 'laughs'], ['with'], ['you.', '', 'Verily'], ['the'], ['ocean'], ['laughs'], ['always'], ['with'], ['the', 'innocent.', '', 'But'], ['what'], ['of'], ['those'], ['to'], ['whom'], ['life'], ['is'], ['not', 'an'], ['ocean,'], ['and'], ['man-made'], ['laws'], ['are'], ['not', 'sand-towers,', '', 'But'], ['to'], ['whom'], ['life'], ['is'], ['a'], ['rock,'], ['and'], ['the'], ['law', 'a'], ['chisel'], ['with'], ['which'], ['they'], ['would'], ['carve'], ['it', 'in'], ['their'], ['own'], ['likeness?'], [''], ['of'], ['the', 'cripple'], ['who'], ['hates'], ['dancers?', '', 'What'], ['of'], ['the'], ['ox'], ['who'], ['loves'], ['his'], ['yoke'], ['and', 'deems'], ['the'], ['elk'], ['and'], ['deer'], ['of'], ['the'], ['forest', 'stray'], ['and'], ['vagrant'], ['things?', '', 'What'], ['of'], ['the'], ['old'], ['serpent'], ['who'], ['cannot'], ['shed', 'his'], ['skin,'], ['and'], ['calls'], ['all'], ['others'], ['naked'], ['and', 'shameless?', '', 'And'], ['of'], ['him'], ['who'], ['comes'], ['early'], ['to'], ['the', 'wedding-feast,'], ['and'], ['when'], ['over-fed'], ['and', 'tired'], ['goes'], ['his'], ['way'], ['saying'], ['that'], ['all', 'feasts'], ['are'], ['violation'], ['and'], ['all'], ['feasters', 'lawbreakers?', '', '*****', '', 'What'], ['shall'], ['I'], ['say'], ['of'], ['these'], ['save'], ['that', 'they'], ['too'], ['stand'], ['in'], ['the'], ['sunlight,'], ['but'], ['with', 'their'], ['backs'], ['to'], ['the'], ['sun?', '', 'They'], ['see'], ['only'], ['their'], ['shadows,'], ['and'], ['their', 'shadows'], ['are'], ['their'], ['laws.', '', 'And'], ['what'], ['is'], ['the'], ['sun'], ['to'], ['them'], ['but'], ['a'], ['caster', 'of'], ['shadows?', '', 'And'], ['what'], ['is'], ['it'], ['to'], ['acknowledge'], ['the', 'laws'], ['but'], ['to'], ['stoop'], ['down'], ['and'], ['trace'], ['their', 'shadows'], ['upon'], ['the'], ['earth?', '', 'But'], ['you'], ['who'], ['walk'], ['facing'], ['the'], ['sun,'], ['what'], ['drawn'], ['on'], ['the'], ['earth'], ['can'], ['hold', 'you?', '', 'You'], ['who'], ['travel'], ['with'], ['the'], ['wind,'], ['what', 'weather-vane'], ['shall'], ['direct'], ['your'], ['course?', '', 'What'], ['man’s'], ['law'], ['shall'], ['bind'], ['you'], ['if'], ['you', 'break'], ['your'], ['yoke'], ['but'], ['upon'], ['no'], ['man’s'], ['prison', 'door?', '', 'What'], ['laws'], ['shall'], ['you'], ['fear'], ['if'], ['you'], ['dance', 'but'], ['stumble'], ['against'], ['no'], ['man’s'], ['iron', 'chains?', '', 'And'], ['who'], ['is'], ['he'], ['that'], ['shall'], ['bring'], ['you'], ['to', 'judgment'], ['if'], ['you'], ['tear'], ['off'], ['your'], ['garment', 'yet'], ['leave'], ['it'], ['in'], ['no'], ['man’s'], ['path?', '', '*****', '', 'People'], ['of'], ['Orphalese,'], ['you'], ['can'], ['muffle'], ['the', 'drum,'], ['and'], ['you'], ['can'], ['loosen'], ['the'], ['strings', 'of'], ['the'], ['lyre,'], ['but'], ['who'], ['shall'], ['command'], ['the', 'skylark'], ['not'], ['to'], ['sing?', '', '*****'], ['*****'], ['an'], ['orator'], ['said,'], ['Speak'], ['to'], ['us'], ['of', '_Freedom_.', '', 'And'], ['he'], ['answered:', '', 'At'], ['the'], ['city'], ['gate'], ['and'], ['by'], ['your'], ['fireside', 'I'], ['have'], ['seen'], ['you'], ['prostrate'], ['yourself'], ['and', 'worship'], ['your'], ['own'], ['freedom,', '', 'Even'], ['as'], ['slaves'], ['humble'], ['themselves'], ['before', 'a'], ['tyrant'], ['and'], ['praise'], ['him'], ['though'], ['he'], ['slays', 'them.', '', 'Ay,'], ['in'], ['the'], ['grove'], ['of'], ['the'], ['temple'], ['and'], ['in', 'the'], ['shadow'], ['of'], ['the'], ['citadel'], ['I'], ['have'], ['seen', 'the'], ['freest'], ['among'], ['you'], ['wear'], ['their'], ['freedom', 'as'], ['a'], ['yoke'], ['and'], ['a'], ['handcuff.', '', 'And'], ['my'], ['heart'], ['bled'], ['within'], ['me;'], ['for'], ['you', 'can'], ['only'], ['be'], ['free'], ['when'], ['even'], ['the'], ['desire', 'of'], ['seeking'], ['freedom'], ['becomes'], ['a'], ['harness', 'to'], ['you,'], ['and'], ['when'], ['you'], ['cease'], ['to'], ['speak'], ['of', 'freedom'], ['as'], ['a'], ['goal'], ['and'], ['a'], ['fulfilment.', '', 'You'], ['shall'], ['be'], ['free'], ['indeed'], ['when'], ['your', 'days'], ['are'], ['not'], ['without'], ['a'], ['care'], ['nor'], ['your'], ['without'], ['a'], ['want'], ['and'], ['a'], ['grief,', '', 'But'], ['rather'], ['when'], ['these'], ['things'], ['girdle'], ['your', 'life'], ['and'], ['yet'], ['you'], ['rise'], ['above'], ['them'], ['naked', 'and'], ['unbound.', '', '*****', '', 'And'], ['how'], ['shall'], ['you'], ['rise'], ['beyond'], ['your'], ['days', 'and'], ['nights'], ['unless'], ['you'], ['break'], ['the', 'chains'], ['which'], ['you'], ['at'], ['the'], ['dawn'], ['of'], ['your', 'understanding'], ['have'], ['fastened'], ['around'], ['your', 'noon'], ['hour?', '', 'In'], ['truth'], ['that'], ['which'], ['you'], ['call'], ['freedom'], ['is', 'the'], ['strongest'], ['of'], ['these'], ['chains,'], ['though', 'its'], ['links'], ['glitter'], ['in'], ['the'], ['sun'], ['and'], ['dazzle', 'your'], ['eyes.', '', 'And'], ['what'], ['is'], ['it'], ['but'], ['fragments'], ['of'], ['your', 'own'], ['self'], ['you'], ['would'], ['discard'], ['that'], ['you'], ['may', 'become'], ['free?', '', 'If'], ['it'], ['is'], ['an'], ['unjust'], ['law'], ['you'], ['would', 'abolish,'], ['that'], ['law'], ['was'], ['written'], ['with'], ['your', 'own'], ['hand'], ['upon'], ['your'], ['own'], ['forehead.', '', 'You'], ['cannot'], ['erase'], ['it'], ['by'], ['burning'], ['your'], ['law', 'books'], ['nor'], ['by'], ['washing'], ['the'], ['foreheads'], ['of', 'your'], ['judges,'], ['though'], ['you'], ['pour'], ['the'], ['sea', 'upon'], ['them.', '', 'And'], ['if'], ['it'], ['is'], ['a'], ['despot'], ['you'], ['would'], ['see'], ['first'], ['that'], ['his'], ['throne', 'erected'], ['within'], ['you'], ['is'], ['destroyed.', '', 'For'], ['how'], ['can'], ['a'], ['tyrant'], ['rule'], ['the'], ['free'], ['and', 'the'], ['proud,'], ['but'], ['for'], ['a'], ['tyranny'], ['in'], ['their', 'own'], ['freedom'], ['and'], ['a'], ['shame'], ['in'], ['their'], ['own', 'pride?', '', 'And'], ['if'], ['it'], ['is'], ['a'], ['care'], ['you'], ['would'], ['cast'], ['off,', 'that'], ['cart'], ['has'], ['been'], ['chosen'], ['by'], ['you'], ['rather', 'than'], ['imposed'], ['upon'], ['you.', '', 'And'], ['if'], ['it'], ['is'], ['a'], ['fear'], ['you'], ['would'], ['dispel,', 'the'], ['seat'], ['of'], ['that'], ['fear'], ['is'], ['in'], ['your'], ['heart', 'and'], ['not'], ['in'], ['the'], ['hand'], ['of'], ['the'], ['feared.', '', '*****', '', 'Verily'], ['all'], ['things'], ['move'], ['within'], ['your'], ['being', 'in'], ['constant'], ['half'], ['embrace,'], ['the'], ['desired', 'and'], ['the'], ['dreaded,'], ['the'], ['repugnant'], ['and'], ['the', 'cherished,'], ['the'], ['pursued'], ['and'], ['that'], ['which', 'you'], ['would'], ['escape.', '', 'These'], ['things'], ['move'], ['within'], ['you'], ['as'], ['lights', 'and'], ['shadows'], ['in'], ['pairs'], ['that'], ['cling.', '', 'And'], ['when'], ['the'], ['shadow'], ['fades'], ['and'], ['is'], ['no', 'more,'], ['the'], ['light'], ['that'], ['lingers'], ['becomes'], ['a', 'shadow'], ['to'], ['another'], ['light.', '', 'And'], ['thus'], ['your'], ['freedom'], ['when'], ['it'], ['loses'], ['its', 'fetters'], ['becomes'], ['itself'], ['the'], ['fetter'], ['of'], ['a', 'greater'], ['freedom.', '', '*****'], ['*****'], ['the'], ['priestess'], ['spoke'], ['again', 'and'], ['said:'], ['Speak'], ['to'], ['us'], ['of'], ['_Reason'], ['and', 'Passion_.', '', 'And'], ['he'], ['answered,'], ['saying:', '', 'Your'], ['soul'], ['is'], ['oftentimes'], ['a'], ['battlefield,', 'upon'], ['which'], ['your'], ['reason'], ['and'], ['your'], ['judgment', 'wage'], ['war'], ['against'], ['your'], ['passion'], ['and'], ['your', 'appetite.', '', 'Would'], ['that'], ['I'], ['could'], ['be'], ['the'], ['peacemaker'], ['in', 'your'], ['soul,'], ['that'], ['I'], ['might'], ['turn'], ['the'], ['discord', 'and'], ['the'], ['rivalry'], ['of'], ['your'], ['elements'], ['into', 'oneness'], ['and'], ['melody.', '', 'But'], ['how'], ['shall'], ['I,'], ['unless'], ['you'], ['yourselves', 'be'], ['also'], ['the'], ['peacemakers,'], ['nay,'], ['the'], ['lovers', 'of'], ['all'], ['your'], ['elements?', '', 'Your'], ['reason'], ['and'], ['your'], ['passion'], ['are'], ['the', 'rudder'], ['and'], ['the'], ['sails'], ['of'], ['your'], ['seafaring', 'soul.', '', 'If'], ['either'], ['your'], ['sails'], ['or'], ['your'], ['rudder'], ['be', 'broken,'], ['you'], ['can'], ['but'], ['toss'], ['and'], ['drift,', 'or'], ['else'], ['be'], ['held'], ['at'], ['a'], ['standstill'], ['in', 'mid-seas.'], [''], ['reason,'], ['ruling'], ['alone,', 'is'], ['a'], ['force'], ['confining;'], ['and'], ['passion,', 'unattended,'], ['is'], ['a'], ['flame'], ['that'], ['burns'], ['to'], ['its', 'own'], ['destruction.', '', 'Therefore'], ['let'], ['your'], ['soul'], ['exalt'], ['your', 'reason'], ['to'], ['the'], ['height'], ['of'], ['passion,'], ['that'], ['it', 'may'], ['sing;', '', 'And'], ['let'], ['it'], ['direct'], ['your'], ['passion'], ['with', 'reason,'], ['that'], ['your'], ['passion'], ['may'], ['live', 'through'], ['its'], ['own'], ['daily'], ['resurrection,', 'and'], ['like'], ['the'], ['phoenix'], ['rise'], ['above'], ['its'], ['own', 'ashes.', '', '*****', '', 'I'], ['would'], ['have'], ['you'], ['consider'], ['your'], ['judgment', 'and'], ['your'], ['appetite'], ['even'], ['as'], ['you'], ['would'], ['two', 'loved'], ['guests'], ['in'], ['your'], ['house.', '', 'Surely'], ['you'], ['would'], ['not'], ['honour'], ['one'], ['guest', 'above'], ['the'], ['other;'], ['for'], ['he'], ['who'], ['is'], ['more', 'mindful'], ['of'], ['one'], ['loses'], ['the'], ['love'], ['and'], ['the', 'faith'], ['of'], ['both', '', 'Among'], ['the'], ['hills,'], ['when'], ['you'], ['sit'], ['in'], ['the', 'cool'], ['shade'], ['of'], ['the'], ['white'], ['poplars,'], ['sharing', 'the'], ['peace'], ['and'], ['serenity'], ['of'], ['distant'], ['fields', 'and'], ['meadows--then'], ['let'], ['your'], ['heart'], ['say'], ['in', 'silence,'], ['“God'], ['rests'], ['in'], ['reason.”', '', 'And'], ['when'], ['the'], ['storm'], ['comes,'], ['and'], ['the'], ['wind'], ['shakes'], ['the'], ['forest,', 'and'], ['thunder'], ['and'], ['lightning'], ['proclaim'], ['the', 'majesty'], ['of'], ['the'], ['sky,--then'], ['let'], ['your'], ['heart', 'say'], ['in'], ['awe,'], ['“God'], ['moves'], ['in'], ['passion.”', '', 'And'], ['since'], ['you'], ['are'], ['a'], ['breath'], ['in'], ['God’s', 'sphere,'], ['and'], ['a'], ['leaf'], ['in'], ['God’s'], ['forest,'], ['you', 'too'], ['should'], ['rest'], ['in'], ['reason'], ['and'], ['move'], ['in', 'passion.', '', '*****'], ['*****'], ['a'], ['woman'], ['spoke,'], ['saying,'], ['Tell'], ['us', 'of'], ['_Pain_.', '', 'And'], ['he'], ['said:', '', 'Your'], ['pain'], ['is'], ['the'], ['breaking'], ['of'], ['the'], ['shell', 'that'], ['encloses'], ['your'], ['understanding.', '', 'Even'], ['as'], ['the'], ['stone'], ['of'], ['the'], ['fruit'], ['must', 'break,'], ['that'], ['its'], ['heart'], ['may'], ['stand'], ['in'], ['the', 'sun,'], ['so'], ['must'], ['you'], ['know'], ['pain.', '', 'And'], ['could'], ['you'], ['keep'], ['your'], ['heart'], ['in'], ['wonder', 'at'], ['the'], ['daily'], ['miracles'], ['of'], ['your'], ['life,'], ['your', 'pain'], ['would'], ['not'], ['seem'], ['less'], ['wondrous'], ['than', 'your'], ['joy;', '', 'And'], ['you'], ['would'], ['accept'], ['the'], ['seasons'], ['of'], ['your', 'heart,'], ['even'], ['as'], ['you'], ['have'], ['always'], ['accepted', 'the'], ['seasons'], ['that'], ['pass'], ['over'], ['your'], ['fields.', '', 'And'], ['you'], ['would'], ['watch'], ['with'], ['serenity', 'through'], ['the'], ['winters'], ['of'], ['your'], ['grief.', '', 'Much'], ['of'], ['your'], ['pain'], ['is'], ['self-chosen.', '', 'It'], ['is'], ['the'], ['bitter'], ['potion'], ['by'], ['which'], ['the', 'physician'], [''], ['you'], ['heals'], ['your'], ['sick', 'self.', '', 'Therefore'], ['trust'], ['the'], ['physician,'], ['and'], ['drink', 'his'], ['remedy'], ['in'], ['silence'], ['and'], ['tranquillity:', 'For'], ['his'], ['hand,'], ['though'], ['heavy'], ['and'], ['hard,'], ['is', 'guided'], ['by'], ['the'], ['tender'], ['hand'], ['of'], ['the'], ['Unseen,', 'And'], ['the'], ['cup'], ['he'], ['brings,'], ['though'], ['it'], ['burn', 'your'], ['lips,'], ['has'], ['been'], ['fashioned'], ['of'], ['the', 'clay'], ['which'], ['the'], ['Potter'], ['has'], ['moistened'], ['with', 'His'], ['own'], ['sacred'], ['tears.', '', '*****'], ['*****'], ['a'], ['man'], ['said,'], ['Speak'], ['to'], ['us'], ['of', '_Self-Knowledge_.', '', 'And'], ['he'], ['answered,'], ['saying:', '', 'Your'], ['hearts'], ['know'], ['in'], ['silence'], ['the'], ['secrets', 'of'], ['the'], ['days'], ['and'], ['the'], ['nights.', '', 'But'], ['your'], ['ears'], ['thirst'], ['for'], ['the'], ['sound'], ['of', 'your'], ['heart’s'], ['knowledge.', '', 'You'], ['would'], ['know'], ['in'], ['words'], ['that'], ['which'], ['you', 'have'], ['always'], ['known'], ['in'], ['thought.', '', 'You'], ['would'], ['touch'], ['with'], ['your'], ['fingers'], ['the', 'naked'], ['body'], ['of'], ['your'], ['dreams.', '', 'And'], ['it'], ['is'], ['well'], ['you'], ['should.', '', 'The'], ['hidden'], ['well-spring'], ['of'], ['your'], ['soul'], ['must', 'needs'], ['rise'], ['and'], ['run'], ['murmuring'], ['to'], ['the'], ['sea;', '', 'And'], ['the'], ['treasure'], ['of'], ['your'], ['infinite'], ['depths', 'would'], ['be'], ['revealed'], ['to'], ['your'], ['eyes.', '', 'But'], ['let'], ['there'], ['be'], ['no'], ['scales'], ['to'], ['weigh'], ['your', 'unknown'], ['treasure;', '', 'And'], ['seek'], ['not'], ['the'], ['depths'], ['of'], ['your'], ['with'], ['staff'], ['or'], ['sounding', 'line.', '', 'For'], ['self'], ['is'], ['a'], ['sea'], ['boundless'], ['and', 'measureless.', '', '*****', '', 'Say'], ['not,'], ['“I'], ['have'], ['found'], ['the'], ['truth,”'], ['but', 'rather,'], ['“I'], ['have'], ['found'], ['a'], ['truth.”', '', 'Say'], ['not,'], ['“I'], ['have'], ['found'], ['the'], ['path'], ['of'], ['the', 'soul.”'], ['Say'], ['rather,'], ['“I'], ['have'], ['met'], ['the'], ['soul', 'walking'], ['upon'], ['my'], ['path.”', '', 'For'], ['the'], ['soul'], ['walks'], ['upon'], ['all'], ['paths.', '', 'The'], ['soul'], ['walks'], ['not'], ['upon'], ['a'], ['line,'], ['neither', 'does'], ['it'], ['grow'], ['like'], ['a'], ['reed.', '', 'The'], ['soul'], ['unfolds'], ['itself,'], ['like'], ['a'], ['lotus'], ['of', 'countless'], ['petals.', '', '[Illustration:'], ['0083]', '', '*****'], ['*****'], ['said'], ['a'], ['teacher,'], ['Speak'], ['to'], ['us'], ['of', '_Teaching_.', '', 'And'], ['he'], ['said:', '', '“No'], ['man'], ['can'], ['reveal'], ['to'], ['you'], ['aught'], ['but'], ['that', 'which'], ['already'], ['lies'], ['half'], ['asleep'], ['in'], ['the', 'dawning'], ['of'], ['your'], ['knowledge.', '', 'The'], ['teacher'], ['who'], ['walks'], ['in'], ['the'], ['shadow'], ['of', 'the'], ['temple,'], ['among'], ['his'], ['followers,'], ['gives', 'not'], ['of'], ['his'], ['wisdom'], ['but'], ['rather'], ['of'], ['his', 'faith'], ['and'], ['his'], ['lovingness.', '', 'If'], ['he'], ['is'], ['indeed'], ['wise'], ['he'], ['does'], ['not'], ['bid', 'you'], ['enter'], ['the'], ['house'], ['of'], ['his'], ['wisdom,'], ['but', 'rather'], ['leads'], ['you'], ['to'], ['the'], ['threshold'], ['of', 'your'], ['own'], ['mind.', '', 'The'], ['astronomer'], ['may'], ['speak'], ['to'], ['you'], ['of'], ['his', 'understanding'], ['of'], ['space,'], ['but'], ['he'], ['cannot', 'give'], ['you'], ['his'], ['understanding.', '', 'The'], ['musician'], ['may'], ['sing'], ['to'], ['you'], ['of'], ['the', 'rhythm'], ['which'], ['is'], ['in'], ['all'], ['space,'], ['but'], ['he', 'cannot'], ['give'], ['you'], ['the'], ['ear'], ['which'], ['arrests', 'the'], ['rhythm'], ['nor'], ['the'], ['voice'], ['that'], ['echoes'], ['it.'], ['he'], ['who'], ['is'], ['versed'], ['in'], ['the'], ['science', 'of'], ['numbers'], ['can'], ['tell'], ['of'], ['the'], ['regions', 'of'], ['weight'], ['and'], ['measure,'], ['but'], ['he'], ['cannot', 'conduct'], ['you'], ['thither.', '', 'For'], ['the'], ['vision'], ['of'], ['one'], ['man'], ['lends'], ['not'], ['its', 'wings'], ['to'], ['another'], ['man.', '', 'And'], ['even'], ['as'], ['each'], ['one'], ['of'], ['you'], ['stands'], ['alone', 'in'], ['God’s'], ['knowledge,'], ['so'], ['must'], ['each'], ['one'], ['of', 'you'], ['be'], ['alone'], ['in'], ['his'], ['knowledge'], ['of'], ['God'], ['and', 'in'], ['his'], ['understanding'], ['of'], ['the'], ['earth.', '', '*****'], ['*****'], ['a'], ['youth'], ['said,'], ['Speak'], ['to'], ['us'], ['of', '_Friendship_.', '', 'And'], ['he'], ['answered,'], ['saying:', '', 'Your'], ['friend'], ['is'], ['your'], ['needs'], ['answered.', '', 'He'], ['is'], ['your'], ['field'], ['which'], ['you'], ['sow'], ['with'], ['love', 'and'], ['reap'], ['with'], ['thanksgiving.', '', 'And'], ['he'], ['is'], ['your'], ['board'], ['and'], ['your'], ['fireside.', '', 'For'], ['you'], ['come'], ['to'], ['him'], ['with'], ['your'], ['hunger,', 'and'], ['you'], ['seek'], ['him'], ['for'], ['peace.', '', 'When'], ['your'], ['friend'], ['speaks'], ['his'], ['mind'], ['you', 'fear'], ['not'], ['the'], ['“nay”'], ['in'], ['your'], ['own'], ['mind,'], ['nor', 'do'], ['you'], ['withhold'], ['the'], ['“ay.”', '', 'And'], ['when'], ['he'], ['is'], ['silent'], ['your'], ['heart'], ['ceases', 'not'], ['to'], ['listen'], ['to'], ['his'], ['heart;', '', 'For'], ['without'], ['words,'], ['in'], ['friendship,'], ['all', 'thoughts,'], ['all'], ['desires,'], ['all'], ['expectations', 'are'], ['born'], ['and'], ['shared,'], ['with'], ['joy'], ['that'], ['is', 'unacclaimed.', '', 'When'], ['you'], ['part'], ['from'], ['your'], ['friend,'], ['you', 'grieve'], ['not;', '', 'For'], ['that'], ['which'], ['you'], ['love'], ['most'], ['in'], ['him', 'may'], ['be'], ['clearer'], ['in'], ['his'], ['absence,'], ['as'], ['the', 'mountain'], ['to'], ['the'], ['climber'], ['is'], ['clearer', 'from'], ['the'], ['plain.'], [''], ['let'], ['there'], ['be'], ['no', 'purpose'], ['in'], ['friendship'], ['save'], ['the'], ['deepening', 'of'], ['the'], ['spirit.', '', 'For'], ['love'], ['that'], ['seeks'], ['aught'], ['but'], ['the', 'disclosure'], ['of'], ['its'], ['own'], ['mystery'], ['is'], ['not', 'love'], ['but'], ['a'], ['net'], ['cast'], ['forth:'], ['and'], ['only'], ['the', 'unprofitable'], ['is'], ['caught.', '', '*****', '', 'And'], ['let'], ['your'], ['best'], ['be'], ['for'], ['your'], ['friend.', '', 'If'], ['he'], ['must'], ['know'], ['the'], ['ebb'], ['of'], ['your'], ['tide,', 'let'], ['him'], ['know'], ['its'], ['flood'], ['also.', '', 'For'], ['what'], ['is'], ['your'], ['friend'], ['that'], ['you'], ['should', 'seek'], ['him'], ['with'], ['hours'], ['to'], ['kill?', '', 'Seek'], ['him'], ['always'], ['with'], ['hours'], ['to'], ['live.', '', 'For'], ['it'], ['is'], ['his'], ['to'], ['fill'], ['your'], ['need,'], ['but'], ['not', 'your'], ['emptiness.', '', 'And'], ['in'], ['the'], ['sweetness'], ['of'], ['friendship', 'let'], ['there'], ['be'], ['laughter,'], ['and'], ['sharing'], ['of', 'pleasures.', '', 'For'], ['in'], ['the'], ['dew'], ['of'], ['little'], ['things', 'the'], ['heart'], ['finds'], ['its'], ['morning'], ['and'], ['is', 'refreshed.', '', '*****'], ['*****'], ['then'], ['a'], ['scholar'], ['said,'], ['Speak'], ['of', '_Talking_.', '', 'And'], ['he'], ['answered,'], ['saying:', '', 'You'], ['talk'], ['when'], ['you'], ['cease'], ['to'], ['be'], ['at'], ['peace', 'with'], ['your'], ['thoughts;', '', 'And'], ['when'], ['you'], ['can'], ['no'], ['longer'], ['dwell'], ['in'], ['the', 'solitude'], ['of'], ['your'], ['heart'], ['you'], ['live'], ['in'], ['your', 'lips,'], ['and'], ['sound'], ['is'], ['a'], ['diversion'], ['and'], ['a', 'pastime.', '', 'And'], ['in'], ['much'], ['of'], ['your'], ['talking,'], ['thinking'], ['is', 'half'], ['murdered.', '', 'For'], ['thought'], ['is'], ['a'], ['bird'], ['of'], ['space,'], ['that'], ['in', 'a'], ['cage'], ['of'], ['words'], ['may'], ['indeed'], ['unfold'], ['its', 'wings'], ['but'], ['cannot'], ['fly.', '', 'There'], ['are'], ['those'], ['among'], ['you'], ['who'], ['seek'], ['the', 'talkative'], ['through'], ['fear'], ['of'], ['being'], ['alone.', '', 'The'], ['silence'], ['of'], ['aloneness'], ['reveals'], ['to', 'their'], ['eyes'], ['their'], ['naked'], ['selves'], ['and'], ['they', 'would'], ['escape.', '', 'And'], ['there'], ['are'], ['those'], ['who'], ['talk,'], ['and'], ['knowledge'], ['or'], ['forethought'], ['reveal', 'a'], ['truth'], ['which'], ['they'], ['themselves'], ['do'], ['not', 'understand.', '', 'And'], ['there'], ['are'], ['those'], ['who'], ['have'], ['the'], ['truth', 'within'], ['them,'], ['but'], ['they'], ['tell'], ['it'], ['not'], ['in', 'words.', '', 'In'], ['the'], ['bosom'], ['of'], ['such'], ['as'], ['these'], ['the'], ['spirit', 'dwells'], ['in'], ['rhythmic'], ['silence.', '', '*****', '', 'When'], ['you'], ['meet'], ['your'], ['friend'], ['on'], ['the', 'roadside'], ['or'], ['in'], ['the'], ['market'], ['place,'], ['let'], ['the', 'spirit'], ['in'], ['you'], ['move'], ['your'], ['lips'], ['and'], ['direct', 'your'], ['tongue.', '', 'Let'], ['the'], ['voice'], ['within'], ['your'], ['voice'], ['speak'], ['to', 'the'], ['ear'], ['of'], ['his'], ['ear;', '', 'For'], ['his'], ['soul'], ['will'], ['keep'], ['the'], ['truth'], ['of', 'your'], ['heart'], ['as'], ['the'], ['taste'], ['of'], ['the'], ['wine'], ['is', 'remembered', '', 'When'], ['the'], ['colour'], ['is'], ['forgotten'], ['and'], ['the', 'vessel'], ['is'], ['no'], ['more.', '', '*****'], ['*****'], ['an'], ['astronomer'], ['said,'], ['Master,'], ['what', 'of'], ['_Time_?', '', 'And'], ['he'], ['answered:', '', 'You'], ['would'], ['measure'], ['time'], ['the'], ['measureless', 'and'], ['the'], ['immeasurable.', '', 'You'], ['would'], ['adjust'], ['your'], ['conduct'], ['and', 'even'], ['direct'], ['the'], ['course'], ['of'], ['your'], ['spirit', 'according'], ['to'], ['hours'], ['and'], ['seasons.', '', 'Of'], ['time'], ['you'], ['would'], ['make'], ['a'], ['stream'], ['upon', 'whose'], ['bank'], ['you'], ['would'], ['sit'], ['and'], ['watch'], ['its', 'flowing.', '', 'Yet'], ['the'], ['timeless'], ['in'], ['you'], ['is'], ['aware'], ['of', 'life’s'], ['timelessness,', '', 'And'], ['knows'], ['that'], ['yesterday'], ['is'], ['but'], ['today’s', 'memory'], ['and'], ['tomorrow'], ['is'], ['today’s'], ['dream.', '', 'And'], ['that'], ['that'], ['which'], ['sings'], ['and', 'contemplates'], ['in'], ['you'], ['is'], ['still'], ['dwelling', 'within'], ['the'], ['bounds'], ['of'], ['that'], ['first'], ['moment', 'which'], ['scattered'], ['the'], ['stars'], ['into'], ['space.'], ['among'], ['you'], ['does'], ['not'], ['feel'], ['that'], ['his', 'power'], ['to'], ['love'], ['is'], ['boundless?', '', 'And'], ['yet'], ['who'], ['does'], ['not'], ['feel'], ['that'], ['very', 'love,'], ['though'], ['boundless,'], ['encompassed', 'within'], ['the'], ['centre'], ['of'], ['his'], ['being,'], ['and', 'moving'], ['not'], ['from'], ['love'], ['thought'], ['to'], ['love', 'thought,'], ['nor'], ['from'], ['love'], ['deeds'], ['to'], ['other', 'love'], ['deeds?', '', 'And'], ['is'], ['not'], ['time'], ['even'], ['as'], ['love'], ['is,', 'undivided'], ['and'], ['paceless?', '', '*****', '', 'But'], ['if'], ['in'], ['your'], ['thought'], ['you'], ['must'], ['measure', 'time'], ['into'], ['seasons,'], ['let'], ['each'], ['season', 'encircle'], ['all'], ['the'], ['other'], ['seasons,', '', 'And'], ['let'], ['today'], ['embrace'], ['the'], ['past'], ['with', 'remembrance'], ['and'], ['the'], ['future'], ['with'], ['longing.', '', '*****'], ['*****'], ['one'], ['of'], ['the'], ['elders'], ['of'], ['the'], ['city', 'said,'], ['Speak'], ['to'], ['us'], ['of'], ['_Good'], ['and'], ['Evil_.', '', 'And'], ['he'], ['answered:', '', 'Of'], ['the'], ['good'], ['in'], ['you'], ['I'], ['can'], ['speak,'], ['but'], ['not', 'of'], ['the'], ['evil.', '', 'For'], ['what'], ['is'], ['evil'], ['but'], ['good'], ['tortured'], ['by', 'its'], ['own'], ['hunger'], ['and'], ['thirst?', '', 'Verily'], ['when'], ['good'], ['is'], ['hungry'], ['it'], ['seeks'], ['food', 'even'], ['in'], ['dark'], ['caves,'], ['and'], ['when'], ['it'], ['thirsts', 'it'], ['drinks'], ['even'], ['of'], ['dead'], ['waters.', '', 'You'], ['are'], ['good'], ['when'], ['you'], ['are'], ['one'], ['with', 'yourself.', '', 'Yet'], ['when'], ['you'], ['are'], ['not'], ['one'], ['with'], ['yourself', 'you'], ['are'], ['not'], ['evil.', '', 'For'], ['a'], ['divided'], ['house'], ['is'], ['not'], ['a'], ['den'], ['of', 'thieves;'], ['it'], ['is'], ['only'], ['a'], ['divided'], ['house.', '', 'And'], ['a'], ['ship'], ['without'], ['rudder'], ['may'], ['wander', 'aimlessly'], ['among'], ['perilous'], ['isles'], ['yet'], ['sink', 'not'], ['to'], ['the'], ['bottom.'], [''], ['are'], ['good'], ['when', 'you'], ['strive'], ['to'], ['give'], ['of'], ['yourself.', '', 'Yet'], ['you'], ['are'], ['not'], ['evil'], ['when'], ['you'], ['seek'], ['gain', 'for'], ['yourself.', '', 'For'], ['when'], ['you'], ['strive'], ['for'], ['gain'], ['you'], ['are', 'but'], ['a'], ['root'], ['that'], ['clings'], ['to'], ['the'], ['earth'], ['and', 'sucks'], ['at'], ['her'], ['breast.', '', 'Surely'], ['the'], ['fruit'], ['cannot'], ['say'], ['to'], ['the'], ['root,', '“Be'], ['like'], ['me,'], ['ripe'], ['and'], ['full'], ['and'], ['ever', 'giving'], ['of'], ['your'], ['abundance.”', '', 'For'], ['to'], ['the'], ['fruit'], ['giving'], ['is'], ['a'], ['need,'], ['as', 'receiving'], ['is'], ['a'], ['need'], ['to'], ['the'], ['root.', '', '*****', '', 'You'], ['are'], ['good'], ['when'], ['you'], ['are'], ['fully'], ['awake'], ['in', 'your'], ['speech,', '', 'Yet'], ['you'], ['are'], ['not'], ['evil'], ['when'], ['you'], ['sleep', 'while'], ['your'], ['tongue'], ['staggers'], ['without', 'purpose.', '', 'And'], ['even'], ['stumbling'], ['speech'], ['may'], ['strengthen', 'a'], ['weak'], ['tongue.', '', 'You'], ['are'], ['good'], ['when'], ['you'], ['walk'], ['to'], ['your'], ['goal', 'firmly'], ['and'], ['with'], ['bold'], ['steps.', '', 'Yet'], ['you'], ['are'], ['not'], ['evil'], ['when'], ['you'], ['go'], ['thither', 'limping.'], [''], ['those'], ['who'], ['limp'], ['go'], ['not', 'backward.', '', 'But'], ['you'], ['who'], ['are'], ['strong'], ['and'], ['swift,'], ['see', 'that'], ['you'], ['do'], ['not'], ['limp'], ['before'], ['the'], ['lame,', 'deeming'], ['it'], ['kindness.', '', '*****', '', 'You'], ['are'], ['good'], ['in'], ['countless'], ['ways,'], ['and'], ['you', 'are'], ['not'], ['evil'], ['when'], ['you'], ['are'], ['not'], ['good,', '', 'You'], ['are'], ['only'], ['loitering'], ['and'], ['sluggard.', '', 'Pity'], ['that'], ['the'], ['stags'], ['cannot'], ['teach', 'swiftness'], ['to'], ['the'], ['turtles.', '', 'In'], ['your'], ['longing'], ['for'], ['your'], ['giant'], ['self'], ['lies', 'your'], ['goodness:'], ['and'], ['that'], ['longing'], ['is'], ['in', 'all'], ['of'], ['you.', '', 'But'], ['in'], ['some'], ['of'], ['you'], ['that'], ['longing'], ['is'], ['a', 'torrent'], ['rushing'], ['with'], ['might'], ['to'], ['the'], ['sea,', 'carrying'], ['the'], ['secrets'], ['of'], ['the'], ['hillsides', 'and'], ['the'], ['songs'], ['of'], ['the'], ['forest.', '', 'And'], ['in'], ['others'], ['it'], ['is'], ['a'], ['flat'], ['stream'], ['that', 'loses'], ['itself'], ['in'], ['angles'], ['and'], ['bends'], ['and', 'lingers'], ['before'], ['it'], ['reaches'], ['the'], ['shore.', '', 'But'], ['let'], ['not'], ['him'], ['who'], ['longs'], ['much'], ['say'], ['to'], ['who'], ['longs'], ['little,'], ['“Wherefore'], ['are', 'you'], ['slow'], ['and'], ['halting?”', '', 'For'], ['the'], ['truly'], ['good'], ['ask'], ['not'], ['the'], ['naked,', '“Where'], ['is'], ['your'], ['garment?”'], ['nor'], ['the', 'houseless,'], ['“What'], ['has'], ['befallen'], ['your', 'house?”', '', '*****'], ['*****'], ['a'], ['priestess'], ['said,'], ['Speak'], ['to'], ['us', 'of'], ['_Prayer_.', '', 'And'], ['he'], ['answered,'], ['saying:', '', 'You'], ['pray'], ['in'], ['your'], ['distress'], ['and'], ['in'], ['your', 'need;'], ['would'], ['that'], ['you'], ['might'], ['pray'], ['also', 'in'], ['the'], ['fullness'], ['of'], ['your'], ['joy'], ['and'], ['in'], ['your', 'days'], ['of'], ['abundance.', '', 'For'], ['what'], ['is'], ['prayer'], ['but'], ['the'], ['expansion'], ['of', 'yourself'], ['into'], ['the'], ['living'], ['ether?', '', 'And'], ['if'], ['it'], ['is'], ['for'], ['your'], ['comfort'], ['to'], ['pour', 'your'], ['darkness'], ['into'], ['space,'], ['it'], ['is'], ['also'], ['for', 'your'], ['delight'], ['to'], ['pour'], ['forth'], ['the'], ['dawning', 'of'], ['your'], ['heart.', '', 'And'], ['if'], ['you'], ['cannot'], ['but'], ['weep'], ['when'], ['your', 'soul'], ['summons'], ['you'], ['to'], ['prayer,'], ['she'], ['should', 'spur'], ['you'], ['again'], ['and'], ['yet'], ['again,'], ['though', 'weeping,'], ['until'], ['you'], ['shall'], ['come'], ['laughing.', '', 'When'], ['you'], ['pray'], ['you'], ['rise'], ['to'], ['meet'], ['in'], ['the', 'air'], ['those'], ['who'], ['are'], ['praying'], ['at'], ['that'], ['very'], ['and'], ['whom'], ['save'], ['in'], ['prayer'], ['you', 'may'], ['not'], ['meet.', '', 'Therefore'], ['let'], ['your'], ['visit'], ['to'], ['that'], ['temple', 'invisible'], ['be'], ['for'], ['naught'], ['but'], ['ecstasy'], ['and', 'sweet'], ['communion.', '', 'For'], ['if'], ['you'], ['should'], ['enter'], ['the'], ['temple'], ['for', 'no'], ['other'], ['purpose'], ['than'], ['asking'], ['you'], ['shall', 'not'], ['receive:', '', 'And'], ['if'], ['you'], ['should'], ['enter'], ['into'], ['it'], ['to', 'humble'], ['yourself'], ['you'], ['shall'], ['not'], ['be'], ['lifted:', '', 'Or'], ['even'], ['if'], ['you'], ['should'], ['enter'], ['into'], ['it'], ['to', 'beg'], ['for'], ['the'], ['good'], ['of'], ['others'], ['you'], ['shall'], ['not', 'be'], ['heard.', '', 'It'], ['is'], ['enough'], ['that'], ['you'], ['enter'], ['the'], ['temple', 'invisible.', '', '*****', '', 'I'], ['cannot'], ['teach'], ['you'], ['how'], ['to'], ['pray'], ['in'], ['words.', '', 'God'], ['listens'], ['not'], ['to'], ['your'], ['words'], ['save'], ['when', 'He'], ['Himself'], ['utters'], ['them'], ['through'], ['your', 'lips.', '', 'And'], ['I'], ['cannot'], ['teach'], ['you'], ['the'], ['prayer'], ['of'], ['the', 'seas'], ['and'], ['the'], ['forests'], ['and'], ['the'], ['mountains.'], ['you'], ['who'], ['are'], ['born'], ['of'], ['the', 'mountains'], ['and'], ['the'], ['forests'], ['and'], ['the'], ['seas', 'can'], ['find'], ['their'], ['prayer'], ['in'], ['your'], ['heart,', '', 'And'], ['if'], ['you'], ['but'], ['listen'], ['in'], ['the'], ['stillness', 'of'], ['the'], ['night'], ['you'], ['shall'], ['hear'], ['them'], ['saying', 'in'], ['silence,', '', '“Our'], ['God,'], ['who'], ['art'], ['our'], ['winged'], ['self,'], ['it'], ['is', 'thy'], ['will'], ['in'], ['us'], ['that'], ['willeth.', '', 'It'], ['is'], ['thy'], ['desire'], ['in'], ['us'], ['that'], ['desireth.', '', 'It'], ['is'], ['thy'], ['urge'], ['in'], ['us'], ['that'], ['would'], ['turn'], ['our', 'nights,'], ['which'], ['are'], ['thine,'], ['into'], ['days'], ['which', 'are'], ['thine'], ['also.', '', 'We'], ['cannot'], ['ask'], ['thee'], ['for'], ['aught,'], ['for'], ['thou', 'knowest'], ['our'], ['needs'], ['before'], ['they'], ['are'], ['born', 'in'], ['us:', '', 'Thou'], ['art'], ['our'], ['need;'], ['and'], ['in'], ['giving'], ['us'], ['more', 'of'], ['thyself'], ['thou'], ['givest'], ['us'], ['all.”', '', '[Illustration:'], ['0100]', '', '*****'], ['*****'], ['a'], ['hermit,'], ['who'], ['visited'], ['the'], ['city', 'once'], ['a'], ['year,'], ['came'], ['forth'], ['and'], ['said,'], ['Speak', 'to'], ['us'], ['of'], ['_Pleasure_.', '', 'And'], ['he'], ['answered,'], ['saying:', '', 'Pleasure'], ['is'], ['a'], ['freedom-song,', '', 'But'], ['it'], ['is'], ['not'], ['freedom.', '', 'It'], ['is'], ['the'], ['blossoming'], ['of'], ['your'], ['desires,', '', 'But'], ['it'], ['is'], ['not'], ['their'], ['fruit.', '', 'It'], ['is'], ['a'], ['depth'], ['calling'], ['unto'], ['a'], ['height,', '', 'But'], ['it'], ['is'], ['not'], ['the'], ['deep'], ['nor'], ['the'], ['high.', '', 'It'], ['is'], ['the'], ['caged'], ['taking'], ['wing,', '', 'But'], ['it'], ['is'], ['not'], ['space'], ['encompassed.', '', 'Ay,'], ['in'], ['very'], ['truth,'], ['pleasure'], ['is'], ['a', 'freedom-song.', '', 'And'], ['I'], ['fain'], ['would'], ['have'], ['you'], ['sing'], ['it'], ['with', 'fullness'], ['of'], ['heart;'], ['yet'], ['I'], ['would'], ['not'], ['have', 'you'], ['lose'], ['your'], ['hearts'], ['in'], ['the'], ['singing.', '', 'Some'], ['of'], ['your'], ['youth'], ['seek'], ['pleasure'], ['as'], ['if', 'it'], ['were'], ['all,'], ['and'], ['they'], ['are'], ['judged'], ['and', 'rebuked.'], [''], ['would'], ['not'], ['judge'], ['nor', 'rebuke'], ['them.'], ['I'], ['would'], ['have'], ['them'], ['seek.', '', 'For'], ['they'], ['shall'], ['find'], ['pleasure,'], ['but'], ['not', 'her'], ['alone;', '', 'Seven'], ['are'], ['her'], ['sisters,'], ['and'], ['the'], ['least'], ['of', 'them'], ['is'], ['more'], ['beautiful'], ['than'], ['pleasure.', '', 'Have'], ['you'], ['not'], ['heard'], ['of'], ['the'], ['man'], ['who'], ['was', 'digging'], ['in'], ['the'], ['earth'], ['for'], ['roots'], ['and'], ['found', 'a'], ['treasure?', '', '*****', '', 'And'], ['some'], ['of'], ['your'], ['elders'], ['remember', 'pleasures'], ['with'], ['regret'], ['like'], ['wrongs', 'committed'], ['in'], ['drunkenness.', '', 'But'], ['regret'], ['is'], ['the'], ['beclouding'], ['of'], ['the'], ['mind', 'and'], ['not'], ['its'], ['chastisement.', '', 'They'], ['should'], ['remember'], ['their'], ['pleasures', 'with'], ['gratitude,'], ['as'], ['they'], ['would'], ['the', 'harvest'], ['of'], ['a'], ['summer.', '', 'Yet'], ['if'], ['it'], ['comforts'], ['them'], ['to'], ['regret,'], ['let', 'them'], ['be'], ['comforted.', '', 'And'], ['there'], ['are'], ['among'], ['you'], ['those'], ['who', 'are'], ['neither'], ['young'], ['to'], ['seek'], ['nor'], ['old'], ['to', 'remember;', '', 'And'], ['in'], ['their'], ['fear'], ['of'], ['seeking'], ['and', 'remembering'], [''], ['shun'], ['all'], ['pleasures,', 'lest'], ['they'], ['neglect'], ['the'], ['spirit'], ['or'], ['offend', 'against'], ['it.', '', 'But'], ['even'], ['in'], ['their'], ['foregoing'], ['is'], ['their', 'pleasure.', '', 'And'], ['thus'], ['they'], ['too'], ['find'], ['a'], ['treasure'], ['though', 'they'], ['dig'], ['for'], ['roots'], ['with'], ['quivering'], ['hands.', '', 'But'], ['tell'], ['me,'], ['who'], ['is'], ['he'], ['that'], ['can'], ['offend', 'the'], ['spirit?', '', 'Shall'], ['the'], ['nightingale'], ['offend'], ['the', 'stillness'], ['of'], ['the'], ['night,'], ['or'], ['the'], ['firefly', 'the'], ['stars?', '', 'And'], ['shall'], ['your'], ['flame'], ['or'], ['your'], ['smoke', 'burden'], ['the'], ['wind?', '', 'Think'], ['you'], ['the'], ['spirit'], ['is'], ['a'], ['still'], ['pool', 'which'], ['you'], ['can'], ['trouble'], ['with'], ['a'], ['staff?', '', '*****', '', 'Oftentimes'], ['in'], ['denying'], ['yourself'], ['pleasure', 'you'], ['do'], ['but'], ['store'], ['the'], ['desire'], ['in'], ['the', 'recesses'], ['of'], ['your'], ['being.', '', 'Who'], ['knows'], ['but'], ['that'], ['which'], ['seems'], ['omitted', 'today,'], ['waits'], ['for'], ['tomorrow?', '', 'Even'], ['your'], ['body'], ['knows'], ['its'], ['heritage', 'and'], ['its'], ['rightful'], ['need'], ['and'], ['will'], ['not'], ['be', 'deceived.', '', 'And'], ['your'], ['body'], ['is'], ['the'], ['harp'], ['of'], ['your'], ['soul,', '', 'And'], ['it'], ['is'], ['yours'], ['to'], ['bring'], ['forth'], [''], ['from'], ['it'], ['or'], ['confused'], ['sounds.', '', '*****', '', 'And'], ['now'], ['you'], ['ask'], ['in'], ['your'], ['heart,'], ['“How', 'shall'], ['we'], ['distinguish'], ['that'], ['which'], ['is', 'good'], ['in'], ['pleasure'], ['from'], ['that'], ['which'], ['is'], ['not', 'good?”', '', 'Go'], ['to'], ['your'], ['fields'], ['and'], ['your'], ['gardens,'], ['and', 'you'], ['shall'], ['learn'], ['that'], ['it'], ['is'], ['the'], ['pleasure', 'of'], ['the'], ['bee'], ['to'], ['gather'], ['honey'], ['of'], ['the', 'flower,', '', 'But'], ['it'], ['is'], ['also'], ['the'], ['pleasure'], ['of'], ['the', 'flower'], ['to'], ['yield'], ['its'], ['honey'], ['to'], ['the'], ['bee.', '', 'For'], ['to'], ['the'], ['bee'], ['a'], ['flower'], ['is'], ['a'], ['fountain'], ['of', 'life,', '', 'And'], ['to'], ['the'], ['flower'], ['a'], ['bee'], ['is'], ['a'], ['messenger', 'of'], ['love,', '', 'And'], ['to'], ['both,'], ['bee'], ['and'], ['flower,'], ['the'], ['giving', 'and'], ['the'], ['receiving'], ['of'], ['pleasure'], ['is'], ['a'], ['need', 'and'], ['an'], ['ecstasy.', '', 'People'], ['of'], ['Orphalese,'], ['be'], ['in'], ['your', 'pleasures'], ['like'], ['the'], ['flowers'], ['and'], ['the'], ['bees.', '', '*****'], ['*****'], ['a'], ['poet'], ['said,'], ['Speak'], ['to'], ['us'], ['of', '_Beauty_.', '', 'And'], ['he'], ['answered:', '', 'Where'], ['shall'], ['you'], ['seek'], ['beauty,'], ['and'], ['how', 'shall'], ['you'], ['find'], ['her'], ['unless'], ['she'], ['herself'], ['be', 'your'], ['way'], ['and'], ['your'], ['guide?', '', 'And'], ['how'], ['shall'], ['you'], ['speak'], ['of'], ['her'], ['except', 'she'], ['be'], ['the'], ['weaver'], ['of'], ['your'], ['speech?', '', 'The'], ['aggrieved'], ['and'], ['the'], ['injured'], ['say,', '“Beauty'], ['is'], ['kind'], ['and'], ['gentle.', '', 'Like'], ['a'], ['young'], ['mother'], ['half-shy'], ['of'], ['her'], ['own', 'glory'], ['she'], ['walks'], ['among'], ['us.”', '', 'And'], ['the'], ['passionate'], ['say,'], ['“Nay,'], ['beauty'], ['is', 'a'], ['thing'], ['of'], ['might'], ['and'], ['dread.', '', 'Like'], ['the'], ['tempest'], ['she'], ['shakes'], ['the'], ['earth', 'beneath'], ['us'], ['and'], ['the'], ['sky'], ['above'], ['us.”', '', 'The'], ['tired'], ['and'], ['the'], ['weary'], ['say,'], ['“Beauty'], ['is', 'of'], ['soft'], ['whisperings.'], ['She'], ['speaks'], ['in'], ['our', 'spirit.'], [''], ['voice'], ['yields'], ['to'], ['our', 'silences'], ['like'], ['a'], ['faint'], ['light'], ['that'], ['quivers', 'in'], ['fear'], ['of'], ['the'], ['shadow.”', '', 'But'], ['the'], ['restless'], ['say,'], ['“We'], ['have'], ['heard'], ['her', 'shouting'], ['among'], ['the'], ['mountains,', '', 'And'], ['with'], ['her'], ['cries'], ['came'], ['the'], ['sound'], ['of', 'hoofs,'], ['and'], ['the'], ['beating'], ['of'], ['wings'], ['and'], ['the', 'roaring'], ['of'], ['lions.”', '', 'At'], ['night'], ['the'], ['watchmen'], ['of'], ['the'], ['city'], ['say,', '“Beauty'], ['shall'], ['rise'], ['with'], ['the'], ['dawn'], ['from', 'the'], ['east.”', '', 'And'], ['at'], ['noontide'], ['the'], ['toilers'], ['and'], ['the', 'wayfarers'], ['say,'], ['“We'], ['have'], ['seen'], ['her'], ['leaning', 'over'], ['the'], ['earth'], ['from'], ['the'], ['windows'], ['of'], ['the', 'sunset.”', '', '*****', '', 'In'], ['winter'], ['say'], ['the'], ['snow-bound,'], ['“She'], ['shall', 'come'], ['with'], ['the'], ['spring'], ['leaping'], ['upon'], ['the', 'hills.”', '', 'And'], ['in'], ['the'], ['summer'], ['heat'], ['the'], ['reapers', 'say,'], ['“We'], ['have'], ['seen'], ['her'], ['dancing'], ['with'], ['the', 'autumn'], ['leaves,'], ['and'], ['we'], ['saw'], ['a'], ['drift'], ['of', 'snow'], ['in'], ['her'], ['hair.”'], [''], ['these'], ['things', 'have'], ['you'], ['said'], ['of'], ['beauty,', '', 'Yet'], ['in'], ['truth'], ['you'], ['spoke'], ['not'], ['of'], ['her'], ['but'], ['of', 'needs'], ['unsatisfied,', '', 'And'], ['beauty'], ['is'], ['not'], ['a'], ['need'], ['but'], ['an'], ['ecstasy.', '', 'It'], ['is'], ['not'], ['a'], ['mouth'], ['thirsting'], ['nor'], ['an'], ['empty', 'hand'], ['stretched'], ['forth,', '', 'But'], ['rather'], ['a'], ['heart'], ['enflamed'], ['and'], ['a'], ['soul', 'enchanted.', '', 'It'], ['is'], ['not'], ['the'], ['image'], ['you'], ['would'], ['see'], ['nor', 'the'], ['song'], ['you'], ['would'], ['hear,', '', 'But'], ['rather'], ['an'], ['image'], ['you'], ['see'], ['though'], ['you', 'close'], ['your'], ['eyes'], ['and'], ['a'], ['song'], ['you'], ['hear', 'though'], ['you'], ['shut'], ['your'], ['ears.', '', 'It'], ['is'], ['not'], ['the'], ['sap'], ['within'], ['the'], ['furrowed', 'bark,'], ['nor'], ['a'], ['wing'], ['attached'], ['to'], ['a'], ['claw,', '', 'But'], ['rather'], ['a'], ['garden'], ['for'], ['ever'], ['in'], ['bloom', 'and'], ['a'], ['flock'], ['of'], ['angels'], ['for'], ['ever'], ['in', 'flight.', '', '*****', '', 'People'], ['of'], ['Orphalese,'], ['beauty'], ['is'], ['life'], ['when', 'life'], ['unveils'], ['her'], ['holy'], ['face.', '', 'But'], ['you'], ['are'], ['life'], ['and'], ['you'], ['are'], ['the'], ['veil.'], ['is'], ['eternity'], ['gazing'], ['at'], ['itself', 'in'], ['a'], ['mirror.', '', 'But'], ['you'], ['are'], ['eternity'], ['and'], ['you'], ['are'], ['the', 'mirror.', '', '*****'], ['*****'], ['an'], ['old'], ['priest'], ['said,'], ['Speak'], ['to'], ['us', 'of'], ['_Religion_.', '', 'And'], ['he'], ['said:', '', 'Have'], ['I'], ['spoken'], ['this'], ['day'], ['of'], ['aught'], ['else?', '', 'Is'], ['not'], ['religion'], ['all'], ['deeds'], ['and'], ['all', 'reflection,', '', 'And'], ['that'], ['which'], ['is'], ['neither'], ['deed'], ['nor', 'reflection,'], ['but'], ['a'], ['wonder'], ['and'], ['a'], ['surprise', 'ever'], ['springing'], ['in'], ['the'], ['soul,'], ['even'], ['while', 'the'], ['hands'], ['hew'], ['the'], ['stone'], ['or'], ['tend'], ['the', 'loom?', '', 'Who'], ['can'], ['separate'], ['his'], ['faith'], ['from', 'his'], ['actions,'], ['or'], ['his'], ['belief'], ['from'], ['his', 'occupations?', '', 'Who'], ['can'], ['spread'], ['his'], ['hours'], ['before'], ['him,', 'saving,'], ['“This'], ['for'], ['God'], ['and'], ['this'], ['for', 'myself;'], ['This'], ['for'], ['my'], ['soul,'], ['and'], ['this'], ['other', 'for'], ['my'], ['body?”', '', 'All'], ['your'], ['hours'], ['are'], ['wings'], ['that'], ['beat', 'through'], ['space'], ['from'], ['self'], ['to'], ['self.'], [''], ['wears'], ['his'], ['morality'], ['but'], ['as'], ['his'], ['best', 'garment'], ['were'], ['better'], ['naked.', '', 'The'], ['wind'], ['and'], ['the'], ['sun'], ['will'], ['tear'], ['no'], ['holes', 'in'], ['his'], ['skin.', '', 'And'], ['he'], ['who'], ['defines'], ['his'], ['conduct'], ['by'], ['ethics', 'imprisons'], ['his'], ['song-bird'], ['in'], ['a'], ['cage.', '', 'The'], ['freest'], ['song'], ['comes'], ['not'], ['through'], ['bars', 'and'], ['wires.', '', 'And'], ['he'], ['to'], ['whom'], ['worshipping'], ['is'], ['a'], ['window,', 'to'], ['open'], ['but'], ['also'], ['to'], ['shut,'], ['has'], ['not'], ['yet', 'visited'], ['the'], ['house'], ['of'], ['his'], ['soul'], ['whose', 'windows'], ['are'], ['from'], ['dawn'], ['to'], ['dawn.', '', '*****', '', 'Your'], ['daily'], ['life'], ['is'], ['your'], ['temple'], ['and'], ['your', 'religion.', '', 'Whenever'], ['you'], ['enter'], ['into'], ['it'], ['take'], ['with'], ['you', 'your'], ['all.', '', 'Take'], ['the'], ['plough'], ['and'], ['the'], ['forge'], ['and'], ['the', 'mallet'], ['and'], ['the'], ['lute,', '', 'The'], ['things'], ['you'], ['have'], ['fashioned'], ['in', 'necessity'], ['or'], ['for'], ['delight.', '', 'For'], ['in'], ['revery'], ['you'], ['cannot'], ['rise'], ['above'], ['your', 'achievements'], ['nor'], ['fall'], ['lower'], ['than'], ['your', 'failures.', '', 'And'], ['take'], ['with'], ['you'], ['all'], ['men:'], [''], ['in', 'adoration'], ['you'], ['cannot'], ['fly'], ['higher'], ['than', 'their'], ['hopes'], ['nor'], ['humble'], ['yourself'], ['lower', 'than'], ['their'], ['despair.', '', '*****', '', 'And'], ['if'], ['you'], ['would'], ['know'], ['God'], ['be'], ['not', 'therefore'], ['a'], ['solver'], ['of'], ['riddles.', '', 'Rather'], ['look'], ['about'], ['you'], ['and'], ['you'], ['shall'], ['see', 'Him'], ['playing'], ['with'], ['your'], ['children.', '', 'And'], ['look'], ['into'], ['space;'], ['you'], ['shall'], ['see'], ['Him', 'walking'], ['in'], ['the'], ['cloud,'], ['outstretching'], ['His', 'arms'], ['in'], ['the'], ['lightning'], ['and'], ['descending'], ['in', 'rain.', '', 'You'], ['shall'], ['see'], ['Him'], ['smiling'], ['in'], ['flowers,', 'then'], ['rising'], ['and'], ['waving'], ['His'], ['hands'], ['in', 'trees.', '', '*****'], ['*****'], ['Almitra'], ['spoke,'], ['saying,'], ['We'], ['would', 'ask'], ['now'], ['of'], ['_Death_.', '', 'And'], ['he'], ['said:', '', 'You'], ['would'], ['know'], ['the'], ['secret'], ['of'], ['death.', '', 'But'], ['how'], ['shall'], ['you'], ['find'], ['it'], ['unless'], ['you', 'seek'], ['it'], ['in'], ['the'], ['heart'], ['of'], ['life?', '', 'The'], ['owl'], ['whose'], ['night-bound'], ['eyes'], ['are'], ['blind', 'unto'], ['the'], ['day'], ['cannot'], ['unveil'], ['the'], ['mystery', 'of'], ['light.', '', 'If'], ['you'], ['would'], ['indeed'], ['behold'], ['the'], ['spirit', 'of'], ['death,'], ['open'], ['your'], ['heart'], ['wide'], ['unto'], ['the', 'body'], ['of'], ['life.', '', 'For'], ['life'], ['and'], ['death'], ['are'], ['one,'], ['even'], ['as'], ['the', 'river'], ['and'], ['the'], ['sea'], ['are'], ['one.', '', 'In'], ['the'], ['depth'], ['of'], ['your'], ['hopes'], ['and'], ['desires', 'lies'], ['your'], ['silent'], ['knowledge'], ['of'], ['the', 'beyond;', '', 'And'], ['like'], ['seeds'], ['dreaming'], ['beneath'], ['the'], ['snow', 'your'], ['heart'], ['dreams'], ['of'], ['spring.', '', 'Trust'], ['the'], ['dreams,'], ['for'], ['in'], ['them'], ['is'], ['hidden', 'the'], ['gate'], ['to'], ['eternity.'], [''], ['fear', 'of'], ['death'], ['is'], ['but'], ['the'], ['trembling'], ['of'], ['the', 'shepherd'], ['when'], ['he'], ['stands'], ['before'], ['the'], ['king', 'whose'], ['hand'], ['is'], ['to'], ['be'], ['laid'], ['upon'], ['him'], ['in', 'honour.', '', 'Is'], ['the'], ['shepherd'], ['not'], ['joyful'], ['beneath'], ['his', 'trembling,'], ['that'], ['he'], ['shall'], ['wear'], ['the'], ['mark', 'of'], ['the'], ['king?', '', 'Yet'], ['is'], ['he'], ['not'], ['more'], ['mindful'], ['of'], ['his', 'trembling?', '', '*****', '', 'For'], ['what'], ['is'], ['it'], ['to'], ['die'], ['but'], ['to'], ['stand'], ['naked', 'in'], ['the'], ['wind'], ['and'], ['to'], ['melt'], ['into'], ['the'], ['sun?', '', 'And'], ['what'], ['is'], ['it'], ['to'], ['cease'], ['breathing,'], ['but', 'to'], ['free'], ['the'], ['breath'], ['from'], ['its'], ['restless', 'tides,'], ['that'], ['it'], ['may'], ['rise'], ['and'], ['expand'], ['and', 'seek'], ['God'], ['unencumbered?', '', 'Only'], ['when'], ['you'], ['drink'], ['from'], ['the'], ['river'], ['of', 'silence'], ['shall'], ['you'], ['indeed'], ['sing.', '', 'And'], ['when'], ['you'], ['have'], ['reached'], ['the'], ['mountain', 'top,'], ['then'], ['you'], ['shall'], ['begin'], ['to'], ['climb.', '', 'And'], ['when'], ['the'], ['earth'], ['shall'], ['claim'], ['your', 'limbs,'], ['then'], ['shall'], ['you'], ['truly'], ['dance.'], ['now'], ['it'], ['was'], ['evening.', '', 'And'], ['Almitra'], ['the'], ['seeress'], ['said,'], ['Blessed'], ['be', 'this'], ['day'], ['and'], ['this'], ['place'], ['and'], ['your'], ['spirit', 'that'], ['has'], ['spoken.', '', 'And'], ['he'], ['answered,'], ['Was'], ['it'], ['I'], ['who'], ['spoke?'], ['Was', 'I'], ['not'], ['also'], ['a'], ['listener?', '', '*****', '', 'Then'], ['he'], ['descended'], ['the'], ['steps'], ['of'], ['the', 'Temple'], ['and'], ['all'], ['the'], ['people'], ['followed'], ['him.', 'And'], ['he'], ['reached'], ['his'], ['ship'], ['and'], ['stood'], ['upon', 'the'], ['deck.', '', 'And'], ['facing'], ['the'], ['people'], ['again,'], ['he'], ['raised', 'his'], ['voice'], ['and'], ['said:', '', 'People'], ['of'], ['Orphalese,'], ['the'], ['wind'], ['bids'], ['me', 'leave'], ['you.', '', 'Less'], ['hasty'], ['am'], ['I'], ['than'], ['the'], ['wind,'], ['yet'], ['I', 'must'], ['go.', '', 'We'], ['wanderers,'], ['ever'], ['seeking'], ['the'], ['lonelier', 'way,'], ['begin'], ['no'], ['day'], ['where'], ['we'], ['have'], ['ended', 'another'], ['day;'], ['and'], ['no'], ['sunrise'], ['finds'], ['us', 'where'], ['sunset'], ['left'], ['us.'], [''], ['while'], ['the', 'earth'], ['sleeps'], ['we'], ['travel.', '', 'We'], ['are'], ['the'], ['seeds'], ['of'], ['the'], ['tenacious', 'plant,'], ['and'], ['it'], ['is'], ['in'], ['our'], ['ripeness'], ['and'], ['our', 'fullness'], ['of'], ['heart'], ['that'], ['we'], ['are'], ['given'], ['to', 'the'], ['wind'], ['and'], ['are'], ['scattered.', '', '*****', '', 'Brief'], ['were'], ['my'], ['days'], ['among'], ['you,'], ['and', 'briefer'], ['still'], ['the'], ['words'], ['I'], ['have'], ['spoken.', '', 'But'], ['should'], ['my'], ['voice'], ['fade'], ['in'], ['your'], ['ears,', 'and'], ['my'], ['love'], ['vanish'], ['in'], ['your'], ['memory,'], ['then', 'I'], ['will'], ['come'], ['again,', '', 'And'], ['with'], ['a'], ['richer'], ['heart'], ['and'], ['lips'], ['more', 'yielding'], ['to'], ['the'], ['spirit'], ['will'], ['I'], ['speak.', '', 'Yea,'], ['I'], ['shall'], ['return'], ['with'], ['the'], ['tide,', '', 'And'], ['though'], ['death'], ['may'], ['hide'], ['me,'], ['and'], ['the', 'greater'], ['silence'], ['enfold'], ['me,'], ['yet'], ['again', 'will'], ['I'], ['seek'], ['your'], ['understanding.', '', 'And'], ['not'], ['in'], ['vain'], ['will'], ['I'], ['seek.', '', 'If'], ['aught'], ['I'], ['have'], ['said'], ['is'], ['truth,'], ['that', 'truth'], ['shall'], ['reveal'], ['itself'], ['in'], ['a'], ['clearer', 'voice,'], ['and'], ['in'], ['words'], ['more'], ['kin'], ['to'], ['your', 'thoughts.', '', 'I'], ['go'], ['with'], ['the'], ['wind,'], ['people'], ['of', 'Orphalese,'], ['but'], ['not'], ['down'], ['into'], ['emptiness;'], ['if'], ['this'], ['day'], ['is'], ['not'], ['a'], ['fulfilment', 'of'], ['your'], ['needs'], ['and'], ['my'], ['love,'], ['then'], ['let'], ['it', 'be'], ['a'], ['promise'], ['till'], ['another'], ['day.', '', 'Man’s'], ['needs'], ['change,'], ['but'], ['not'], ['his'], ['love,', 'nor'], ['his'], ['desire'], ['that'], ['his'], ['love'], ['should', 'satisfy'], ['his'], ['needs.', '', 'Know'], ['therefore,'], ['that'], ['from'], ['the'], ['greater', 'silence'], ['I'], ['shall'], ['return.', '', 'The'], ['mist'], ['that'], ['drifts'], ['away'], ['at'], ['dawn,', 'leaving'], ['but'], ['dew'], ['in'], ['the'], ['fields,'], ['shall', 'rise'], ['and'], ['gather'], ['into'], ['a'], ['cloud'], ['and'], ['then', 'fall'], ['down'], ['in'], ['rain.', '', 'And'], ['not'], ['unlike'], ['the'], ['mist'], ['have'], ['I'], ['been.', '', 'In'], ['the'], ['stillness'], ['of'], ['the'], ['night'], ['I'], ['have', 'walked'], ['in'], ['your'], ['streets,'], ['and'], ['my'], ['spirit', 'has'], ['entered'], ['your'], ['houses,', '', 'And'], ['your'], ['heart-beats'], ['were'], ['in'], ['my'], ['heart,', 'and'], ['your'], ['breath'], ['was'], ['upon'], ['my'], ['face,'], ['and'], ['I', 'knew'], ['you'], ['all.', '', 'Ay,'], ['I'], ['knew'], ['your'], ['joy'], ['and'], ['your'], ['pain,', 'and'], ['in'], ['your'], ['sleep'], ['your'], ['dreams'], ['were'], ['my', 'dreams.', '', 'And'], ['oftentimes'], ['I'], ['was'], ['among'], ['you'], ['a'], ['lake', 'among'], ['the'], ['mountains.', '', 'I'], ['mirrored'], ['the'], ['summits'], ['in'], ['you'], ['and'], ['the'], ['slopes,'], ['and'], ['even'], ['the', 'passing'], ['flocks'], ['of'], ['your'], ['thoughts'], ['and'], ['your', 'desires.', '', 'And'], ['to'], ['my'], ['silence'], ['came'], ['the'], ['laughter', 'of'], ['your'], ['children'], ['in'], ['streams,'], ['and'], ['the', 'longing'], ['of'], ['your'], ['youths'], ['in'], ['rivers.', '', 'And'], ['when'], ['they'], ['reached'], ['my'], ['depth'], ['the', 'streams'], ['and'], ['the'], ['rivers'], ['ceased'], ['not'], ['yet'], ['to', 'sing.', '', '[Illustration:'], ['0119]', '', 'But'], ['sweeter'], ['still'], ['than'], ['laughter'], ['and', 'greater'], ['than'], ['longing'], ['came'], ['to'], ['me.', '', 'It'], ['was'], ['the'], ['boundless'], ['in'], ['you;', '', 'The'], ['vast'], ['man'], ['in'], ['whom'], ['you'], ['are'], ['all'], ['but', 'cells'], ['and'], ['sinews;', '', 'He'], ['in'], ['whose'], ['chant'], ['all'], ['your'], ['singing'], ['is', 'but'], ['a'], ['soundless'], ['throbbing.', '', 'It'], ['is'], ['in'], ['the'], ['vast'], ['man'], ['that'], ['you'], ['are'], ['vast,', '', 'And'], ['in'], ['beholding'], ['him'], ['that'], ['I'], ['beheld'], ['you', 'and'], ['loved'], ['you.', '', 'For'], ['what'], ['distances'], ['can'], ['love'], ['reach'], ['that', 'are'], ['not'], ['in'], ['that'], ['vast'], ['sphere?', '', 'What'], ['visions,'], ['what'], ['expectations'], ['and'], ['what', 'presumptions'], ['can'], ['outsoar'], ['that'], ['flight?', '', 'Like'], ['a'], ['giant'], ['oak'], ['tree'], ['covered'], ['with'], ['apple', 'blossoms'], ['is'], ['the'], ['vast'], ['man'], ['in'], ['you.'], [''], ['binds'], ['you'], ['to'], ['the'], ['earth,'], ['his', 'fragrance'], ['lifts'], ['you'], ['into'], ['space,'], ['and'], ['in', 'his'], ['durability'], ['you'], ['are'], ['deathless.', '', '*****', '', 'You'], ['have'], ['been'], ['told'], ['that,'], ['even'], ['like'], ['a', 'chain,'], ['you'], ['are'], ['as'], ['weak'], ['as'], ['your'], ['weakest', 'link.', '', 'This'], ['is'], ['but'], ['half'], ['the'], ['truth.'], ['You'], ['are'], ['also', 'as'], ['strong'], ['as'], ['your'], ['strongest'], ['link.', '', 'To'], ['measure'], ['you'], ['by'], ['your'], ['smallest'], ['deed', 'is'], ['to'], ['reckon'], ['the'], ['power'], ['of'], ['ocean'], ['by'], ['the', 'frailty'], ['of'], ['its'], ['foam.', '', 'To'], ['judge'], ['you'], ['by'], ['your'], ['failures'], ['is'], ['to', 'cast'], ['blame'], ['upon'], ['the'], ['seasons'], ['for'], ['their', 'inconstancy.', '', 'Ay,'], ['you'], ['are'], ['like'], ['an'], ['ocean,', '', 'And'], ['though'], ['heavy-grounded'], ['ships'], ['await', 'the'], ['tide'], ['upon'], ['your'], ['shores,'], ['yet,'], ['even', 'like'], ['an'], ['ocean,'], ['you'], ['cannot'], ['hasten'], ['your', 'tides.', '', 'And'], ['like'], ['the'], ['seasons'], ['you'], ['are'], ['also,', '', 'And'], ['though'], ['in'], ['your'], ['winter'], ['you'], ['deny'], ['your', 'spring,', '', 'Yet'], ['spring,'], ['reposing'], ['within'], ['you,'], ['smiles', 'in'], ['her'], ['drowsiness'], ['and'], ['is'], ['not'], ['offended.'], ['not'], ['I'], ['say'], ['these'], ['things'], ['in', 'order'], ['that'], ['you'], ['may'], ['say'], ['the'], ['one'], ['to'], ['the', 'other,'], ['“He'], ['praised'], ['us'], ['well.'], ['He'], ['saw'], ['but', 'the'], ['good'], ['in'], ['us.”', '', 'I'], ['only'], ['speak'], ['to'], ['you'], ['in'], ['words'], ['of'], ['that', 'which'], ['you'], ['yourselves'], ['know'], ['in'], ['thought.', '', 'And'], ['what'], ['is'], ['word'], ['knowledge'], ['but'], ['a'], ['shadow', 'of'], ['wordless'], ['knowledge?', '', 'Your'], ['thoughts'], ['and'], ['my'], ['words'], ['are'], ['waves', 'from'], ['a'], ['sealed'], ['memory'], ['that'], ['keeps'], ['records', 'of'], ['our'], ['yesterdays,', '', 'And'], ['of'], ['the'], ['ancient'], ['days'], ['when'], ['the'], ['earth', 'knew'], ['not'], ['us'], ['nor'], ['herself,', '', 'And'], ['of'], ['nights'], ['when'], ['earth'], ['was'], ['up-wrought', 'with'], ['confusion.', '', '*****', '', 'Wise'], ['men'], ['have'], ['come'], ['to'], ['you'], ['to'], ['give'], ['you', 'of'], ['their'], ['wisdom.'], ['I'], ['came'], ['to'], ['take'], ['of'], ['your', 'wisdom:', '', 'And'], ['behold'], ['I'], ['have'], ['found'], ['that'], ['which'], ['is', 'greater'], ['than'], ['wisdom.', '', 'It'], ['is'], ['a'], ['flame'], ['spirit'], ['in'], ['you'], ['ever', 'gathering'], ['more'], ['of'], ['itself,', '', 'While'], ['you,'], ['heedless'], ['of'], ['its'], ['expansion,', 'bewail'], ['the'], ['withering'], ['of'], ['your'], ['days.'], ['is'], ['life'], ['in'], ['quest'], ['of'], ['life'], ['in', 'bodies'], ['that'], ['fear'], ['the'], ['grave.', '', '*****', '', 'There'], ['are'], ['no'], ['graves'], ['here.', '', 'These'], ['mountains'], ['and'], ['plains'], ['are'], ['a'], ['cradle', 'and'], ['a'], ['stepping-stone.', '', 'Whenever'], ['you'], ['pass'], ['by'], ['the'], ['field'], ['where', 'you'], ['have'], ['laid'], ['your'], ['ancestors'], ['look'], ['well', 'thereupon,'], ['and'], ['you'], ['shall'], ['see'], ['yourselves', 'and'], ['your'], ['children'], ['dancing'], ['hand'], ['in'], ['hand.', '', 'Verily'], ['you'], ['often'], ['make'], ['merry'], ['without', 'knowing.', '', 'Others'], ['have'], ['come'], ['to'], ['you'], ['to'], ['whom'], ['for', 'golden'], ['promises'], ['made'], ['unto'], ['your'], ['faith', 'you'], ['have'], ['given'], ['but'], ['riches'], ['and'], ['power'], ['and', 'glory.', '', 'Less'], ['than'], ['a'], ['promise'], ['have'], ['I'], ['given,'], ['and', 'yet'], ['more'], ['generous'], ['have'], ['you'], ['been'], ['to'], ['me.', '', 'You'], ['have'], ['given'], ['me'], ['my'], ['deeper'], ['thirsting', 'after'], ['life.', '', 'Surely'], ['there'], ['is'], ['no'], ['greater'], ['gift'], ['to'], ['a'], ['man', 'than'], ['that'], ['which'], ['turns'], ['all'], ['his'], ['aims', 'into'], ['parching'], ['lips'], ['and'], ['all'], ['life'], ['into'], ['a', 'fountain.', '', '[Illustration:'], ['0125]'], ['in'], ['this'], ['lies'], ['my'], ['honour'], ['and'], ['my', 'reward,--', '', 'That'], ['whenever'], ['I'], ['come'], ['to'], ['the'], ['fountain', 'to'], ['drink'], ['I'], ['find'], ['the'], ['living'], ['water'], ['itself', 'thirsty;', '', 'And'], ['it'], ['drinks'], ['me'], ['while'], ['I'], ['drink'], ['it.', '', '*****', '', 'Some'], ['of'], ['you'], ['have'], ['deemed'], ['me'], ['proud'], ['and', 'over-shy'], ['to'], ['receive'], ['gifts.', '', 'Too'], ['proud'], ['indeed'], ['am'], ['I'], ['to'], ['receive'], ['wages,', 'but'], ['not'], ['gifts.', '', 'And'], ['though'], ['I'], ['have'], ['eaten'], ['berries'], ['among', 'the'], ['hills'], ['when'], ['you'], ['would'], ['have'], ['had'], ['me'], ['sit', 'at'], ['your'], ['board,', '', 'And'], ['slept'], ['in'], ['the'], ['portico'], ['of'], ['the'], ['temple', 'when'], ['you'], ['would'], ['gladly'], ['have'], ['sheltered'], ['me,', '', 'Yet'], ['was'], ['it'], ['not'], ['your'], ['loving'], ['mindfulness', 'of'], ['my'], ['days'], ['and'], ['my'], ['nights'], ['that'], ['made'], ['food', 'sweet'], ['to'], ['my'], ['mouth'], ['and'], ['girdled'], ['my'], ['sleep', 'with'], ['visions?', '', 'For'], ['this'], ['I'], ['bless'], ['you'], ['most:', '', 'You'], ['give'], ['much'], ['and'], ['know'], ['not'], ['that'], ['you'], ['give', 'at'], ['all.'], [''], ['the'], ['kindness'], ['that', 'gazes'], ['upon'], ['itself'], ['in'], ['a'], ['mirror'], ['turns'], ['to', 'stone,', '', 'And'], ['a'], ['good'], ['deed'], ['that'], ['calls'], ['itself'], ['by', 'tender'], ['names'], ['becomes'], ['the'], ['parent'], ['to'], ['a', 'curse.', '', '*****', '', 'And'], ['some'], ['of'], ['you'], ['have'], ['called'], ['me'], ['aloof,', 'and'], ['drunk'], ['with'], ['my'], ['own'], ['aloneness,', '', 'And'], ['you'], ['have'], ['said,'], ['“He'], ['holds'], ['council', 'with'], ['the'], ['trees'], ['of'], ['the'], ['forest,'], ['but'], ['not', 'with'], ['men.', '', 'He'], ['sits'], ['alone'], ['on'], ['hill-tops'], ['and'], ['looks', 'down'], ['upon'], ['our'], ['city.”', '', 'True'], ['it'], ['is'], ['that'], ['I'], ['have'], ['climbed'], ['the'], ['hills', 'and'], ['walked'], ['in'], ['remote'], ['places.', '', 'How'], ['could'], ['I'], ['have'], ['seen'], ['you'], ['save'], ['from'], ['a', 'great'], ['height'], ['or'], ['a'], ['great'], ['distance?', '', 'How'], ['can'], ['one'], ['be'], ['indeed'], ['near'], ['unless'], ['he'], ['be', 'tar?', '', 'And'], ['others'], ['among'], ['you'], ['called'], ['unto'], ['me,'], ['not', 'in'], ['words,'], ['and'], ['they'], ['said,', '', '“Stranger,'], ['stranger,'], ['lover'], ['of', 'unreachable'], ['heights,'], ['why'], ['dwell'], ['you'], ['among', 'the'], ['summits'], ['where'], ['eagles'], ['build', 'their'], ['nests?'], [''], ['seek'], ['you'], ['the', 'unattainable?', '', 'What'], ['storms'], ['would'], ['you'], ['trap'], ['in'], ['your'], ['net,', '', 'And'], ['what'], ['vaporous'], ['birds'], ['do'], ['you'], ['hunt'], ['in', 'the'], ['sky?', '', 'Come'], ['and'], ['be'], ['one'], ['of'], ['us.', '', 'Descend'], ['and'], ['appease'], ['your'], ['hunger'], ['with'], ['our', 'bread'], ['and'], ['quench'], ['your'], ['thirst'], ['with'], ['our', 'wine.”', '', 'In'], ['the'], ['solitude'], ['of'], ['their'], ['souls'], ['they'], ['said', 'these'], ['things;', '', 'But'], ['were'], ['their'], ['solitude'], ['deeper'], ['they', 'would'], ['have'], ['known'], ['that'], ['I'], ['sought'], ['but'], ['the', 'secret'], ['of'], ['your'], ['joy'], ['and'], ['your'], ['pain,', '', 'And'], ['I'], ['hunted'], ['only'], ['your'], ['larger'], ['selves', 'that'], ['walk'], ['the'], ['sky.', '', '*****', '', 'But'], ['the'], ['hunter'], ['was'], ['also'], ['the'], ['hunted;', '', 'For'], ['many'], ['of'], ['my'], ['arrows'], ['left'], ['my'], ['bow'], ['only', 'to'], ['seek'], ['my'], ['own'], ['breast.', '', 'And'], ['the'], ['flier'], ['was'], ['also'], ['the'], ['creeper;', '', 'For'], ['when'], ['my'], ['wings'], ['were'], ['spread'], ['in'], ['the', 'sun'], ['their'], ['shadow'], ['upon'], ['the'], ['earth'], ['was'], ['a', 'turtle.', '', 'And'], ['I'], ['the'], ['believer'], ['was'], ['also'], ['the'], ['doubter;'], ['often'], ['have'], ['I'], ['put'], ['my'], ['finger', 'in'], ['my'], ['own'], ['wound'], ['that'], ['I'], ['might'], ['have'], ['the', 'greater'], ['belief'], ['in'], ['you'], ['and'], ['the'], ['greater', 'knowledge'], ['of'], ['you.', '', '*****', '', 'And'], ['it'], ['is'], ['with'], ['this'], ['belief'], ['and'], ['this', 'knowledge'], ['that'], ['I'], ['say,', '', 'You'], ['are'], ['not'], ['enclosed'], ['within'], ['your'], ['bodies,', 'nor'], ['confined'], ['to'], ['houses'], ['or'], ['fields.', '', 'That'], ['which'], ['is'], ['you'], ['dwells'], ['above'], ['the', 'mountain'], ['and'], ['roves'], ['with'], ['the'], ['wind.', '', 'It'], ['is'], ['not'], ['a'], ['thing'], ['that'], ['crawls'], ['into', 'the'], ['sun'], ['for'], ['warmth'], ['or'], ['digs'], ['holes'], ['into', 'darkness'], ['for'], ['safety,', '', 'But'], ['a'], ['thing'], ['free,'], ['a'], ['spirit'], ['that'], ['envelops', 'the'], ['earth'], ['and'], ['moves'], ['in'], ['the'], ['ether.', '', 'If'], ['these'], ['be'], ['vague'], ['words,'], ['then'], ['seek'], ['not', 'to'], ['clear'], ['them.', '', 'Vague'], ['and'], ['nebulous'], ['is'], ['the'], ['beginning'], ['of', 'all'], ['things,'], ['but'], ['not'], ['their'], ['end,', '', 'And'], ['I'], ['fain'], ['would'], ['have'], ['you'], ['remember'], ['me'], ['as', 'a'], ['beginning.', '', 'Life,'], ['and'], ['all'], ['that'], ['lives,'], ['is'], ['conceived', 'in'], ['the'], ['mist'], ['and'], ['not'], ['in'], ['the'], ['crystal.'], ['who'], ['knows'], ['but'], ['a'], ['crystal'], ['is'], ['mist', 'in'], ['decay?', '', '*****', '', 'This'], ['would'], ['I'], ['have'], ['you'], ['remember'], ['in', 'remembering'], ['me:', '', 'That'], ['which'], ['seems'], ['most'], ['feeble'], ['and', 'bewildered'], ['in'], ['you'], ['is'], ['the'], ['strongest'], ['and', 'most'], ['determined.', '', 'Is'], ['it'], ['not'], ['your'], ['breath'], ['that'], ['has'], ['erected', 'and'], ['hardened'], ['the'], ['structure'], ['of'], ['your', 'bones?', '', 'And'], ['is'], ['it'], ['not'], ['a'], ['dream'], ['which'], ['none'], ['of'], ['you', 'remember'], ['having'], ['dreamt,'], ['that'], ['builded', 'your'], ['city'], ['and'], ['fashioned'], ['all'], ['there'], ['is'], ['in', 'it?', '', 'Could'], ['you'], ['but'], ['see'], ['the'], ['tides'], ['of'], ['that', 'breath'], ['you'], ['would'], ['cease'], ['to'], ['see'], ['all'], ['else,', '', 'And'], ['if'], ['you'], ['could'], ['hear'], ['the'], ['whispering'], ['of', 'the'], ['dream'], ['you'], ['would'], ['hear'], ['no'], ['other'], ['sound.', '', 'But'], ['you'], ['do'], ['not'], ['see,'], ['nor'], ['do'], ['you'], ['hear,'], ['and', 'it'], ['is'], ['well.', '', 'The'], ['veil'], ['that'], ['clouds'], ['your'], ['eyes'], ['shall'], ['be', 'lifted'], ['by'], ['the'], ['hands'], ['that'], ['wove'], ['it,', '', 'And'], ['the'], ['clay'], ['that'], ['fills'], ['your'], ['ears'], ['shall', 'be'], ['pierced'], ['by'], ['those'], ['fingers'], ['that'], ['kneaded', 'it.'], [''], ['you'], ['shall'], ['see.', '', 'And'], ['you'], ['shall'], ['hear.', '', 'Yet'], ['you'], ['shall'], ['not'], ['deplore'], ['having'], ['known', 'blindness,'], ['nor'], ['regret'], ['having'], ['been'], ['deaf.', '', 'For'], ['in'], ['that'], ['day'], ['you'], ['shall'], ['know'], ['the', 'hidden'], ['purposes'], ['in'], ['all'], ['things,', '', 'And'], ['you'], ['shall'], ['bless'], ['darkness'], ['as'], ['you', 'would'], ['bless'], ['light.', '', 'After'], ['saying'], ['these'], ['things'], ['he'], ['looked', 'about'], ['him,'], ['and'], ['he'], ['saw'], ['the'], ['pilot'], ['of'], ['his', 'ship'], ['standing'], ['by'], ['the'], ['helm'], ['and'], ['gazing', 'now'], ['at'], ['the'], ['full'], ['sails'], ['and'], ['now'], ['at'], ['the', 'distance.', '', 'And'], ['he'], ['said:', '', 'Patient,'], ['over'], ['patient,'], ['is'], ['the'], ['captain'], ['of', 'my'], ['ship.', '', 'The'], ['wind'], ['blows,'], ['and'], ['restless'], ['are'], ['the', 'sails;', '', 'Even'], ['the'], ['rudder'], ['begs'], ['direction;', '', 'Yet'], ['quietly'], ['my'], ['captain'], ['awaits'], ['my', 'silence.', '', 'And'], ['these'], ['my'], ['mariners,'], ['who'], ['have'], ['heard', 'the'], ['choir'], ['of'], ['the'], ['greater'], ['sea,'], ['they'], ['too', 'have'], ['heard'], ['me'], ['patiently.'], [''], ['they', 'shall'], ['wait'], ['no'], ['longer.', '', 'I'], ['am'], ['ready.', '', 'The'], ['stream'], ['has'], ['reached'], ['the'], ['sea,'], ['and', 'once'], ['more'], ['the'], ['great'], ['mother'], ['holds'], ['her'], ['son', 'against'], ['her'], ['breast.', '', '*****', '', 'Fare'], ['you'], ['well,'], ['people'], ['of'], ['Orphalese.', '', 'This'], ['day'], ['has'], ['ended.', '', 'It'], ['is'], ['closing'], ['upon'], ['us'], ['even'], ['as'], ['the', 'water-lily'], ['upon'], ['its'], ['own'], ['tomorrow.', '', 'What'], ['was'], ['given'], ['us'], ['here'], ['we'], ['shall'], ['keep,', '', 'And'], ['if'], ['it'], ['suffices'], ['not,'], ['then'], ['again'], ['must', 'we'], ['come'], ['together'], ['and'], ['together'], ['stretch', 'our'], ['hands'], ['unto'], ['the'], ['giver.', '', 'Forget'], ['not'], ['that'], ['I'], ['shall'], ['come'], ['back'], ['to', 'you.', '', 'A'], ['little'], ['while,'], ['and'], ['my'], ['longing'], ['shall', 'gather'], ['dust'], ['and'], ['foam'], ['for'], ['another'], ['body.', '', 'A'], ['little'], ['while,'], ['a'], ['moment'], ['of'], ['rest'], ['upon', 'the'], ['wind,'], ['and'], ['another'], ['woman'], ['shall'], ['bear', 'me.', '', 'Farewell'], ['to'], ['you'], ['and'], ['the'], ['youth'], ['I'], ['have', 'spent'], ['with'], ['you.', '', 'It'], ['was'], ['but'], ['yesterday'], ['we'], ['met'], ['in'], ['a', 'dream.'], [''], ['have'], ['sung'], ['to'], ['me'], ['in'], ['my', 'aloneness,'], ['and'], ['I'], ['of'], ['your'], ['longings'], ['have', 'built'], ['a'], ['tower'], ['in'], ['the'], ['sky.', '', 'But'], ['now'], ['our'], ['sleep'], ['has'], ['fled'], ['and'], ['our'], ['dream', 'is'], ['over,'], ['and'], ['it'], ['is'], ['no'], ['longer'], ['dawn.', '', 'The'], ['noontide'], ['is'], ['upon'], ['us'], ['and'], ['our'], ['half', 'waking'], ['has'], ['turned'], ['to'], ['fuller'], ['day,'], ['and'], ['we', 'must'], ['part.', '', 'If'], ['in'], ['the'], ['twilight'], ['of'], ['memory'], ['we'], ['should', 'meet'], ['once'], ['more,'], ['we'], ['shall'], ['speak'], ['again', 'together'], ['and'], ['you'], ['shall'], ['sing'], ['to'], ['me'], ['a', 'deeper'], ['song.', '', 'And'], ['if'], ['our'], ['hands'], ['should'], ['meet'], ['in'], ['another', 'dream'], ['we'], ['shall'], ['build'], ['another'], ['tower'], ['in', 'the'], ['sky.', '', '*****', '', 'So'], ['saying'], ['he'], ['made'], ['a'], ['signal'], ['to'], ['the', 'seamen,'], ['and'], ['straightway'], ['they'], ['weighed', 'anchor'], ['and'], ['cast'], ['the'], ['ship'], ['loose'], ['from'], ['its', 'moorings,'], ['and'], ['they'], ['moved'], ['eastward.', '', 'And'], ['a'], ['cry'], ['came'], ['from'], ['the'], ['people'], ['as'], ['from'], ['a', 'single'], ['heart,'], ['and'], ['it'], ['rose'], ['into'], ['the'], ['dusk', 'and'], ['was'], ['carried'], ['out'], ['over'], ['the'], ['sea'], ['like'], ['a', 'great'], ['trumpeting.', '', 'Only'], ['Almitra'], ['was'], ['silent,'], ['gazing'], ['after'], ['ship'], ['until'], ['it'], ['had'], ['vanished'], ['into', 'the'], ['mist.', '', 'And'], ['when'], ['all'], ['the'], ['people'], ['were'], ['dispersed', 'she'], ['still'], ['stood'], ['alone'], ['upon'], ['the'], ['sea-wall,', 'remembering'], ['in'], ['her'], ['heart'], ['his'], ['saying,', '', '“A'], ['little'], ['while,'], ['a'], ['moment'], ['of'], ['rest'], ['upon', 'the'], ['wind,'], ['and'], ['another'], ['woman'], ['shall'], ['bear', 'me.”', '', '[Illustration:'], ['0134]', '', '', '', '', '', '', '', '', 'End'], ['of'], ['the'], ['Project'], ['Gutenberg'], ['EBook'], ['of'], ['The'], ['Prophet,'], ['by'], ['Kahlil'], ['Gibran', '', '***'], ['END'], ['OF'], ['THIS'], ['PROJECT'], ['GUTENBERG'], ['EBOOK'], ['THE'], ['PROPHET'], ['***', '', '*****'], ['This'], ['file'], ['should'], ['be'], ['named'], ['58585-0.txt'], ['or'], ['58585-0.zip'], ['*****', 'This'], ['and'], ['all'], ['associated'], ['files'], ['of'], ['various'], ['formats'], ['will'], ['be'], ['found'], ['in:'], ['http://www.gutenberg.org/5/8/5/8/58585/', '', 'Produced'], ['by'], ['David'], ['Widger'], ['from'], ['page'], ['images'], ['generously', 'provided'], ['by'], ['the'], ['Internet'], ['Archive', '', '', 'Updated'], ['editions'], ['will'], ['replace'], ['the'], ['previous'], ['one--the'], ['old'], ['editions'], ['will', 'be'], ['renamed.', '', 'Creating'], ['the'], ['works'], ['from'], ['print'], ['editions'], ['not'], ['protected'], ['by'], ['U.S.'], ['copyright', 'law'], ['means'], ['that'], ['no'], ['one'], ['owns'], ['a'], ['United'], ['States'], ['copyright'], ['in'], ['these'], ['works,', 'so'], ['the'], ['Foundation'], ['(and'], ['you!)'], ['can'], ['copy'], ['and'], ['distribute'], ['it'], ['in'], ['the'], ['United', 'States'], ['without'], ['permission'], ['and'], ['without'], ['paying'], ['copyright', 'royalties.'], ['Special'], ['rules,'], ['set'], ['forth'], ['in'], ['the'], ['General'], ['Terms'], ['of'], ['Use'], ['part', 'of'], ['this'], ['license,'], ['apply'], ['to'], ['copying'], ['and'], ['distributing'], ['Project', 'Gutenberg-tm'], ['electronic'], ['works'], ['to'], ['protect'], ['the'], ['PROJECT'], ['GUTENBERG-tm', 'concept'], ['and'], ['trademark.'], ['Project'], ['Gutenberg'], ['is'], ['a'], ['registered'], ['trademark,', 'and'], ['may'], ['not'], ['be'], ['used'], ['if'], ['you'], ['charge'], ['for'], ['the'], ['eBooks,'], ['unless'], ['you'], ['receive', 'specific'], ['permission.'], ['If'], ['you'], ['do'], ['not'], ['charge'], ['anything'], ['for'], ['copies'], ['of'], ['this', 'eBook,'], ['complying'], ['with'], ['the'], ['rules'], ['is'], ['very'], ['easy.'], ['You'], ['may'], ['use'], ['this'], ['eBook', 'for'], ['nearly'], ['any'], ['purpose'], ['such'], ['as'], ['creation'], ['of'], ['derivative'], ['works,'], ['reports,', 'performances'], ['and'], ['research.'], ['They'], ['may'], ['be'], ['modified'], ['and'], ['printed'], ['and'], ['given', 'away--you'], ['may'], ['do'], ['practically'], ['ANYTHING'], ['in'], ['the'], ['United'], ['States'], ['with'], ['eBooks', 'not'], ['protected'], ['by'], ['U.S.'], ['copyright'], ['law.'], ['Redistribution'], ['is'], ['subject'], ['to'], ['the', 'trademark'], ['license,'], ['especially'], ['commercial'], ['redistribution.', '', 'START:'], ['FULL'], ['LICENSE', '', 'THE'], ['FULL'], ['PROJECT'], ['GUTENBERG'], ['LICENSE', 'PLEASE'], ['READ'], ['THIS'], ['BEFORE'], ['YOU'], ['DISTRIBUTE'], ['OR'], ['USE'], ['THIS'], ['WORK', '', 'To'], ['protect'], ['the'], ['Project'], ['Gutenberg-tm'], ['mission'], ['of'], ['promoting'], ['the'], ['free', 'distribution'], ['of'], ['electronic'], ['works,'], ['by'], ['using'], ['or'], ['distributing'], ['this'], ['work', '(or'], ['any'], ['other'], ['work'], ['associated'], ['in'], ['any'], ['way'], ['with'], ['the'], ['phrase'], ['\"Project', 'Gutenberg\"),'], ['you'], ['agree'], ['to'], ['comply'], ['with'], ['all'], ['the'], ['terms'], ['of'], ['the'], ['Full', 'Project'], ['Gutenberg-tm'], ['License'], ['available'], ['with'], ['this'], ['file'], ['or'], ['online'], ['at', 'www.gutenberg.org/license.', '', 'Section'], ['1.'], ['General'], ['Terms'], ['of'], ['Use'], ['and'], ['Redistributing'], ['Project', 'Gutenberg-tm'], ['electronic'], ['works', '', '1.A.'], ['By'], ['reading'], ['or'], ['using'], ['any'], ['part'], ['of'], ['this'], ['Project'], ['Gutenberg-tm', 'electronic'], ['work,'], ['you'], ['indicate'], ['that'], ['you'], ['have'], ['read,'], ['understand,'], ['agree'], ['to', 'and'], ['accept'], ['all'], ['the'], ['terms'], ['of'], ['this'], ['license'], ['and'], ['intellectual'], ['property', '(trademark/copyright)'], ['agreement.'], ['If'], ['you'], ['do'], ['not'], ['agree'], ['to'], ['abide'], ['by'], ['all', 'the'], ['terms'], ['of'], ['this'], ['agreement,'], ['you'], ['must'], ['cease'], ['using'], ['and'], ['return'], ['or', 'destroy'], ['all'], ['copies'], ['of'], ['Project'], ['Gutenberg-tm'], ['electronic'], ['works'], ['in'], ['your', 'possession.'], ['If'], ['you'], ['paid'], ['a'], ['fee'], ['for'], ['obtaining'], ['a'], ['copy'], ['of'], ['or'], ['access'], ['to'], ['a', 'Project'], ['Gutenberg-tm'], ['electronic'], ['work'], ['and'], ['you'], ['do'], ['not'], ['agree'], ['to'], ['be'], ['bound', 'by'], ['the'], ['terms'], ['of'], ['this'], ['agreement,'], ['you'], ['may'], ['obtain'], ['a'], ['refund'], ['from'], ['the', 'person'], ['or'], ['entity'], ['to'], ['whom'], ['you'], ['paid'], ['the'], ['fee'], ['as'], ['set'], ['forth'], ['in'], ['paragraph', '1.E.8.', '', '1.B.'], ['\"Project'], ['Gutenberg\"'], ['is'], ['a'], ['registered'], ['trademark.'], ['It'], ['may'], ['only'], ['be', 'used'], ['on'], ['or'], ['associated'], ['in'], ['any'], ['way'], ['with'], ['an'], ['electronic'], ['work'], ['by'], ['people'], ['who', 'agree'], ['to'], ['be'], ['bound'], ['by'], ['the'], ['terms'], ['of'], ['this'], ['agreement.'], ['There'], ['are'], ['a'], ['few', 'things'], ['that'], ['you'], ['can'], ['do'], ['with'], ['most'], ['Project'], ['Gutenberg-tm'], ['electronic'], ['works', 'even'], ['without'], ['complying'], ['with'], ['the'], ['full'], ['terms'], ['of'], ['this'], ['agreement.'], ['See', 'paragraph'], ['1.C'], ['below.'], ['There'], ['are'], ['a'], ['lot'], ['of'], ['things'], ['you'], ['can'], ['do'], ['with'], ['Project', 'Gutenberg-tm'], ['electronic'], ['works'], ['if'], ['you'], ['follow'], ['the'], ['terms'], ['of'], ['this', 'agreement'], ['and'], ['help'], ['preserve'], ['free'], ['future'], ['access'], ['to'], ['Project'], ['Gutenberg-tm', 'electronic'], ['works.'], ['See'], ['paragraph'], ['1.E'], ['below.', '', '1.C.'], ['The'], ['Project'], ['Gutenberg'], ['Literary'], ['Archive'], ['Foundation'], ['(\"the', 'Foundation\"'], ['or'], ['PGLAF),'], ['owns'], ['a'], ['compilation'], ['copyright'], ['in'], ['the'], ['collection', 'of'], ['Project'], ['Gutenberg-tm'], ['electronic'], ['works.'], ['Nearly'], ['all'], ['the'], ['individual', 'works'], ['in'], ['the'], ['collection'], ['are'], ['in'], ['the'], ['public'], ['domain'], ['in'], ['the'], ['United', 'States.'], ['If'], ['an'], ['individual'], ['work'], ['is'], ['unprotected'], ['by'], ['copyright'], ['law'], ['in'], ['the', 'United'], ['States'], ['and'], ['you'], ['are'], ['located'], ['in'], ['the'], ['United'], ['States,'], ['we'], ['do'], ['not', 'claim'], ['a'], ['right'], ['to'], ['prevent'], ['you'], ['from'], ['copying,'], ['distributing,'], ['performing,', 'displaying'], ['or'], ['creating'], ['derivative'], ['works'], ['based'], ['on'], ['the'], ['work'], ['as'], ['long'], ['as', 'all'], ['references'], ['to'], ['Project'], ['Gutenberg'], ['are'], ['removed.'], ['Of'], ['course,'], ['we'], ['hope', 'that'], ['you'], ['will'], ['support'], ['the'], ['Project'], ['Gutenberg-tm'], ['mission'], ['of'], ['promoting', 'free'], ['access'], ['to'], ['electronic'], ['works'], ['by'], ['freely'], ['sharing'], ['Project'], ['Gutenberg-tm', 'works'], ['in'], ['compliance'], ['with'], ['the'], ['terms'], ['of'], ['this'], ['agreement'], ['for'], ['keeping'], ['the', 'Project'], ['Gutenberg-tm'], ['name'], ['associated'], ['with'], ['the'], ['work.'], ['You'], ['can'], ['easily', 'comply'], ['with'], ['the'], ['terms'], ['of'], ['this'], ['agreement'], ['by'], ['keeping'], ['this'], ['work'], ['in'], ['the', 'same'], ['format'], ['with'], ['its'], ['attached'], ['full'], ['Project'], ['Gutenberg-tm'], ['License'], ['when', 'you'], ['share'], ['it'], ['without'], ['charge'], ['with'], ['others.', '', '1.D.'], ['The'], ['copyright'], ['laws'], ['of'], ['the'], ['place'], ['where'], ['you'], ['are'], ['located'], ['also'], ['govern', 'what'], ['you'], ['can'], ['do'], ['with'], ['this'], ['work.'], ['Copyright'], ['laws'], ['in'], ['most'], ['countries'], ['are', 'in'], ['a'], ['constant'], ['state'], ['of'], ['change.'], ['If'], ['you'], ['are'], ['outside'], ['the'], ['United'], ['States,', 'check'], ['the'], ['laws'], ['of'], ['your'], ['country'], ['in'], ['addition'], ['to'], ['the'], ['terms'], ['of'], ['this', 'agreement'], ['before'], ['downloading,'], ['copying,'], ['displaying,'], ['performing,', 'distributing'], ['or'], ['creating'], ['derivative'], ['works'], ['based'], ['on'], ['this'], ['work'], ['or'], ['any', 'other'], ['Project'], ['Gutenberg-tm'], ['work.'], ['The'], ['Foundation'], ['makes'], ['no', 'representations'], ['concerning'], ['the'], ['copyright'], ['status'], ['of'], ['any'], ['work'], ['in'], ['any', 'country'], ['outside'], ['the'], ['United'], ['States.', '', '1.E.'], ['Unless'], ['you'], ['have'], ['removed'], ['all'], ['references'], ['to'], ['Project'], ['Gutenberg:', '', '1.E.1.'], ['The'], ['following'], ['sentence,'], ['with'], ['active'], ['links'], ['to,'], ['or'], ['other', 'immediate'], ['access'], ['to,'], ['the'], ['full'], ['Project'], ['Gutenberg-tm'], ['License'], ['must'], ['appear', 'prominently'], ['whenever'], ['any'], ['copy'], ['of'], ['a'], ['Project'], ['Gutenberg-tm'], ['work'], ['(any'], ['work', 'on'], ['which'], ['the'], ['phrase'], ['\"Project'], ['Gutenberg\"'], ['appears,'], ['or'], ['with'], ['which'], ['the', 'phrase'], ['\"Project'], ['Gutenberg\"'], ['is'], ['associated)'], ['is'], ['accessed,'], ['displayed,', 'performed,'], ['viewed,'], ['copied'], ['or'], ['distributed:'], ['This'], ['eBook'], ['is'], ['for'], ['the'], ['use'], ['of'], ['anyone'], ['anywhere'], ['in'], ['the'], ['United'], ['States'], ['and'], ['most'], ['other'], ['parts'], ['of'], ['the'], ['world'], ['at'], ['no'], ['cost'], ['and'], ['with'], ['almost'], ['no'], ['restrictions'], ['whatsoever.'], ['You'], ['may'], ['copy'], ['it,'], ['give'], ['it'], ['away'], ['or'], ['re-use'], ['it'], ['under'], ['the'], ['terms'], ['of'], ['the'], ['Project'], ['Gutenberg'], ['License'], ['included'], ['with'], ['this'], ['eBook'], ['or'], ['online'], ['at'], ['www.gutenberg.org.'], ['If'], ['you'], ['are'], ['not'], ['located'], ['in'], ['the'], ['United'], ['States,'], [\"you'll\"], ['have'], ['to'], ['check'], ['the'], ['laws'], ['of'], ['the'], ['country'], ['where'], ['you'], ['are'], ['located'], ['before'], ['using'], ['this'], ['ebook.', '', '1.E.2.'], ['If'], ['an'], ['individual'], ['Project'], ['Gutenberg-tm'], ['electronic'], ['work'], ['is', 'derived'], ['from'], ['texts'], ['not'], ['protected'], ['by'], ['U.S.'], ['copyright'], ['law'], ['(does'], ['not', 'contain'], ['a'], ['notice'], ['indicating'], ['that'], ['it'], ['is'], ['posted'], ['with'], ['permission'], ['of'], ['the', 'copyright'], ['holder),'], ['the'], ['work'], ['can'], ['be'], ['copied'], ['and'], ['distributed'], ['to'], ['anyone'], ['in', 'the'], ['United'], ['States'], ['without'], ['paying'], ['any'], ['fees'], ['or'], ['charges.'], ['If'], ['you'], ['are', 'redistributing'], ['or'], ['providing'], ['access'], ['to'], ['a'], ['work'], ['with'], ['the'], ['phrase'], ['\"Project', 'Gutenberg\"'], ['associated'], ['with'], ['or'], ['appearing'], ['on'], ['the'], ['work,'], ['you'], ['must'], ['comply', 'either'], ['with'], ['the'], ['requirements'], ['of'], ['paragraphs'], ['1.E.1'], ['through'], ['1.E.7'], ['or', 'obtain'], ['permission'], ['for'], ['the'], ['use'], ['of'], ['the'], ['work'], ['and'], ['the'], ['Project'], ['Gutenberg-tm', 'trademark'], ['as'], ['set'], ['forth'], ['in'], ['paragraphs'], ['1.E.8'], ['or'], ['1.E.9.', '', '1.E.3.'], ['If'], ['an'], ['individual'], ['Project'], ['Gutenberg-tm'], ['electronic'], ['work'], ['is'], ['posted', 'with'], ['the'], ['permission'], ['of'], ['the'], ['copyright'], ['holder,'], ['your'], ['use'], ['and'], ['distribution', 'must'], ['comply'], ['with'], ['both'], ['paragraphs'], ['1.E.1'], ['through'], ['1.E.7'], ['and'], ['any', 'additional'], ['terms'], ['imposed'], ['by'], ['the'], ['copyright'], ['holder.'], ['Additional'], ['terms', 'will'], ['be'], ['linked'], ['to'], ['the'], ['Project'], ['Gutenberg-tm'], ['License'], ['for'], ['all'], ['works', 'posted'], ['with'], ['the'], ['permission'], ['of'], ['the'], ['copyright'], ['holder'], ['found'], ['at'], ['the', 'beginning'], ['of'], ['this'], ['work.', '', '1.E.4.'], ['Do'], ['not'], ['unlink'], ['or'], ['detach'], ['or'], ['remove'], ['the'], ['full'], ['Project'], ['Gutenberg-tm', 'License'], ['terms'], ['from'], ['this'], ['work,'], ['or'], ['any'], ['files'], ['containing'], ['a'], ['part'], ['of'], ['this', 'work'], ['or'], ['any'], ['other'], ['work'], ['associated'], ['with'], ['Project'], ['Gutenberg-tm.', '', '1.E.5.'], ['Do'], ['not'], ['copy,'], ['display,'], ['perform,'], ['distribute'], ['or'], ['redistribute'], ['this', 'electronic'], ['work,'], ['or'], ['any'], ['part'], ['of'], ['this'], ['electronic'], ['work,'], ['without', 'prominently'], ['displaying'], ['the'], ['sentence'], ['set'], ['forth'], ['in'], ['paragraph'], ['1.E.1'], ['with', 'active'], ['links'], ['or'], ['immediate'], ['access'], ['to'], ['the'], ['full'], ['terms'], ['of'], ['the'], ['Project', 'Gutenberg-tm'], ['License.', '', '1.E.6.'], ['You'], ['may'], ['convert'], ['to'], ['and'], ['distribute'], ['this'], ['work'], ['in'], ['any'], ['binary,', 'compressed,'], ['marked'], ['up,'], ['nonproprietary'], ['or'], ['proprietary'], ['form,'], ['including', 'any'], ['word'], ['processing'], ['or'], ['hypertext'], ['form.'], ['However,'], ['if'], ['you'], ['provide'], ['access', 'to'], ['or'], ['distribute'], ['copies'], ['of'], ['a'], ['Project'], ['Gutenberg-tm'], ['work'], ['in'], ['a'], ['format', 'other'], ['than'], ['\"Plain'], ['Vanilla'], ['ASCII\"'], ['or'], ['other'], ['format'], ['used'], ['in'], ['the'], ['official', 'version'], ['posted'], ['on'], ['the'], ['official'], ['Project'], ['Gutenberg-tm'], ['web'], ['site', '(www.gutenberg.org),'], ['you'], ['must,'], ['at'], ['no'], ['additional'], ['cost,'], ['fee'], ['or'], ['expense', 'to'], ['the'], ['user,'], ['provide'], ['a'], ['copy,'], ['a'], ['means'], ['of'], ['exporting'], ['a'], ['copy,'], ['or'], ['a'], ['means', 'of'], ['obtaining'], ['a'], ['copy'], ['upon'], ['request,'], ['of'], ['the'], ['work'], ['in'], ['its'], ['original'], ['\"Plain', 'Vanilla'], ['ASCII\"'], ['or'], ['other'], ['form.'], ['Any'], ['alternate'], ['format'], ['must'], ['include'], ['the', 'full'], ['Project'], ['Gutenberg-tm'], ['License'], ['as'], ['specified'], ['in'], ['paragraph'], ['1.E.1.', '', '1.E.7.'], ['Do'], ['not'], ['charge'], ['a'], ['fee'], ['for'], ['access'], ['to,'], ['viewing,'], ['displaying,', 'performing,'], ['copying'], ['or'], ['distributing'], ['any'], ['Project'], ['Gutenberg-tm'], ['works', 'unless'], ['you'], ['comply'], ['with'], ['paragraph'], ['1.E.8'], ['or'], ['1.E.9.', '', '1.E.8.'], ['You'], ['may'], ['charge'], ['a'], ['reasonable'], ['fee'], ['for'], ['copies'], ['of'], ['or'], ['providing', 'access'], ['to'], ['or'], ['distributing'], ['Project'], ['Gutenberg-tm'], ['electronic'], ['works', 'provided'], ['that', '', '*'], ['You'], ['pay'], ['a'], ['royalty'], ['fee'], ['of'], ['20%'], ['of'], ['the'], ['gross'], ['profits'], ['you'], ['derive'], ['from'], ['the'], ['use'], ['of'], ['Project'], ['Gutenberg-tm'], ['works'], ['calculated'], ['using'], ['the'], ['method'], ['you'], ['already'], ['use'], ['to'], ['calculate'], ['your'], ['applicable'], ['taxes.'], ['The'], ['fee'], ['is'], ['owed'], ['to'], ['the'], ['owner'], ['of'], ['the'], ['Project'], ['Gutenberg-tm'], ['trademark,'], ['but'], ['he'], ['has'], ['agreed'], ['to'], ['donate'], ['royalties'], ['under'], ['this'], ['paragraph'], ['to'], ['the'], ['Project'], ['Gutenberg'], ['Literary'], ['Archive'], ['Foundation.'], ['Royalty'], ['payments'], ['must'], ['be'], ['paid'], ['within'], ['60'], ['days'], ['following'], ['each'], ['date'], ['on'], ['which'], ['you'], ['prepare'], ['(or'], ['are'], ['legally'], ['required'], ['to'], ['prepare)'], ['your'], ['periodic'], ['tax'], ['returns.'], ['Royalty'], ['payments'], ['should'], ['be'], ['clearly'], ['marked'], ['as'], ['such'], ['and'], ['sent'], ['to'], ['the'], ['Project'], ['Gutenberg'], ['Literary'], ['Archive'], ['Foundation'], ['at'], ['the'], ['address'], ['specified'], ['in'], ['Section'], ['4,'], ['\"Information'], ['about'], ['donations'], ['to'], ['the'], ['Project'], ['Gutenberg'], ['Literary'], ['Archive'], ['Foundation.\"', '', '*'], ['You'], ['provide'], ['a'], ['full'], ['refund'], ['of'], ['any'], ['money'], ['paid'], ['by'], ['a'], ['user'], ['who'], ['notifies'], ['you'], ['in'], ['writing'], ['(or'], ['by'], ['e-mail)'], ['within'], ['30'], ['days'], ['of'], ['receipt'], ['that'], ['s/he'], ['does'], ['not'], ['agree'], ['to'], ['the'], ['terms'], ['of'], ['the'], ['full'], ['Project'], ['Gutenberg-tm'], ['License.'], ['You'], ['must'], ['require'], ['such'], ['a'], ['user'], ['to'], ['return'], ['or'], ['destroy'], ['all'], ['copies'], ['of'], ['the'], ['works'], ['possessed'], ['in'], ['a'], ['physical'], ['medium'], ['and'], ['discontinue'], ['all'], ['use'], ['of'], ['and'], ['all'], ['access'], ['to'], ['other'], ['copies'], ['of'], ['Project'], ['Gutenberg-tm'], ['works.', '', '*'], ['You'], ['provide,'], ['in'], ['accordance'], ['with'], ['paragraph'], ['1.F.3,'], ['a'], ['full'], ['refund'], ['of'], ['any'], ['money'], ['paid'], ['for'], ['a'], ['work'], ['or'], ['a'], ['replacement'], ['copy,'], ['if'], ['a'], ['defect'], ['in'], ['the'], ['electronic'], ['work'], ['is'], ['discovered'], ['and'], ['reported'], ['to'], ['you'], ['within'], ['90'], ['days'], ['of'], ['receipt'], ['of'], ['the'], ['work.', '', '*'], ['You'], ['comply'], ['with'], ['all'], ['other'], ['terms'], ['of'], ['this'], ['agreement'], ['for'], ['free'], ['distribution'], ['of'], ['Project'], ['Gutenberg-tm'], ['works.', '', '1.E.9.'], ['If'], ['you'], ['wish'], ['to'], ['charge'], ['a'], ['fee'], ['or'], ['distribute'], ['a'], ['Project', 'Gutenberg-tm'], ['electronic'], ['work'], ['or'], ['group'], ['of'], ['works'], ['on'], ['different'], ['terms'], ['than', 'are'], ['set'], ['forth'], ['in'], ['this'], ['agreement,'], ['you'], ['must'], ['obtain'], ['permission'], ['in'], ['writing', 'from'], ['both'], ['the'], ['Project'], ['Gutenberg'], ['Literary'], ['Archive'], ['Foundation'], ['and'], ['The', 'Project'], ['Gutenberg'], ['Trademark'], ['LLC,'], ['the'], ['owner'], ['of'], ['the'], ['Project'], ['Gutenberg-tm', 'trademark.'], ['Contact'], ['the'], ['Foundation'], ['as'], ['set'], ['forth'], ['in'], ['Section'], ['3'], ['below.', '', '1.F.', '', '1.F.1.'], ['Project'], ['Gutenberg'], ['volunteers'], ['and'], ['employees'], ['expend'], ['considerable', 'effort'], ['to'], ['identify,'], ['do'], ['copyright'], ['research'], ['on,'], ['transcribe'], ['and'], ['proofread', 'works'], ['not'], ['protected'], ['by'], ['U.S.'], ['copyright'], ['law'], ['in'], ['creating'], ['the'], ['Project', 'Gutenberg-tm'], ['collection.'], ['Despite'], ['these'], ['efforts,'], ['Project'], ['Gutenberg-tm', 'electronic'], ['works,'], ['and'], ['the'], ['medium'], ['on'], ['which'], ['they'], ['may'], ['be'], ['stored,'], ['may', 'contain'], ['\"Defects,\"'], ['such'], ['as,'], ['but'], ['not'], ['limited'], ['to,'], ['incomplete,'], ['inaccurate', 'or'], ['corrupt'], ['data,'], ['transcription'], ['errors,'], ['a'], ['copyright'], ['or'], ['other', 'intellectual'], ['property'], ['infringement,'], ['a'], ['defective'], ['or'], ['damaged'], ['disk'], ['or', 'other'], ['medium,'], ['a'], ['computer'], ['virus,'], ['or'], ['computer'], ['codes'], ['that'], ['damage'], ['or', 'cannot'], ['be'], ['read'], ['by'], ['your'], ['equipment.', '', '1.F.2.'], ['LIMITED'], ['WARRANTY,'], ['DISCLAIMER'], ['OF'], ['DAMAGES'], ['-'], ['Except'], ['for'], ['the'], ['\"Right', 'of'], ['Replacement'], ['or'], ['Refund\"'], ['described'], ['in'], ['paragraph'], ['1.F.3,'], ['the'], ['Project', 'Gutenberg'], ['Literary'], ['Archive'], ['Foundation,'], ['the'], ['owner'], ['of'], ['the'], ['Project', 'Gutenberg-tm'], ['trademark,'], ['and'], ['any'], ['other'], ['party'], ['distributing'], ['a'], ['Project', 'Gutenberg-tm'], ['electronic'], ['work'], ['under'], ['this'], ['agreement,'], ['disclaim'], ['all', 'liability'], ['to'], ['you'], ['for'], ['damages,'], ['costs'], ['and'], ['expenses,'], ['including'], ['legal', 'fees.'], ['YOU'], ['AGREE'], ['THAT'], ['YOU'], ['HAVE'], ['NO'], ['REMEDIES'], ['FOR'], ['NEGLIGENCE,'], ['STRICT', 'LIABILITY,'], ['BREACH'], ['OF'], ['WARRANTY'], ['OR'], ['BREACH'], ['OF'], ['CONTRACT'], ['EXCEPT'], ['THOSE', 'PROVIDED'], ['IN'], ['PARAGRAPH'], ['1.F.3.'], ['YOU'], ['AGREE'], ['THAT'], ['THE'], ['FOUNDATION,'], ['THE', 'TRADEMARK'], ['OWNER,'], ['AND'], ['ANY'], ['DISTRIBUTOR'], ['UNDER'], ['THIS'], ['AGREEMENT'], ['WILL'], ['NOT'], ['BE', 'LIABLE'], ['TO'], ['YOU'], ['FOR'], ['ACTUAL,'], ['DIRECT,'], ['INDIRECT,'], ['CONSEQUENTIAL,'], ['PUNITIVE'], ['OR', 'INCIDENTAL'], ['DAMAGES'], ['EVEN'], ['IF'], ['YOU'], ['GIVE'], ['NOTICE'], ['OF'], ['THE'], ['POSSIBILITY'], ['OF'], ['SUCH', 'DAMAGE.', '', '1.F.3.'], ['LIMITED'], ['RIGHT'], ['OF'], ['REPLACEMENT'], ['OR'], ['REFUND'], ['-'], ['If'], ['you'], ['discover'], ['a', 'defect'], ['in'], ['this'], ['electronic'], ['work'], ['within'], ['90'], ['days'], ['of'], ['receiving'], ['it,'], ['you'], ['can', 'receive'], ['a'], ['refund'], ['of'], ['the'], ['money'], ['(if'], ['any)'], ['you'], ['paid'], ['for'], ['it'], ['by'], ['sending'], ['a', 'written'], ['explanation'], ['to'], ['the'], ['person'], ['you'], ['received'], ['the'], ['work'], ['from.'], ['If'], ['you', 'received'], ['the'], ['work'], ['on'], ['a'], ['physical'], ['medium,'], ['you'], ['must'], ['return'], ['the'], ['medium', 'with'], ['your'], ['written'], ['explanation.'], ['The'], ['person'], ['or'], ['entity'], ['that'], ['provided'], ['you', 'with'], ['the'], ['defective'], ['work'], ['may'], ['elect'], ['to'], ['provide'], ['a'], ['replacement'], ['copy'], ['in', 'lieu'], ['of'], ['a'], ['refund.'], ['If'], ['you'], ['received'], ['the'], ['work'], ['electronically,'], ['the'], ['person', 'or'], ['entity'], ['providing'], ['it'], ['to'], ['you'], ['may'], ['choose'], ['to'], ['give'], ['you'], ['a'], ['second', 'opportunity'], ['to'], ['receive'], ['the'], ['work'], ['electronically'], ['in'], ['lieu'], ['of'], ['a'], ['refund.'], ['If', 'the'], ['second'], ['copy'], ['is'], ['also'], ['defective,'], ['you'], ['may'], ['demand'], ['a'], ['refund'], ['in'], ['writing', 'without'], ['further'], ['opportunities'], ['to'], ['fix'], ['the'], ['problem.', '', '1.F.4.'], ['Except'], ['for'], ['the'], ['limited'], ['right'], ['of'], ['replacement'], ['or'], ['refund'], ['set'], ['forth', 'in'], ['paragraph'], ['1.F.3,'], ['this'], ['work'], ['is'], ['provided'], ['to'], ['you'], [\"'AS-IS',\"], ['WITH'], ['NO', 'OTHER'], ['WARRANTIES'], ['OF'], ['ANY'], ['KIND,'], ['EXPRESS'], ['OR'], ['IMPLIED,'], ['INCLUDING'], ['BUT'], ['NOT', 'LIMITED'], ['TO'], ['WARRANTIES'], ['OF'], ['MERCHANTABILITY'], ['OR'], ['FITNESS'], ['FOR'], ['ANY'], ['PURPOSE.', '', '1.F.5.'], ['Some'], ['states'], ['do'], ['not'], ['allow'], ['disclaimers'], ['of'], ['certain'], ['implied', 'warranties'], ['or'], ['the'], ['exclusion'], ['or'], ['limitation'], ['of'], ['certain'], ['types'], ['of', 'damages.'], ['If'], ['any'], ['disclaimer'], ['or'], ['limitation'], ['set'], ['forth'], ['in'], ['this'], ['agreement', 'violates'], ['the'], ['law'], ['of'], ['the'], ['state'], ['applicable'], ['to'], ['this'], ['agreement,'], ['the', 'agreement'], ['shall'], ['be'], ['interpreted'], ['to'], ['make'], ['the'], ['maximum'], ['disclaimer'], ['or', 'limitation'], ['permitted'], ['by'], ['the'], ['applicable'], ['state'], ['law.'], ['The'], ['invalidity'], ['or', 'unenforceability'], ['of'], ['any'], ['provision'], ['of'], ['this'], ['agreement'], ['shall'], ['not'], ['void'], ['the', 'remaining'], ['provisions.', '', '1.F.6.'], ['INDEMNITY'], ['-'], ['You'], ['agree'], ['to'], ['indemnify'], ['and'], ['hold'], ['the'], ['Foundation,'], ['the', 'trademark'], ['owner,'], ['any'], ['agent'], ['or'], ['employee'], ['of'], ['the'], ['Foundation,'], ['anyone', 'providing'], ['copies'], ['of'], ['Project'], ['Gutenberg-tm'], ['electronic'], ['works'], ['in', 'accordance'], ['with'], ['this'], ['agreement,'], ['and'], ['any'], ['volunteers'], ['associated'], ['with'], ['the', 'production,'], ['promotion'], ['and'], ['distribution'], ['of'], ['Project'], ['Gutenberg-tm', 'electronic'], ['works,'], ['harmless'], ['from'], ['all'], ['liability,'], ['costs'], ['and'], ['expenses,', 'including'], ['legal'], ['fees,'], ['that'], ['arise'], ['directly'], ['or'], ['indirectly'], ['from'], ['any'], ['of', 'the'], ['following'], ['which'], ['you'], ['do'], ['or'], ['cause'], ['to'], ['occur:'], ['(a)'], ['distribution'], ['of'], ['this', 'or'], ['any'], ['Project'], ['Gutenberg-tm'], ['work,'], ['(b)'], ['alteration,'], ['modification,'], ['or', 'additions'], ['or'], ['deletions'], ['to'], ['any'], ['Project'], ['Gutenberg-tm'], ['work,'], ['and'], ['(c)'], ['any', 'Defect'], ['you'], ['cause.', '', 'Section'], ['2.'], ['Information'], ['about'], ['the'], ['Mission'], ['of'], ['Project'], ['Gutenberg-tm', '', 'Project'], ['Gutenberg-tm'], ['is'], ['synonymous'], ['with'], ['the'], ['free'], ['distribution'], ['of', 'electronic'], ['works'], ['in'], ['formats'], ['readable'], ['by'], ['the'], ['widest'], ['variety'], ['of', 'computers'], ['including'], ['obsolete,'], ['old,'], ['middle-aged'], ['and'], ['new'], ['computers.'], ['It', 'exists'], ['because'], ['of'], ['the'], ['efforts'], ['of'], ['hundreds'], ['of'], ['volunteers'], ['and'], ['donations', 'from'], ['people'], ['in'], ['all'], ['walks'], ['of'], ['life.', '', 'Volunteers'], ['and'], ['financial'], ['support'], ['to'], ['provide'], ['volunteers'], ['with'], ['the', 'assistance'], ['they'], ['need'], ['are'], ['critical'], ['to'], ['reaching'], ['Project'], [\"Gutenberg-tm's\", 'goals'], ['and'], ['ensuring'], ['that'], ['the'], ['Project'], ['Gutenberg-tm'], ['collection'], ['will', 'remain'], ['freely'], ['available'], ['for'], ['generations'], ['to'], ['come.'], ['In'], ['2001,'], ['the'], ['Project', 'Gutenberg'], ['Literary'], ['Archive'], ['Foundation'], ['was'], ['created'], ['to'], ['provide'], ['a'], ['secure', 'and'], ['permanent'], ['future'], ['for'], ['Project'], ['Gutenberg-tm'], ['and'], ['future', 'generations.'], ['To'], ['learn'], ['more'], ['about'], ['the'], ['Project'], ['Gutenberg'], ['Literary', 'Archive'], ['Foundation'], ['and'], ['how'], ['your'], ['efforts'], ['and'], ['donations'], ['can'], ['help,'], ['see', 'Sections'], ['3'], ['and'], ['4'], ['and'], ['the'], ['Foundation'], ['information'], ['page'], ['at', 'www.gutenberg.org'], ['Section'], ['3.'], ['Information'], ['about'], ['the'], ['Project'], ['Gutenberg', 'Literary'], ['Archive'], ['Foundation', '', 'The'], ['Project'], ['Gutenberg'], ['Literary'], ['Archive'], ['Foundation'], ['is'], ['a'], ['non'], ['profit', '501(c)(3)'], ['educational'], ['corporation'], ['organized'], ['under'], ['the'], ['laws'], ['of'], ['the', 'state'], ['of'], ['Mississippi'], ['and'], ['granted'], ['tax'], ['exempt'], ['status'], ['by'], ['the'], ['Internal', 'Revenue'], ['Service.'], ['The'], [\"Foundation's\"], ['EIN'], ['or'], ['federal'], ['tax'], ['identification', 'number'], ['is'], ['64-6221541.'], ['Contributions'], ['to'], ['the'], ['Project'], ['Gutenberg'], ['Literary', 'Archive'], ['Foundation'], ['are'], ['tax'], ['deductible'], ['to'], ['the'], ['full'], ['extent'], ['permitted'], ['by', 'U.S.'], ['federal'], ['laws'], ['and'], ['your'], [\"state's\"], ['laws.', '', 'The'], [\"Foundation's\"], ['principal'], ['office'], ['is'], ['in'], ['Fairbanks,'], ['Alaska,'], ['with'], ['the', 'mailing'], ['address:'], ['PO'], ['Box'], ['750175,'], ['Fairbanks,'], ['AK'], ['99775,'], ['but'], ['its', 'volunteers'], ['and'], ['employees'], ['are'], ['scattered'], ['throughout'], ['numerous', 'locations.'], ['Its'], ['business'], ['office'], ['is'], ['located'], ['at'], ['809'], ['North'], ['1500'], ['West,'], ['Salt', 'Lake'], ['City,'], ['UT'], ['84116,'], ['(801)'], ['596-1887.'], ['Email'], ['contact'], ['links'], ['and'], ['up'], ['to', 'date'], ['contact'], ['information'], ['can'], ['be'], ['found'], ['at'], ['the'], [\"Foundation's\"], ['web'], ['site'], ['and', 'official'], ['page'], ['at'], ['www.gutenberg.org/contact', '', 'For'], ['additional'], ['contact'], ['information:'], ['Dr.'], ['Gregory'], ['B.'], ['Newby'], ['Chief'], ['Executive'], ['and'], ['Director'], ['gbnewby@pglaf.org', '', 'Section'], ['4.'], ['Information'], ['about'], ['Donations'], ['to'], ['the'], ['Project'], ['Gutenberg', 'Literary'], ['Archive'], ['Foundation', '', 'Project'], ['Gutenberg-tm'], ['depends'], ['upon'], ['and'], ['cannot'], ['survive'], ['without'], ['wide', 'spread'], ['public'], ['support'], ['and'], ['donations'], ['to'], ['carry'], ['out'], ['its'], ['mission'], ['of', 'increasing'], ['the'], ['number'], ['of'], ['public'], ['domain'], ['and'], ['licensed'], ['works'], ['that'], ['can'], ['be', 'freely'], ['distributed'], ['in'], ['machine'], ['readable'], ['form'], ['accessible'], ['by'], ['the'], ['widest', 'array'], ['of'], ['equipment'], ['including'], ['outdated'], ['equipment.'], ['Many'], ['small'], ['donations', '($1'], ['to'], ['$5,000)'], ['are'], ['particularly'], ['important'], ['to'], ['maintaining'], ['tax'], ['exempt', 'status'], ['with'], ['the'], ['IRS.', '', 'The'], ['Foundation'], ['is'], ['committed'], ['to'], ['complying'], ['with'], ['the'], ['laws'], ['regulating', 'charities'], ['and'], ['charitable'], ['donations'], ['in'], ['all'], ['50'], ['states'], ['of'], ['the'], ['United', 'States.'], ['Compliance'], ['requirements'], ['are'], ['not'], ['uniform'], ['and'], ['it'], ['takes'], ['a', 'considerable'], ['effort,'], ['much'], ['paperwork'], ['and'], ['many'], ['fees'], ['to'], ['meet'], ['and'], ['keep'], ['up', 'with'], ['these'], ['requirements.'], ['We'], ['do'], ['not'], ['solicit'], ['donations'], ['in'], ['locations', 'where'], ['we'], ['have'], ['not'], ['received'], ['written'], ['confirmation'], ['of'], ['compliance.'], ['To'], ['SEND', 'DONATIONS'], ['or'], ['determine'], ['the'], ['status'], ['of'], ['compliance'], ['for'], ['any'], ['particular', 'state'], ['visit'], ['www.gutenberg.org/donate', '', 'While'], ['we'], ['cannot'], ['and'], ['do'], ['not'], ['solicit'], ['contributions'], ['from'], ['states'], ['where'], ['we', 'have'], ['not'], ['met'], ['the'], ['solicitation'], ['requirements,'], ['we'], ['know'], ['of'], ['no'], ['prohibition', 'against'], ['accepting'], ['unsolicited'], ['donations'], ['from'], ['donors'], ['in'], ['such'], ['states'], ['who', 'approach'], ['us'], ['with'], ['offers'], ['to'], ['donate.', '', 'International'], ['donations'], ['are'], ['gratefully'], ['accepted,'], ['but'], ['we'], ['cannot'], ['make', 'any'], ['statements'], ['concerning'], ['tax'], ['treatment'], ['of'], ['donations'], ['received'], ['from', 'outside'], ['the'], ['United'], ['States.'], ['U.S.'], ['laws'], ['alone'], ['swamp'], ['our'], ['small'], ['staff.', '', 'Please'], ['check'], ['the'], ['Project'], ['Gutenberg'], ['Web'], ['pages'], ['for'], ['current'], ['donation', 'methods'], ['and'], ['addresses.'], ['Donations'], ['are'], ['accepted'], ['in'], ['a'], ['number'], ['of'], ['other', 'ways'], ['including'], ['checks,'], ['online'], ['payments'], ['and'], ['credit'], ['card'], ['donations.'], ['To', 'donate,'], ['please'], ['visit:'], ['www.gutenberg.org/donate', '', 'Section'], ['5.'], ['General'], ['Information'], ['About'], ['Project'], ['Gutenberg-tm'], ['electronic'], ['works.', '', 'Professor'], ['Michael'], ['S.'], ['Hart'], ['was'], ['the'], ['originator'], ['of'], ['the'], ['Project', 'Gutenberg-tm'], ['concept'], ['of'], ['a'], ['library'], ['of'], ['electronic'], ['works'], ['that'], ['could'], ['be', 'freely'], ['shared'], ['with'], ['anyone.'], ['For'], ['forty'], ['years,'], ['he'], ['produced'], ['and', 'distributed'], ['Project'], ['Gutenberg-tm'], ['eBooks'], ['with'], ['only'], ['a'], ['loose'], ['network'], ['of', 'volunteer'], ['support.', '', 'Project'], ['Gutenberg-tm'], ['eBooks'], ['are'], ['often'], ['created'], ['from'], ['several'], ['printed', 'editions,'], ['all'], ['of'], ['which'], ['are'], ['confirmed'], ['as'], ['not'], ['protected'], ['by'], ['copyright'], ['in', 'the'], ['U.S.'], ['unless'], ['a'], ['copyright'], ['notice'], ['is'], ['included.'], ['Thus,'], ['we'], ['do'], ['not', 'necessarily'], ['keep'], ['eBooks'], ['in'], ['compliance'], ['with'], ['any'], ['particular'], ['paper', 'edition.', '', 'Most'], ['people'], ['start'], ['at'], ['our'], ['Web'], ['site'], ['which'], ['has'], ['the'], ['main'], ['PG'], ['search', 'facility:'], ['www.gutenberg.org', '', 'This'], ['Web'], ['site'], ['includes'], ['information'], ['about'], ['Project'], ['Gutenberg-tm,', 'including'], ['how'], ['to'], ['make'], ['donations'], ['to'], ['the'], ['Project'], ['Gutenberg'], ['Literary', 'Archive'], ['Foundation,'], ['how'], ['to'], ['help'], ['produce'], ['our'], ['new'], ['eBooks,'], ['and'], ['how'], ['to', 'subscribe'], ['to'], ['our'], ['email'], ['newsletter'], ['to'], ['hear'], ['about'], ['new'], ['eBooks.']]\n" + ] + } + ], "source": [ - "# your code here" + "prophet_line = str(prophet_reference)\n", + "\n", + "prophet_line = (list(map(line_break,prophet_reference)))\n", + "print(prophet_line)\n" ] }, { @@ -172,11 +212,11 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "prophet_flat = [x for i in prophet_line for x in i]\n" ] }, { @@ -190,28 +230,1034 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['PROPHET',\n", + " '',\n", + " '|Almustafa,',\n", + " 'chosen',\n", + " 'beloved,',\n", + " 'who',\n", + " 'was',\n", + " 'dawn',\n", + " 'unto',\n", + " 'his',\n", + " 'own',\n", + " 'day,',\n", + " 'had',\n", + " 'waited',\n", + " 'twelve',\n", + " 'years',\n", + " 'in',\n", + " 'city',\n", + " 'of',\n", + " 'Orphalese',\n", + " 'for',\n", + " 'his',\n", + " 'ship',\n", + " 'that',\n", + " 'was',\n", + " 'to',\n", + " 'return',\n", + " 'bear',\n", + " 'him',\n", + " 'back',\n", + " 'to',\n", + " 'isle',\n", + " 'of',\n", + " 'his',\n", + " 'birth.',\n", + " '',\n", + " 'And',\n", + " 'in',\n", + " 'twelfth',\n", + " 'year,',\n", + " 'on',\n", + " 'seventh',\n", + " 'day',\n", + " 'of',\n", + " 'Ielool,',\n", + " 'month',\n", + " 'of',\n", + " 'reaping,',\n", + " 'he',\n", + " 'climbed',\n", + " 'hill',\n", + " 'without',\n", + " 'city',\n", + " 'walls',\n", + " 'looked',\n", + " 'seaward;',\n", + " 'he',\n", + " 'beheld',\n", + " 'his',\n", + " 'ship',\n", + " 'coming',\n", + " 'with',\n", + " 'mist.',\n", + " '',\n", + " 'Then',\n", + " 'gates',\n", + " 'of',\n", + " 'his',\n", + " 'heart',\n", + " 'were',\n", + " 'flung',\n", + " 'open,',\n", + " 'his',\n", + " 'joy',\n", + " 'flew',\n", + " 'far',\n", + " 'over',\n", + " 'sea.',\n", + " 'And',\n", + " 'he',\n", + " 'closed',\n", + " 'his',\n", + " 'eyes',\n", + " 'prayed',\n", + " 'in',\n", + " 'silences',\n", + " 'of',\n", + " 'his',\n", + " 'soul.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'But',\n", + " 'as',\n", + " 'he',\n", + " 'descended',\n", + " 'hill,',\n", + " 'sadness',\n", + " 'came',\n", + " 'upon',\n", + " 'him,',\n", + " 'he',\n", + " 'thought',\n", + " 'in',\n", + " 'his',\n", + " 'heart:',\n", + " '',\n", + " 'How',\n", + " 'shall',\n", + " 'I',\n", + " 'go',\n", + " 'in',\n", + " 'peace',\n", + " 'without',\n", + " 'sorrow?',\n", + " 'Nay,',\n", + " 'not',\n", + " 'without',\n", + " 'wound',\n", + " 'in',\n", + " 'spirit',\n", + " 'shall',\n", + " 'I',\n", + " 'leave',\n", + " 'this',\n", + " 'city.',\n", + " '',\n", + " 'days',\n", + " 'of',\n", + " 'pain',\n", + " 'I',\n", + " 'have',\n", + " 'spent',\n", + " 'within',\n", + " 'its',\n", + " 'walls,',\n", + " 'long',\n", + " 'were',\n", + " 'nights',\n", + " 'of',\n", + " 'aloneness;',\n", + " 'who',\n", + " 'can',\n", + " 'depart',\n", + " 'from',\n", + " 'his',\n", + " 'pain',\n", + " 'his',\n", + " 'aloneness',\n", + " 'without',\n", + " 'regret?',\n", + " '',\n", + " 'Too',\n", + " 'many',\n", + " 'fragments',\n", + " 'of',\n", + " 'spirit',\n", + " 'have',\n", + " 'I',\n", + " 'scattered',\n", + " 'in',\n", + " 'these',\n", + " 'streets,',\n", + " 'too',\n", + " 'many',\n", + " 'are',\n", + " 'children',\n", + " 'of',\n", + " 'my',\n", + " 'longing',\n", + " 'that',\n", + " 'walk',\n", + " 'naked',\n", + " 'among',\n", + " 'these',\n", + " 'hills,',\n", + " 'I',\n", + " 'cannot',\n", + " 'withdraw',\n", + " 'from',\n", + " 'them',\n", + " 'without',\n", + " 'burden',\n", + " 'ache.',\n", + " '',\n", + " 'It',\n", + " 'is',\n", + " 'not',\n", + " 'garment',\n", + " 'I',\n", + " 'cast',\n", + " 'off',\n", + " 'this',\n", + " 'day,',\n", + " 'but',\n", + " 'skin',\n", + " 'that',\n", + " 'I',\n", + " 'tear',\n", + " 'with',\n", + " 'my',\n", + " 'own',\n", + " 'hands.',\n", + " '',\n", + " 'Nor',\n", + " 'is',\n", + " 'it',\n", + " 'thought',\n", + " 'I',\n", + " 'leave',\n", + " 'behind',\n", + " 'me,',\n", + " 'but',\n", + " 'heart',\n", + " 'made',\n", + " 'sweet',\n", + " 'with',\n", + " 'hunger',\n", + " 'with',\n", + " 'thirst.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'Yet',\n", + " 'I',\n", + " 'cannot',\n", + " 'tarry',\n", + " 'longer.',\n", + " '',\n", + " 'The',\n", + " 'sea',\n", + " 'that',\n", + " 'calls',\n", + " 'all',\n", + " 'things',\n", + " 'unto',\n", + " 'her',\n", + " 'calls',\n", + " 'me,',\n", + " 'I',\n", + " 'must',\n", + " 'embark.',\n", + " '',\n", + " 'For',\n", + " 'to',\n", + " 'stay,',\n", + " 'though',\n", + " 'hours',\n", + " 'burn',\n", + " 'in',\n", + " 'night,',\n", + " 'is',\n", + " 'to',\n", + " 'freeze',\n", + " 'crystallize',\n", + " 'be',\n", + " 'bound',\n", + " 'in',\n", + " 'mould.',\n", + " '',\n", + " 'Fain',\n", + " 'would',\n", + " 'I',\n", + " 'take',\n", + " 'with',\n", + " 'me',\n", + " 'all',\n", + " 'that',\n", + " 'is',\n", + " 'here.',\n", + " 'But',\n", + " 'how',\n", + " 'shall',\n", + " 'I?',\n", + " '',\n", + " 'A',\n", + " 'voice',\n", + " 'cannot',\n", + " 'carry',\n", + " 'tongue',\n", + " 'lips',\n", + " 'that',\n", + " 'gave',\n", + " 'it',\n", + " 'wings.',\n", + " 'Alone',\n", + " 'must',\n", + " 'it',\n", + " 'seek',\n", + " 'ether.',\n", + " '',\n", + " 'And',\n", + " 'alone',\n", + " 'without',\n", + " 'his',\n", + " 'nest',\n", + " 'shall',\n", + " 'eagle',\n", + " 'fly',\n", + " 'across',\n", + " 'sun.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'Now',\n", + " 'when',\n", + " 'he',\n", + " 'reached',\n", + " 'foot',\n", + " 'of',\n", + " 'hill,',\n", + " 'he',\n", + " 'turned',\n", + " 'again',\n", + " 'towards',\n", + " 'sea,',\n", + " 'he',\n", + " 'saw',\n", + " 'his',\n", + " 'ship',\n", + " 'approaching',\n", + " 'harbour,',\n", + " 'upon',\n", + " 'her',\n", + " 'prow',\n", + " 'mariners,',\n", + " 'men',\n", + " 'of',\n", + " 'his',\n", + " 'own',\n", + " 'land.',\n", + " '',\n", + " 'And',\n", + " 'his',\n", + " 'soul',\n", + " 'cried',\n", + " 'out',\n", + " 'to',\n", + " 'them,',\n", + " 'he',\n", + " 'said:',\n", + " '',\n", + " 'Sons',\n", + " 'of',\n", + " 'my',\n", + " 'ancient',\n", + " 'mother,',\n", + " 'you',\n", + " 'riders',\n", + " 'of',\n", + " 'tides,',\n", + " '',\n", + " 'How',\n", + " 'often',\n", + " 'have',\n", + " 'you',\n", + " 'sailed',\n", + " 'in',\n", + " 'my',\n", + " 'dreams.',\n", + " 'And',\n", + " 'now',\n", + " 'you',\n", + " 'come',\n", + " 'in',\n", + " 'my',\n", + " 'awakening,',\n", + " 'which',\n", + " 'is',\n", + " 'my',\n", + " 'deeper',\n", + " 'dream.',\n", + " '',\n", + " 'Ready',\n", + " 'am',\n", + " 'I',\n", + " 'to',\n", + " 'go,',\n", + " 'my',\n", + " 'eagerness',\n", + " 'with',\n", + " 'sails',\n", + " 'full',\n", + " 'set',\n", + " 'awaits',\n", + " 'wind.',\n", + " '',\n", + " 'Only',\n", + " 'another',\n", + " 'breath',\n", + " 'will',\n", + " 'I',\n", + " 'breathe',\n", + " 'in',\n", + " 'this',\n", + " 'still',\n", + " 'air,',\n", + " 'only',\n", + " 'another',\n", + " 'loving',\n", + " 'look',\n", + " 'cast',\n", + " 'backward,',\n", + " '',\n", + " 'And',\n", + " 'then',\n", + " 'I',\n", + " 'shall',\n", + " 'stand',\n", + " 'among',\n", + " 'you,',\n", + " 'seafarer',\n", + " 'among',\n", + " 'seafarers.',\n", + " '',\n", + " 'you,',\n", + " 'vast',\n", + " 'sea,',\n", + " 'sleepless',\n", + " 'mother,',\n", + " '',\n", + " 'Who',\n", + " 'alone',\n", + " 'are',\n", + " 'peace',\n", + " 'freedom',\n", + " 'to',\n", + " 'river',\n", + " 'stream,',\n", + " '',\n", + " 'Only',\n", + " 'another',\n", + " 'winding',\n", + " 'will',\n", + " 'this',\n", + " 'stream',\n", + " 'make,',\n", + " 'only',\n", + " 'another',\n", + " 'murmur',\n", + " 'in',\n", + " 'this',\n", + " 'glade,',\n", + " '',\n", + " 'And',\n", + " 'then',\n", + " 'shall',\n", + " 'I',\n", + " 'come',\n", + " 'to',\n", + " 'you,',\n", + " 'boundless',\n", + " 'drop',\n", + " 'to',\n", + " 'boundless',\n", + " 'ocean.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'And',\n", + " 'as',\n", + " 'he',\n", + " 'walked',\n", + " 'he',\n", + " 'saw',\n", + " 'from',\n", + " 'afar',\n", + " 'men',\n", + " 'women',\n", + " 'leaving',\n", + " 'their',\n", + " 'fields',\n", + " 'their',\n", + " 'vineyards',\n", + " 'hastening',\n", + " 'towards',\n", + " 'city',\n", + " 'gates.',\n", + " '',\n", + " 'And',\n", + " 'he',\n", + " 'heard',\n", + " 'their',\n", + " 'voices',\n", + " 'calling',\n", + " 'his',\n", + " 'name,',\n", + " 'shouting',\n", + " 'from',\n", + " 'field',\n", + " 'to',\n", + " 'field',\n", + " 'telling',\n", + " 'one',\n", + " 'another',\n", + " 'of',\n", + " 'coming',\n", + " 'of',\n", + " 'his',\n", + " 'ship.',\n", + " '',\n", + " 'And',\n", + " 'he',\n", + " 'said',\n", + " 'to',\n", + " 'himself:',\n", + " '',\n", + " 'Shall',\n", + " 'day',\n", + " 'of',\n", + " 'parting',\n", + " 'be',\n", + " 'day',\n", + " 'of',\n", + " 'gathering?',\n", + " '',\n", + " 'And',\n", + " 'shall',\n", + " 'it',\n", + " 'be',\n", + " 'said',\n", + " 'that',\n", + " 'my',\n", + " 'eve',\n", + " 'was',\n", + " 'in',\n", + " 'truth',\n", + " 'my',\n", + " 'dawn?',\n", + " '',\n", + " 'And',\n", + " 'what',\n", + " 'shall',\n", + " 'I',\n", + " 'give',\n", + " 'unto',\n", + " 'him',\n", + " 'who',\n", + " 'has',\n", + " 'left',\n", + " 'his',\n", + " 'plough',\n", + " 'in',\n", + " 'midfurrow,',\n", + " 'or',\n", + " 'to',\n", + " 'him',\n", + " 'who',\n", + " 'has',\n", + " 'stopped',\n", + " 'wheel',\n", + " 'of',\n", + " 'his',\n", + " 'winepress?',\n", + " '',\n", + " 'my',\n", + " 'heart',\n", + " 'become',\n", + " 'tree',\n", + " 'heavy-laden',\n", + " 'with',\n", + " 'fruit',\n", + " 'that',\n", + " 'I',\n", + " 'may',\n", + " 'gather',\n", + " 'give',\n", + " 'unto',\n", + " 'them?',\n", + " '',\n", + " 'And',\n", + " 'shall',\n", + " 'my',\n", + " 'desires',\n", + " 'flow',\n", + " 'like',\n", + " 'fountain',\n", + " 'that',\n", + " 'I',\n", + " 'may',\n", + " 'fill',\n", + " 'their',\n", + " 'cups?',\n", + " '',\n", + " 'Am',\n", + " 'I',\n", + " 'harp',\n", + " 'that',\n", + " 'hand',\n", + " 'of',\n", + " 'mighty',\n", + " 'may',\n", + " 'touch',\n", + " 'me,',\n", + " 'or',\n", + " 'flute',\n", + " 'that',\n", + " 'his',\n", + " 'breath',\n", + " 'may',\n", + " 'pass',\n", + " 'through',\n", + " 'me?',\n", + " '',\n", + " 'A',\n", + " 'seeker',\n", + " 'of',\n", + " 'silences',\n", + " 'am',\n", + " 'I,',\n", + " 'what',\n", + " 'treasure',\n", + " 'have',\n", + " 'I',\n", + " 'found',\n", + " 'in',\n", + " 'silences',\n", + " 'that',\n", + " 'I',\n", + " 'may',\n", + " 'dispense',\n", + " 'with',\n", + " 'confidence?',\n", + " '',\n", + " 'If',\n", + " 'this',\n", + " 'is',\n", + " 'my',\n", + " 'day',\n", + " 'of',\n", + " 'harvest,',\n", + " 'in',\n", + " 'what',\n", + " 'fields',\n", + " 'have',\n", + " 'I',\n", + " 'sowed',\n", + " 'seed,',\n", + " 'in',\n", + " 'what',\n", + " 'unremembered',\n", + " 'seasons?',\n", + " '',\n", + " 'If',\n", + " 'this',\n", + " 'indeed',\n", + " 'be',\n", + " 'hour',\n", + " 'in',\n", + " 'which',\n", + " 'I',\n", + " 'lift',\n", + " 'up',\n", + " 'my',\n", + " 'lantern,',\n", + " 'it',\n", + " 'is',\n", + " 'not',\n", + " 'my',\n", + " 'flame',\n", + " 'that',\n", + " 'shall',\n", + " 'burn',\n", + " 'therein.',\n", + " '',\n", + " 'Empty',\n", + " 'dark',\n", + " 'shall',\n", + " 'I',\n", + " 'raise',\n", + " 'my',\n", + " 'lantern,',\n", + " '',\n", + " 'And',\n", + " 'guardian',\n", + " 'of',\n", + " 'night',\n", + " 'shall',\n", + " 'fill',\n", + " 'it',\n", + " 'with',\n", + " 'oil',\n", + " 'he',\n", + " 'shall',\n", + " 'light',\n", + " 'it',\n", + " 'also.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'These',\n", + " 'things',\n", + " 'he',\n", + " 'said',\n", + " 'in',\n", + " 'words.',\n", + " 'But',\n", + " 'much',\n", + " 'in',\n", + " 'his',\n", + " 'heart',\n", + " 'remained',\n", + " 'unsaid.',\n", + " 'For',\n", + " '',\n", + " 'could',\n", + " 'not',\n", + " 'speak',\n", + " 'his',\n", + " 'deeper',\n", + " 'secret.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " '[Illustration:',\n", + " '0020]',\n", + " '',\n", + " 'And',\n", + " 'when',\n", + " 'he',\n", + " 'entered',\n", + " 'into',\n", + " 'city',\n", + " 'all',\n", + " 'people',\n", + " 'came',\n", + " 'to',\n", + " 'meet',\n", + " 'him,',\n", + " 'they',\n", + " 'were',\n", + " 'crying',\n", + " 'out',\n", + " 'to',\n", + " 'him',\n", + " 'as',\n", + " 'with',\n", + " 'one',\n", + " 'voice.',\n", + " '',\n", + " 'And',\n", + " 'elders',\n", + " 'of',\n", + " 'city',\n", + " 'stood',\n", + " 'forth',\n", + " 'said:',\n", + " '',\n", + " 'Go',\n", + " 'not',\n", + " 'yet',\n", + " 'away',\n", + " 'from',\n", + " 'us.',\n", + " '',\n", + " 'A',\n", + " 'noontide',\n", + " 'have',\n", + " 'you',\n", + " 'been',\n", + " 'in',\n", + " 'our',\n", + " 'twilight,',\n", + " 'your',\n", + " 'youth',\n", + " 'has',\n", + " 'given',\n", + " 'us',\n", + " 'dreams',\n", + " 'to',\n", + " 'dream.',\n", + " '',\n", + " 'No',\n", + " 'stranger',\n", + " 'are',\n", + " 'you',\n", + " 'among',\n", + " 'us,',\n", + " 'nor',\n", + " 'guest,',\n", + " 'but',\n", + " 'our',\n", + " 'son',\n", + " 'our',\n", + " 'dearly',\n", + " 'beloved.',\n", + " '',\n", + " 'Suffer',\n", + " 'not',\n", + " 'yet',\n", + " 'our',\n", + " 'eyes',\n", + " 'to',\n", + " 'hunger',\n", + " 'for',\n", + " 'your',\n", + " 'face.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'And',\n", + " 'priests',\n", + " 'priestesses',\n", + " 'said',\n", + " 'unto',\n", + " 'him:',\n", + " '',\n", + " 'Let',\n", + " 'not',\n", + " 'waves',\n", + " 'of',\n", + " 'sea',\n", + " 'separate',\n", + " 'us',\n", + " 'now,',\n", + " 'years',\n", + " 'you',\n", + " 'have',\n", + " 'spent',\n", + " 'in',\n", + " 'our',\n", + " 'midst',\n", + " 'become',\n", + " 'memory.',\n", + " '',\n", + " 'You',\n", + " 'have',\n", + " 'walked',\n", + " 'among',\n", + " 'us',\n", + " 'spirit,',\n", + " 'your',\n", + " 'shadow',\n", + " 'has',\n", + " 'been',\n", + " 'light',\n", + " 'upon',\n", + " 'our',\n", + " 'faces.',\n", + " '',\n", + " 'Much',\n", + " 'have',\n", + " 'we',\n", + " 'loved',\n", + " 'you.',\n", + " 'But',\n", + " 'speechless',\n", + " 'was',\n", + " 'our',\n", + " 'love,',\n", + " 'with',\n", + " 'veils',\n", + " 'has',\n", + " 'it',\n", + " 'been',\n", + " 'veiled.',\n", + " '',\n", + " 'Yet',\n", + " 'now',\n", + " 'it',\n", + " 'cries',\n", + " 'aloud',\n", + " 'unto',\n", + " 'you,',\n", + " 'would',\n", + " 'stand',\n", + " 'revealed',\n", + " 'before',\n", + " 'you.',\n", + " '',\n", + " 'And',\n", + " 'ever',\n", + " 'has',\n", + " 'it',\n", + " 'been',\n", + " 'that',\n", + " 'love',\n", + " 'knows',\n", + " 'not',\n", + " 'its',\n", + " 'own',\n", + " 'depth',\n", + " 'until',\n", + " 'hour',\n", + " 'of',\n", + " 'separation.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'And',\n", + " 'others',\n", + " 'came',\n", + " 'also',\n", + " 'entreated',\n", + " 'him.',\n", + " 'But',\n", + " 'he',\n", + " 'answered',\n", + " 'them',\n", + " 'not.',\n", + " 'He',\n", + " 'only',\n", + " 'bent',\n", + " 'his',\n", + " 'head;',\n", + " 'those',\n", + " 'who',\n", + " 'stood',\n", + " 'near',\n", + " 'saw',\n", + " 'his',\n", + " 'tears',\n", + " 'falling',\n", + " 'upon',\n", + " 'his',\n", + " 'breast.',\n", + " '',\n", + " 'And',\n", + " 'he',\n", + " 'people',\n", + " 'proceeded',\n", + " 'towards',\n", + " 'great',\n", + " 'square',\n", + " 'before',\n", + " 'temple.',\n", + " '',\n", + " 'And',\n", + " 'there',\n", + " 'came',\n", + " 'out',\n", + " 'of',\n", + " 'sanctuary',\n", + " 'woman',\n", + " 'whose',\n", + " 'name',\n", + " 'was',\n", + " 'Almitra.',\n", + " 'And',\n", + " 'she',\n", + " 'was',\n", + " 'seeress.',\n", + " '',\n", + " 'And',\n", + " 'he',\n", + " 'looked',\n", + " 'upon',\n", + " 'her',\n", + " 'with',\n", + " 'exceeding',\n", + " 'tenderness,',\n", + " 'for',\n", + " 'it',\n", + " 'was',\n", + " 'she',\n", + " 'who',\n", + " 'had',\n", + " 'first',\n", + " 'sought',\n", + " 'believed',\n", + " 'in',\n", + " 'him',\n", + " 'when',\n", + " 'he',\n", + " 'had',\n", + " 'been',\n", + " 'but',\n", + " 'day',\n", + " 'in',\n", + " 'their',\n", + " 'city.',\n", + " '',\n", + " 'hailed',\n", + " 'him,',\n", + " 'saying:',\n", + " '',\n", + " 'Prophet',\n", + " 'of',\n", + " 'God,',\n", + " 'in',\n", + " 'quest',\n", + " 'of',\n", + " 'uttermost,',\n", + " 'long',\n", + " 'have',\n", + " 'you',\n", + " 'searched',\n", + " 'distances',\n", + " 'for',\n", + " 'your',\n", + " 'ship.',\n", + " '',\n", + " 'And',\n", + " 'now',\n", + " 'your',\n", + " 'ship',\n", + " 'has',\n", + " 'come,',\n", + " 'you',\n", + " 'must',\n", + " ...]" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ + "word_list = ['and', 'the', 'a', 'an']\n", + " \n", "def word_filter(x):\n", - " '''\n", - " Input: A string\n", - " Output: True if the word is not in the specified list \n", - " and False if the word is in the list.\n", - " \n", - " Example:\n", - " word list = ['and', 'the']\n", - " Input: 'and'\n", - " Output: False\n", " \n", - " Input: 'John'\n", - " Output: True\n", - " '''\n", + " if x in word_list:\n", + " return False\n", + " else:\n", + " return True\n", " \n", - " word_list = ['and', 'the', 'a', 'an']\n", " \n", - " # your code here" + "prophet_filter = list(filter(word_filter, prophet_flat))\n", + "prophet_filter\n", + "\n" ] }, { @@ -232,7 +1278,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": {}, "outputs": [], "source": [ @@ -256,21 +1302,12 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 43, "metadata": {}, "outputs": [], "source": [ "def concat_space(a, b):\n", - " '''\n", - " Input:Two strings\n", - " Output: A single string separated by a space\n", - " \n", - " Example:\n", - " Input: 'John', 'Smith'\n", - " Output: 'John Smith'\n", - " '''\n", - " \n", - " # your code here" + " return \"a\" + \"\" + \"b\"" ] }, { @@ -282,11 +1319,32 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 58, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "list = [x for i in prophet_filter for x in i]" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'ab'" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "prophet_string = reduce(concat_space, list)\n", + "prophet_string " ] }, { @@ -302,7 +1360,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, "outputs": [], "source": [ @@ -318,7 +1376,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ @@ -348,7 +1406,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "metadata": {}, "outputs": [], "source": [ @@ -364,7 +1422,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 17, "metadata": {}, "outputs": [], "source": [ @@ -390,7 +1448,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "metadata": {}, "outputs": [], "source": [ @@ -408,7 +1466,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 19, "metadata": {}, "outputs": [], "source": [ @@ -442,7 +1500,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.13" + "version": "3.11.5" }, "toc": { "base_numbering": 1,