diff --git a/Chat_screenshot1.png b/Chat_screenshot1.png new file mode 100644 index 0000000..5116a39 Binary files /dev/null and b/Chat_screenshot1.png differ diff --git a/Chat_screenshot2.png b/Chat_screenshot2.png new file mode 100644 index 0000000..99a776e Binary files /dev/null and b/Chat_screenshot2.png differ diff --git a/Chat_screenshot3.png b/Chat_screenshot3.png new file mode 100644 index 0000000..b7215eb Binary files /dev/null and b/Chat_screenshot3.png differ diff --git a/Chat_screenshot4.png b/Chat_screenshot4.png new file mode 100644 index 0000000..63e1c26 Binary files /dev/null and b/Chat_screenshot4.png differ diff --git a/Chat_screenshot5.png b/Chat_screenshot5.png new file mode 100644 index 0000000..67d5945 Binary files /dev/null and b/Chat_screenshot5.png differ diff --git a/Chat_screenshot6.png b/Chat_screenshot6.png new file mode 100644 index 0000000..87e1469 Binary files /dev/null and b/Chat_screenshot6.png differ diff --git a/Chat_screenshot7.png b/Chat_screenshot7.png new file mode 100644 index 0000000..5914bdf Binary files /dev/null and b/Chat_screenshot7.png differ diff --git a/Chat_screenshot8.png b/Chat_screenshot8.png new file mode 100644 index 0000000..4f0e0fc Binary files /dev/null and b/Chat_screenshot8.png differ diff --git a/Chat_screenshot9.png b/Chat_screenshot9.png new file mode 100644 index 0000000..5b66065 Binary files /dev/null and b/Chat_screenshot9.png differ diff --git a/Homework_2.py b/Homework_2.py new file mode 100644 index 0000000..dc4ad51 --- /dev/null +++ b/Homework_2.py @@ -0,0 +1,98 @@ +#%%md 1. Harvest the Text +import urllib.request # To open and read URLs +import re # To match regular expressions +import unicodedata # To normalize texts + +url = 'https://www.gutenberg.org/cache/epub/1513/pg1513.txt' +try: + with urllib.request.urlopen(url) as f: + text = f.read().decode('utf-8') + print(text) # for testing +except Exception as e: + print("An error occurred:", e) +#%%md 2. Analyzing the text +#%%md Step 1: Text Cleaning and Processing +try: + # Remove text before and after the main content + start = re.search(r"\*\*\* START OF THE PROJECT GUTENBERG EBOOK .* \*\*\*", text) + end = re.search(r"\*\*\* END OF THE PROJECT GUTENBERG EBOOK .* \*\*\*", text) + if start and end: + text = text[start.end():end.start()] + else: + print("Warning: Could not find Gutenberg delimiters; cleaning entire text") + + # Step 3: Normalize unicode + text = unicodedata.normalize("NFKD", text) + + # Step 4: Remove HTML tags and special characters + text = re.sub(r"<.*?>", " ", text) + text = re.sub(r"[^a-zA-Z0-9\s.,;:'\"!?-]", " ", text) + + # Step 5: Convert to lowercase + text = text.lower() + + # Step 6: Replace multiple spaces/newlines with one space + text = re.sub(r"\s+", " ", text).strip() + + # Step 7: Tokenize into words + tokens = re.findall(r"\b\w+\b", text) + + # Step 8: Print short preview + #print("Cleaned text preview:\n", text[:]) + #print("\nTotal words:", len(tokens)) +except Exception as e: + print("An error occurred:", e) +#%%md Step 2: Removing Stop Words +import nltk +nltk.download('stopwords') +from nltk.corpus import stopwords +# Define the stop words set +stop_words = set(stopwords.words('english')) +# Filter out stop words +filtered_tokens = [word for word in tokens if word.lower() not in stop_words] +#print("Filtered tokens:", filtered_tokens) +print("\nTotal Filtered:", len(filtered_tokens)) +print("\nTotal Original:", len(tokens)) + +# Step 7: (Optional) Rejoin filtered words into cleaned text +cleaned_text = " ".join(filtered_tokens) +# Step 8: Print results +print("Original text:\n", text[:50]) +print("\nCleaned text:\n", cleaned_text[:50]) +print("\nTokens before stopword removal:\n", tokens[:50]) +print("\nTokens after stopword removal:\n", filtered_tokens[:50]) + +# %%md Step 3: Frequency Analysis +# Step 9: Count word frequencies +word_freq = {} +for word in filtered_tokens: + if word in word_freq: + word_freq[word] += 1 + else: + word_freq[word] = 1 +#%%md Step 4: Computing Summary Statistics +#Print the top 50 words +top_words = sorted(word_freq.items(), key=lambda x: x[1], reverse=True)[:50] +print("\nTop 50 most frequent words:\n" , top_words) + +#Calculate average word length +total_length = sum(len(word) * count for word, count in word_freq.items()) +total_words = sum(word_freq.values()) +average_word_length = total_length / total_words if total_words > 0 else 0 +print(f"\nAverage word length: {average_word_length:.2f}") + +#Calculate vocabulary size +vocabulary_size = len(word_freq) +print(f"\nVocabulary size: {vocabulary_size}") + +#Calculate vocabulary richness +vocabulary_richness = vocabulary_size / total_words if total_words > 0 else 0 +print(f"\nVocabulary richness: {vocabulary_richness:.4f}") + +#%%md Part 3: Learning with AI +# I will talk about two problems I ran into while doing this +#assignment. The first problem I had was how to install the nltk. +# The Problem: One problem that I had that took me 1.5 hours to +# figure out even with the use of AI was how to install the nltk even if the environment +# I used stated that I had already installed it. + diff --git a/Interactive-1.ipynb b/Interactive-1.ipynb new file mode 100644 index 0000000..769b7c8 --- /dev/null +++ b/Interactive-1.ipynb @@ -0,0 +1,6117 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "ff14d2a6", + "metadata": {}, + "source": [ + "Connected to Python 3.11.9" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "53d66775-4b29-4971-8cdc-b8a28b451f51", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Project Gutenberg eBook of Romeo and Juliet\n", + " \n", + "This ebook is for the use of anyone anywhere in the United States and\n", + "most other parts of the world at no cost and with almost no restrictions\n", + "whatsoever. You may copy it, give it away or re-use it under the terms\n", + "of the Project Gutenberg License included with this ebook or online\n", + "at www.gutenberg.org. If you are not located in the United States,\n", + "you will have to check the laws of the country where you are located\n", + "before using this eBook.\n", + "\n", + "Title: Romeo and Juliet\n", + "\n", + "Author: William Shakespeare\n", + "\n", + "Release date: November 1, 1998 [eBook #1513]\n", + " Most recently updated: September 18, 2025\n", + "\n", + "Language: English\n", + "\n", + "Credits: the PG Shakespeare Team, a team of about twenty Project Gutenberg volunteers\n", + "\n", + "\n", + "*** START OF THE PROJECT GUTENBERG EBOOK ROMEO AND JULIET ***\n", + "\n", + "\n", + "\n", + "\n", + "THE TRAGEDY OF ROMEO AND JULIET\n", + "\n", + "by William Shakespeare\n", + "\n", + "\n", + "\n", + "\n", + "Contents\n", + "\n", + "THE PROLOGUE.\n", + "\n", + "ACT I\n", + "Scene I. A public place.\n", + "Scene II. A Street.\n", + "Scene III. Room in Capulet’s House.\n", + "Scene IV. A Street.\n", + "Scene V. A Hall in Capulet’s House.\n", + "\n", + "ACT II\n", + "CHORUS.\n", + "Scene I. An open place adjoining Capulet’s Garden.\n", + "Scene II. Capulet’s Garden.\n", + "Scene III. Friar Lawrence’s Cell.\n", + "Scene IV. A Street.\n", + "Scene V. Capulet’s Garden.\n", + "Scene VI. Friar Lawrence’s Cell.\n", + "\n", + "ACT III\n", + "Scene I. A public Place.\n", + "Scene II. A Room in Capulet’s House.\n", + "Scene III. Friar Lawrence’s cell.\n", + "Scene IV. A Room in Capulet’s House.\n", + "Scene V. An open Gallery to Juliet’s Chamber, overlooking the Garden.\n", + "\n", + "ACT IV\n", + "Scene I. Friar Lawrence’s Cell.\n", + "Scene II. Hall in Capulet’s House.\n", + "Scene III. Juliet’s Chamber.\n", + "Scene IV. Hall in Capulet’s House.\n", + "Scene V. Juliet’s Chamber; Juliet on the bed.\n", + "\n", + "ACT V\n", + "Scene I. Mantua. A Street.\n", + "Scene II. Friar Lawrence’s Cell.\n", + "Scene III. A churchyard; in it a Monument belonging to the Capulets.\n", + "\n", + "\n", + "\n", + "\n", + " Dramatis Personæ\n", + "\n", + "ESCALUS, Prince of Verona.\n", + "MERCUTIO, kinsman to the Prince, and friend to Romeo.\n", + "PARIS, a young Nobleman, kinsman to the Prince.\n", + "Page to Paris.\n", + "\n", + "MONTAGUE, head of a Veronese family at feud with the Capulets.\n", + "LADY MONTAGUE, wife to Montague.\n", + "ROMEO, son to Montague.\n", + "BENVOLIO, nephew to Montague, and friend to Romeo.\n", + "ABRAM, servant to Montague.\n", + "BALTHASAR, servant to Romeo.\n", + "\n", + "CAPULET, head of a Veronese family at feud with the Montagues.\n", + "LADY CAPULET, wife to Capulet.\n", + "JULIET, daughter to Capulet.\n", + "TYBALT, nephew to Lady Capulet.\n", + "CAPULET’S COUSIN, an old man.\n", + "NURSE to Juliet.\n", + "PETER, servant to Juliet’s Nurse.\n", + "SAMPSON, servant to Capulet.\n", + "GREGORY, servant to Capulet.\n", + "Servants.\n", + "\n", + "FRIAR LAWRENCE, a Franciscan.\n", + "FRIAR JOHN, of the same Order.\n", + "An Apothecary.\n", + "CHORUS.\n", + "Three Musicians.\n", + "An Officer.\n", + "Citizens of Verona; several Men and Women, relations to both houses;\n", + "Maskers, Guards, Watchmen and Attendants.\n", + "\n", + "SCENE. During the greater part of the Play in Verona; once, in the\n", + "Fifth Act, at Mantua.\n", + "\n", + "\n", + "\n", + "\n", + "THE PROLOGUE\n", + "\n", + "\n", + " Enter Chorus.\n", + "\n", + "CHORUS.\n", + "Two households, both alike in dignity,\n", + "In fair Verona, where we lay our scene,\n", + "From ancient grudge break to new mutiny,\n", + "Where civil blood makes civil hands unclean.\n", + "From forth the fatal loins of these two foes\n", + "A pair of star-cross’d lovers take their life;\n", + "Whose misadventur’d piteous overthrows\n", + "Doth with their death bury their parents’ strife.\n", + "The fearful passage of their death-mark’d love,\n", + "And the continuance of their parents’ rage,\n", + "Which, but their children’s end, nought could remove,\n", + "Is now the two hours’ traffic of our stage;\n", + "The which, if you with patient ears attend,\n", + "What here shall miss, our toil shall strive to mend.\n", + "\n", + " [_Exit._]\n", + "\n", + "\n", + "\n", + "\n", + "ACT I\n", + "\n", + "SCENE I. A public place.\n", + "\n", + "\n", + " Enter Sampson and Gregory armed with swords and bucklers.\n", + "\n", + "SAMPSON.\n", + "Gregory, on my word, we’ll not carry coals.\n", + "\n", + "GREGORY.\n", + "No, for then we should be colliers.\n", + "\n", + "SAMPSON.\n", + "I mean, if we be in choler, we’ll draw.\n", + "\n", + "GREGORY.\n", + "Ay, while you live, draw your neck out o’ the collar.\n", + "\n", + "SAMPSON.\n", + "I strike quickly, being moved.\n", + "\n", + "GREGORY.\n", + "But thou art not quickly moved to strike.\n", + "\n", + "SAMPSON.\n", + "A dog of the house of Montague moves me.\n", + "\n", + "GREGORY.\n", + "To move is to stir; and to be valiant is to stand: therefore, if thou\n", + "art moved, thou runn’st away.\n", + "\n", + "SAMPSON.\n", + "A dog of that house shall move me to stand.\n", + "I will take the wall of any man or maid of Montague’s.\n", + "\n", + "GREGORY.\n", + "That shows thee a weak slave, for the weakest goes to the wall.\n", + "\n", + "SAMPSON.\n", + "True, and therefore women, being the weaker vessels, are ever thrust to\n", + "the wall: therefore I will push Montague’s men from the wall, and\n", + "thrust his maids to the wall.\n", + "\n", + "GREGORY.\n", + "The quarrel is between our masters and us their men.\n", + "\n", + "SAMPSON.\n", + "’Tis all one, I will show myself a tyrant: when I have fought with the\n", + "men I will be civil with the maids, I will cut off their heads.\n", + "\n", + "GREGORY.\n", + "The heads of the maids?\n", + "\n", + "SAMPSON.\n", + "Ay, the heads of the maids, or their maidenheads; take it in what sense\n", + "thou wilt.\n", + "\n", + "GREGORY.\n", + "They must take it in sense that feel it.\n", + "\n", + "SAMPSON.\n", + "Me they shall feel while I am able to stand: and ’tis known I am a\n", + "pretty piece of flesh.\n", + "\n", + "GREGORY.\n", + "’Tis well thou art not fish; if thou hadst, thou hadst been poor John.\n", + "Draw thy tool; here comes of the house of Montagues.\n", + "\n", + " Enter Abram and Balthasar.\n", + "\n", + "SAMPSON.\n", + "My naked weapon is out: quarrel, I will back thee.\n", + "\n", + "GREGORY.\n", + "How? Turn thy back and run?\n", + "\n", + "SAMPSON.\n", + "Fear me not.\n", + "\n", + "GREGORY.\n", + "No, marry; I fear thee!\n", + "\n", + "SAMPSON.\n", + "Let us take the law of our sides; let them begin.\n", + "\n", + "GREGORY.\n", + "I will frown as I pass by, and let them take it as they list.\n", + "\n", + "SAMPSON.\n", + "Nay, as they dare. I will bite my thumb at them, which is disgrace to\n", + "them if they bear it.\n", + "\n", + "ABRAM.\n", + "Do you bite your thumb at us, sir?\n", + "\n", + "SAMPSON.\n", + "I do bite my thumb, sir.\n", + "\n", + "ABRAM.\n", + "Do you bite your thumb at us, sir?\n", + "\n", + "SAMPSON.\n", + "Is the law of our side if I say ay?\n", + "\n", + "GREGORY.\n", + "No.\n", + "\n", + "SAMPSON.\n", + "No sir, I do not bite my thumb at you, sir; but I bite my thumb, sir.\n", + "\n", + "GREGORY.\n", + "Do you quarrel, sir?\n", + "\n", + "ABRAM.\n", + "Quarrel, sir? No, sir.\n", + "\n", + "SAMPSON.\n", + "But if you do, sir, I am for you. I serve as good a man as you.\n", + "\n", + "ABRAM.\n", + "No better.\n", + "\n", + "SAMPSON.\n", + "Well, sir.\n", + "\n", + " Enter Benvolio.\n", + "\n", + "GREGORY.\n", + "Say better; here comes one of my master’s kinsmen.\n", + "\n", + "SAMPSON.\n", + "Yes, better, sir.\n", + "\n", + "ABRAM.\n", + "You lie.\n", + "\n", + "SAMPSON.\n", + "Draw, if you be men. Gregory, remember thy washing blow.\n", + "\n", + " [_They fight._]\n", + "\n", + "BENVOLIO.\n", + "Part, fools! put up your swords, you know not what you do.\n", + "\n", + " [_Beats down their swords._]\n", + "\n", + " Enter Tybalt.\n", + "\n", + "TYBALT.\n", + "What, art thou drawn among these heartless hinds?\n", + "Turn thee Benvolio, look upon thy death.\n", + "\n", + "BENVOLIO.\n", + "I do but keep the peace, put up thy sword,\n", + "Or manage it to part these men with me.\n", + "\n", + "TYBALT.\n", + "What, drawn, and talk of peace? I hate the word\n", + "As I hate hell, all Montagues, and thee:\n", + "Have at thee, coward.\n", + "\n", + " [_They fight._]\n", + "\n", + " Enter three or four Citizens with clubs.\n", + "\n", + "FIRST CITIZEN.\n", + "Clubs, bills and partisans! Strike! Beat them down!\n", + "Down with the Capulets! Down with the Montagues!\n", + "\n", + " Enter Capulet in his gown, and Lady Capulet.\n", + "\n", + "CAPULET.\n", + "What noise is this? Give me my long sword, ho!\n", + "\n", + "LADY CAPULET.\n", + "A crutch, a crutch! Why call you for a sword?\n", + "\n", + "CAPULET.\n", + "My sword, I say! Old Montague is come,\n", + "And flourishes his blade in spite of me.\n", + "\n", + " Enter Montague and his Lady Montague.\n", + "\n", + "MONTAGUE.\n", + "Thou villain Capulet! Hold me not, let me go.\n", + "\n", + "LADY MONTAGUE.\n", + "Thou shalt not stir one foot to seek a foe.\n", + "\n", + " Enter Prince Escalus, with Attendants.\n", + "\n", + "PRINCE.\n", + "Rebellious subjects, enemies to peace,\n", + "Profaners of this neighbour-stained steel,—\n", + "Will they not hear? What, ho! You men, you beasts,\n", + "That quench the fire of your pernicious rage\n", + "With purple fountains issuing from your veins,\n", + "On pain of torture, from those bloody hands\n", + "Throw your mistemper’d weapons to the ground\n", + "And hear the sentence of your moved prince.\n", + "Three civil brawls, bred of an airy word,\n", + "By thee, old Capulet, and Montague,\n", + "Have thrice disturb’d the quiet of our streets,\n", + "And made Verona’s ancient citizens\n", + "Cast by their grave beseeming ornaments,\n", + "To wield old partisans, in hands as old,\n", + "Canker’d with peace, to part your canker’d hate.\n", + "If ever you disturb our streets again,\n", + "Your lives shall pay the forfeit of the peace.\n", + "For this time all the rest depart away:\n", + "You, Capulet, shall go along with me,\n", + "And Montague, come you this afternoon,\n", + "To know our farther pleasure in this case,\n", + "To old Free-town, our common judgement-place.\n", + "Once more, on pain of death, all men depart.\n", + "\n", + " [_Exeunt Prince and Attendants; Capulet, Lady Capulet, Tybalt,\n", + " Citizens and Servants._]\n", + "\n", + "MONTAGUE.\n", + "Who set this ancient quarrel new abroach?\n", + "Speak, nephew, were you by when it began?\n", + "\n", + "BENVOLIO.\n", + "Here were the servants of your adversary\n", + "And yours, close fighting ere I did approach.\n", + "I drew to part them, in the instant came\n", + "The fiery Tybalt, with his sword prepar’d,\n", + "Which, as he breath’d defiance to my ears,\n", + "He swung about his head, and cut the winds,\n", + "Who nothing hurt withal, hiss’d him in scorn.\n", + "While we were interchanging thrusts and blows\n", + "Came more and more, and fought on part and part,\n", + "Till the Prince came, who parted either part.\n", + "\n", + "LADY MONTAGUE.\n", + "O where is Romeo, saw you him today?\n", + "Right glad I am he was not at this fray.\n", + "\n", + "BENVOLIO.\n", + "Madam, an hour before the worshipp’d sun\n", + "Peer’d forth the golden window of the east,\n", + "A troubled mind drave me to walk abroad,\n", + "Where underneath the grove of sycamore\n", + "That westward rooteth from this city side,\n", + "So early walking did I see your son.\n", + "Towards him I made, but he was ware of me,\n", + "And stole into the covert of the wood.\n", + "I, measuring his affections by my own,\n", + "Which then most sought where most might not be found,\n", + "Being one too many by my weary self,\n", + "Pursu’d my humour, not pursuing his,\n", + "And gladly shunn’d who gladly fled from me.\n", + "\n", + "MONTAGUE.\n", + "Many a morning hath he there been seen,\n", + "With tears augmenting the fresh morning’s dew,\n", + "Adding to clouds more clouds with his deep sighs;\n", + "But all so soon as the all-cheering sun\n", + "Should in the farthest east begin to draw\n", + "The shady curtains from Aurora’s bed,\n", + "Away from light steals home my heavy son,\n", + "And private in his chamber pens himself,\n", + "Shuts up his windows, locks fair daylight out\n", + "And makes himself an artificial night.\n", + "Black and portentous must this humour prove,\n", + "Unless good counsel may the cause remove.\n", + "\n", + "BENVOLIO.\n", + "My noble uncle, do you know the cause?\n", + "\n", + "MONTAGUE.\n", + "I neither know it nor can learn of him.\n", + "\n", + "BENVOLIO.\n", + "Have you importun’d him by any means?\n", + "\n", + "MONTAGUE.\n", + "Both by myself and many other friends;\n", + "But he, his own affections’ counsellor,\n", + "Is to himself—I will not say how true—\n", + "But to himself so secret and so close,\n", + "So far from sounding and discovery,\n", + "As is the bud bit with an envious worm\n", + "Ere he can spread his sweet leaves to the air,\n", + "Or dedicate his beauty to the sun.\n", + "Could we but learn from whence his sorrows grow,\n", + "We would as willingly give cure as know.\n", + "\n", + " Enter Romeo.\n", + "\n", + "BENVOLIO.\n", + "See, where he comes. So please you step aside;\n", + "I’ll know his grievance or be much denied.\n", + "\n", + "MONTAGUE.\n", + "I would thou wert so happy by thy stay\n", + "To hear true shrift. Come, madam, let’s away,\n", + "\n", + " [_Exeunt Montague and Lady Montague._]\n", + "\n", + "BENVOLIO.\n", + "Good morrow, cousin.\n", + "\n", + "ROMEO.\n", + "Is the day so young?\n", + "\n", + "BENVOLIO.\n", + "But new struck nine.\n", + "\n", + "ROMEO.\n", + "Ay me, sad hours seem long.\n", + "Was that my father that went hence so fast?\n", + "\n", + "BENVOLIO.\n", + "It was. What sadness lengthens Romeo’s hours?\n", + "\n", + "ROMEO.\n", + "Not having that which, having, makes them short.\n", + "\n", + "BENVOLIO.\n", + "In love?\n", + "\n", + "ROMEO.\n", + "Out.\n", + "\n", + "BENVOLIO.\n", + "Of love?\n", + "\n", + "ROMEO.\n", + "Out of her favour where I am in love.\n", + "\n", + "BENVOLIO.\n", + "Alas that love so gentle in his view,\n", + "Should be so tyrannous and rough in proof.\n", + "\n", + "ROMEO.\n", + "Alas that love, whose view is muffled still,\n", + "Should, without eyes, see pathways to his will!\n", + "Where shall we dine? O me! What fray was here?\n", + "Yet tell me not, for I have heard it all.\n", + "Here’s much to do with hate, but more with love:\n", + "Why, then, O brawling love! O loving hate!\n", + "O anything, of nothing first create!\n", + "O heavy lightness! serious vanity!\n", + "Misshapen chaos of well-seeming forms!\n", + "Feather of lead, bright smoke, cold fire, sick health!\n", + "Still-waking sleep, that is not what it is!\n", + "This love feel I, that feel no love in this.\n", + "Dost thou not laugh?\n", + "\n", + "BENVOLIO.\n", + "No coz, I rather weep.\n", + "\n", + "ROMEO.\n", + "Good heart, at what?\n", + "\n", + "BENVOLIO.\n", + "At thy good heart’s oppression.\n", + "\n", + "ROMEO.\n", + "Why such is love’s transgression.\n", + "Griefs of mine own lie heavy in my breast,\n", + "Which thou wilt propagate to have it prest\n", + "With more of thine. This love that thou hast shown\n", + "Doth add more grief to too much of mine own.\n", + "Love is a smoke made with the fume of sighs;\n", + "Being purg’d, a fire sparkling in lovers’ eyes;\n", + "Being vex’d, a sea nourish’d with lovers’ tears:\n", + "What is it else? A madness most discreet,\n", + "A choking gall, and a preserving sweet.\n", + "Farewell, my coz.\n", + "\n", + " [_Going._]\n", + "\n", + "BENVOLIO.\n", + "Soft! I will go along:\n", + "And if you leave me so, you do me wrong.\n", + "\n", + "ROMEO.\n", + "Tut! I have lost myself; I am not here.\n", + "This is not Romeo, he’s some other where.\n", + "\n", + "BENVOLIO.\n", + "Tell me in sadness who is that you love?\n", + "\n", + "ROMEO.\n", + "What, shall I groan and tell thee?\n", + "\n", + "BENVOLIO.\n", + "Groan! Why, no; but sadly tell me who.\n", + "\n", + "ROMEO.\n", + "Bid a sick man in sadness make his will,\n", + "A word ill urg’d to one that is so ill.\n", + "In sadness, cousin, I do love a woman.\n", + "\n", + "BENVOLIO.\n", + "I aim’d so near when I suppos’d you lov’d.\n", + "\n", + "ROMEO.\n", + "A right good markman, and she’s fair I love.\n", + "\n", + "BENVOLIO.\n", + "A right fair mark, fair coz, is soonest hit.\n", + "\n", + "ROMEO.\n", + "Well, in that hit you miss: she’ll not be hit\n", + "With Cupid’s arrow, she hath Dian’s wit;\n", + "And in strong proof of chastity well arm’d,\n", + "From love’s weak childish bow she lives uncharm’d.\n", + "She will not stay the siege of loving terms\n", + "Nor bide th’encounter of assailing eyes,\n", + "Nor ope her lap to saint-seducing gold:\n", + "O she’s rich in beauty, only poor\n", + "That when she dies, with beauty dies her store.\n", + "\n", + "BENVOLIO.\n", + "Then she hath sworn that she will still live chaste?\n", + "\n", + "ROMEO.\n", + "She hath, and in that sparing makes huge waste;\n", + "For beauty starv’d with her severity,\n", + "Cuts beauty off from all posterity.\n", + "She is too fair, too wise; wisely too fair,\n", + "To merit bliss by making me despair.\n", + "She hath forsworn to love, and in that vow\n", + "Do I live dead, that live to tell it now.\n", + "\n", + "BENVOLIO.\n", + "Be rul’d by me, forget to think of her.\n", + "\n", + "ROMEO.\n", + "O teach me how I should forget to think.\n", + "\n", + "BENVOLIO.\n", + "By giving liberty unto thine eyes;\n", + "Examine other beauties.\n", + "\n", + "ROMEO.\n", + "’Tis the way\n", + "To call hers, exquisite, in question more.\n", + "These happy masks that kiss fair ladies’ brows,\n", + "Being black, puts us in mind they hide the fair;\n", + "He that is strucken blind cannot forget\n", + "The precious treasure of his eyesight lost.\n", + "Show me a mistress that is passing fair,\n", + "What doth her beauty serve but as a note\n", + "Where I may read who pass’d that passing fair?\n", + "Farewell, thou canst not teach me to forget.\n", + "\n", + "BENVOLIO.\n", + "I’ll pay that doctrine, or else die in debt.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE II. A Street.\n", + "\n", + " Enter Capulet, Paris and Servant.\n", + "\n", + "CAPULET.\n", + "But Montague is bound as well as I,\n", + "In penalty alike; and ’tis not hard, I think,\n", + "For men so old as we to keep the peace.\n", + "\n", + "PARIS.\n", + "Of honourable reckoning are you both,\n", + "And pity ’tis you liv’d at odds so long.\n", + "But now my lord, what say you to my suit?\n", + "\n", + "CAPULET.\n", + "But saying o’er what I have said before.\n", + "My child is yet a stranger in the world,\n", + "She hath not seen the change of fourteen years;\n", + "Let two more summers wither in their pride\n", + "Ere we may think her ripe to be a bride.\n", + "\n", + "PARIS.\n", + "Younger than she are happy mothers made.\n", + "\n", + "CAPULET.\n", + "And too soon marr’d are those so early made.\n", + "The earth hath swallowed all my hopes but she,\n", + "She is the hopeful lady of my earth:\n", + "But woo her, gentle Paris, get her heart,\n", + "My will to her consent is but a part;\n", + "And she agree, within her scope of choice\n", + "Lies my consent and fair according voice.\n", + "This night I hold an old accustom’d feast,\n", + "Whereto I have invited many a guest,\n", + "Such as I love, and you among the store,\n", + "One more, most welcome, makes my number more.\n", + "At my poor house look to behold this night\n", + "Earth-treading stars that make dark heaven light:\n", + "Such comfort as do lusty young men feel\n", + "When well apparell’d April on the heel\n", + "Of limping winter treads, even such delight\n", + "Among fresh female buds shall you this night\n", + "Inherit at my house. Hear all, all see,\n", + "And like her most whose merit most shall be:\n", + "Which, on more view of many, mine, being one,\n", + "May stand in number, though in reckoning none.\n", + "Come, go with me. Go, sirrah, trudge about\n", + "Through fair Verona; find those persons out\n", + "Whose names are written there, [_gives a paper_] and to them say,\n", + "My house and welcome on their pleasure stay.\n", + "\n", + " [_Exeunt Capulet and Paris._]\n", + "\n", + "SERVANT.\n", + "Find them out whose names are written here! It is written that the\n", + "shoemaker should meddle with his yard and the tailor with his last, the\n", + "fisher with his pencil, and the painter with his nets; but I am sent to\n", + "find those persons whose names are here writ, and can never find what\n", + "names the writing person hath here writ. I must to the learned. In good\n", + "time!\n", + "\n", + " Enter Benvolio and Romeo.\n", + "\n", + "BENVOLIO.\n", + "Tut, man, one fire burns out another’s burning,\n", + "One pain is lessen’d by another’s anguish;\n", + "Turn giddy, and be holp by backward turning;\n", + "One desperate grief cures with another’s languish:\n", + "Take thou some new infection to thy eye,\n", + "And the rank poison of the old will die.\n", + "\n", + "ROMEO.\n", + "Your plantain leaf is excellent for that.\n", + "\n", + "BENVOLIO.\n", + "For what, I pray thee?\n", + "\n", + "ROMEO.\n", + "For your broken shin.\n", + "\n", + "BENVOLIO.\n", + "Why, Romeo, art thou mad?\n", + "\n", + "ROMEO.\n", + "Not mad, but bound more than a madman is:\n", + "Shut up in prison, kept without my food,\n", + "Whipp’d and tormented and—God-den, good fellow.\n", + "\n", + "SERVANT.\n", + "God gi’ go-den. I pray, sir, can you read?\n", + "\n", + "ROMEO.\n", + "Ay, mine own fortune in my misery.\n", + "\n", + "SERVANT.\n", + "Perhaps you have learned it without book.\n", + "But I pray, can you read anything you see?\n", + "\n", + "ROMEO.\n", + "Ay, If I know the letters and the language.\n", + "\n", + "SERVANT.\n", + "Ye say honestly, rest you merry!\n", + "\n", + "ROMEO.\n", + "Stay, fellow; I can read.\n", + "\n", + " [_He reads the letter._]\n", + "\n", + "_Signior Martino and his wife and daughters;\n", + "County Anselmo and his beauteous sisters;\n", + "The lady widow of Utruvio;\n", + "Signior Placentio and his lovely nieces;\n", + "Mercutio and his brother Valentine;\n", + "Mine uncle Capulet, his wife, and daughters;\n", + "My fair niece Rosaline and Livia;\n", + "Signior Valentio and his cousin Tybalt;\n", + "Lucio and the lively Helena. _\n", + "\n", + "\n", + "A fair assembly. [_Gives back the paper_] Whither should they come?\n", + "\n", + "SERVANT.\n", + "Up.\n", + "\n", + "ROMEO.\n", + "Whither to supper?\n", + "\n", + "SERVANT.\n", + "To our house.\n", + "\n", + "ROMEO.\n", + "Whose house?\n", + "\n", + "SERVANT.\n", + "My master’s.\n", + "\n", + "ROMEO.\n", + "Indeed I should have ask’d you that before.\n", + "\n", + "SERVANT.\n", + "Now I’ll tell you without asking. My master is the great rich Capulet,\n", + "and if you be not of the house of Montagues, I pray come and crush a\n", + "cup of wine. Rest you merry.\n", + "\n", + " [_Exit._]\n", + "\n", + "BENVOLIO.\n", + "At this same ancient feast of Capulet’s\n", + "Sups the fair Rosaline whom thou so lov’st;\n", + "With all the admired beauties of Verona.\n", + "Go thither and with unattainted eye,\n", + "Compare her face with some that I shall show,\n", + "And I will make thee think thy swan a crow.\n", + "\n", + "ROMEO.\n", + "When the devout religion of mine eye\n", + "Maintains such falsehood, then turn tears to fire;\n", + "And these who, often drown’d, could never die,\n", + "Transparent heretics, be burnt for liars.\n", + "One fairer than my love? The all-seeing sun\n", + "Ne’er saw her match since first the world begun.\n", + "\n", + "BENVOLIO.\n", + "Tut, you saw her fair, none else being by,\n", + "Herself pois’d with herself in either eye:\n", + "But in that crystal scales let there be weigh’d\n", + "Your lady’s love against some other maid\n", + "That I will show you shining at this feast,\n", + "And she shall scant show well that now shows best.\n", + "\n", + "ROMEO.\n", + "I’ll go along, no such sight to be shown,\n", + "But to rejoice in splendour of my own.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE III. Room in Capulet’s House.\n", + "\n", + " Enter Lady Capulet and Nurse.\n", + "\n", + "LADY CAPULET.\n", + "Nurse, where’s my daughter? Call her forth to me.\n", + "\n", + "NURSE.\n", + "Now, by my maidenhead, at twelve year old,\n", + "I bade her come. What, lamb! What ladybird!\n", + "God forbid! Where’s this girl? What, Juliet!\n", + "\n", + " Enter Juliet.\n", + "\n", + "JULIET.\n", + "How now, who calls?\n", + "\n", + "NURSE.\n", + "Your mother.\n", + "\n", + "JULIET.\n", + "Madam, I am here. What is your will?\n", + "\n", + "LADY CAPULET.\n", + "This is the matter. Nurse, give leave awhile,\n", + "We must talk in secret. Nurse, come back again,\n", + "I have remember’d me, thou’s hear our counsel.\n", + "Thou knowest my daughter’s of a pretty age.\n", + "\n", + "NURSE.\n", + "Faith, I can tell her age unto an hour.\n", + "\n", + "LADY CAPULET.\n", + "She’s not fourteen.\n", + "\n", + "NURSE.\n", + "I’ll lay fourteen of my teeth,\n", + "And yet, to my teen be it spoken, I have but four,\n", + "She is not fourteen. How long is it now\n", + "To Lammas-tide?\n", + "\n", + "LADY CAPULET.\n", + "A fortnight and odd days.\n", + "\n", + "NURSE.\n", + "Even or odd, of all days in the year,\n", + "Come Lammas Eve at night shall she be fourteen.\n", + "Susan and she,—God rest all Christian souls!—\n", + "Were of an age. Well, Susan is with God;\n", + "She was too good for me. But as I said,\n", + "On Lammas Eve at night shall she be fourteen;\n", + "That shall she, marry; I remember it well.\n", + "’Tis since the earthquake now eleven years;\n", + "And she was wean’d,—I never shall forget it—,\n", + "Of all the days of the year, upon that day:\n", + "For I had then laid wormwood to my dug,\n", + "Sitting in the sun under the dovehouse wall;\n", + "My lord and you were then at Mantua:\n", + "Nay, I do bear a brain. But as I said,\n", + "When it did taste the wormwood on the nipple\n", + "Of my dug and felt it bitter, pretty fool,\n", + "To see it tetchy, and fall out with the dug!\n", + "Shake, quoth the dovehouse: ’twas no need, I trow,\n", + "To bid me trudge.\n", + "And since that time it is eleven years;\n", + "For then she could stand alone; nay, by th’rood\n", + "She could have run and waddled all about;\n", + "For even the day before she broke her brow,\n", + "And then my husband,—God be with his soul!\n", + "A was a merry man,—took up the child:\n", + "‘Yea,’ quoth he, ‘dost thou fall upon thy face?\n", + "Thou wilt fall backward when thou hast more wit;\n", + "Wilt thou not, Jule?’ and, by my holidame,\n", + "The pretty wretch left crying, and said ‘Ay’.\n", + "To see now how a jest shall come about.\n", + "I warrant, and I should live a thousand years,\n", + "I never should forget it. ‘Wilt thou not, Jule?’ quoth he;\n", + "And, pretty fool, it stinted, and said ‘Ay.’\n", + "\n", + "LADY CAPULET.\n", + "Enough of this; I pray thee hold thy peace.\n", + "\n", + "NURSE.\n", + "Yes, madam, yet I cannot choose but laugh,\n", + "To think it should leave crying, and say ‘Ay’;\n", + "And yet I warrant it had upon it brow\n", + "A bump as big as a young cockerel’s stone;\n", + "A perilous knock, and it cried bitterly.\n", + "‘Yea,’ quoth my husband, ‘fall’st upon thy face?\n", + "Thou wilt fall backward when thou comest to age;\n", + "Wilt thou not, Jule?’ it stinted, and said ‘Ay’.\n", + "\n", + "JULIET.\n", + "And stint thou too, I pray thee, Nurse, say I.\n", + "\n", + "NURSE.\n", + "Peace, I have done. God mark thee to his grace\n", + "Thou wast the prettiest babe that e’er I nurs’d:\n", + "And I might live to see thee married once, I have my wish.\n", + "\n", + "LADY CAPULET.\n", + "Marry, that marry is the very theme\n", + "I came to talk of. Tell me, daughter Juliet,\n", + "How stands your disposition to be married?\n", + "\n", + "JULIET.\n", + "It is an honour that I dream not of.\n", + "\n", + "NURSE.\n", + "An honour! Were not I thine only nurse,\n", + "I would say thou hadst suck’d wisdom from thy teat.\n", + "\n", + "LADY CAPULET.\n", + "Well, think of marriage now: younger than you,\n", + "Here in Verona, ladies of esteem,\n", + "Are made already mothers. By my count\n", + "I was your mother much upon these years\n", + "That you are now a maid. Thus, then, in brief;\n", + "The valiant Paris seeks you for his love.\n", + "\n", + "NURSE.\n", + "A man, young lady! Lady, such a man\n", + "As all the world—why he’s a man of wax.\n", + "\n", + "LADY CAPULET.\n", + "Verona’s summer hath not such a flower.\n", + "\n", + "NURSE.\n", + "Nay, he’s a flower, in faith a very flower.\n", + "\n", + "LADY CAPULET.\n", + "What say you, can you love the gentleman?\n", + "This night you shall behold him at our feast;\n", + "Read o’er the volume of young Paris’ face,\n", + "And find delight writ there with beauty’s pen.\n", + "Examine every married lineament,\n", + "And see how one another lends content;\n", + "And what obscur’d in this fair volume lies,\n", + "Find written in the margent of his eyes.\n", + "This precious book of love, this unbound lover,\n", + "To beautify him, only lacks a cover:\n", + "The fish lives in the sea; and ’tis much pride\n", + "For fair without the fair within to hide.\n", + "That book in many’s eyes doth share the glory,\n", + "That in gold clasps locks in the golden story;\n", + "So shall you share all that he doth possess,\n", + "By having him, making yourself no less.\n", + "\n", + "NURSE.\n", + "No less, nay bigger. Women grow by men.\n", + "\n", + "LADY CAPULET.\n", + "Speak briefly, can you like of Paris’ love?\n", + "\n", + "JULIET.\n", + "I’ll look to like, if looking liking move:\n", + "But no more deep will I endart mine eye\n", + "Than your consent gives strength to make it fly.\n", + "\n", + " Enter a Servant.\n", + "\n", + "SERVANT.\n", + "Madam, the guests are come, supper served up, you called, my young lady\n", + "asked for, the Nurse cursed in the pantry, and everything in extremity.\n", + "I must hence to wait, I beseech you follow straight.\n", + "\n", + "LADY CAPULET.\n", + "We follow thee.\n", + "\n", + " [_Exit Servant._]\n", + "\n", + "Juliet, the County stays.\n", + "\n", + "NURSE.\n", + "Go, girl, seek happy nights to happy days.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE IV. A Street.\n", + "\n", + " Enter Romeo, Mercutio, Benvolio, with five or six Maskers;\n", + " Torch-bearers and others.\n", + "\n", + "ROMEO.\n", + "What, shall this speech be spoke for our excuse?\n", + "Or shall we on without apology?\n", + "\n", + "BENVOLIO.\n", + "The date is out of such prolixity:\n", + "We’ll have no Cupid hoodwink’d with a scarf,\n", + "Bearing a Tartar’s painted bow of lath,\n", + "Scaring the ladies like a crow-keeper;\n", + "Nor no without-book prologue, faintly spoke\n", + "After the prompter, for our entrance:\n", + "But let them measure us by what they will,\n", + "We’ll measure them a measure, and be gone.\n", + "\n", + "ROMEO.\n", + "Give me a torch, I am not for this ambling;\n", + "Being but heavy I will bear the light.\n", + "\n", + "MERCUTIO.\n", + "Nay, gentle Romeo, we must have you dance.\n", + "\n", + "ROMEO.\n", + "Not I, believe me, you have dancing shoes,\n", + "With nimble soles, I have a soul of lead\n", + "So stakes me to the ground I cannot move.\n", + "\n", + "MERCUTIO.\n", + "You are a lover, borrow Cupid’s wings,\n", + "And soar with them above a common bound.\n", + "\n", + "ROMEO.\n", + "I am too sore enpierced with his shaft\n", + "To soar with his light feathers, and so bound,\n", + "I cannot bound a pitch above dull woe.\n", + "Under love’s heavy burden do I sink.\n", + "\n", + "MERCUTIO.\n", + "And, to sink in it, should you burden love;\n", + "Too great oppression for a tender thing.\n", + "\n", + "ROMEO.\n", + "Is love a tender thing? It is too rough,\n", + "Too rude, too boisterous; and it pricks like thorn.\n", + "\n", + "MERCUTIO.\n", + "If love be rough with you, be rough with love;\n", + "Prick love for pricking, and you beat love down.\n", + "Give me a case to put my visage in: [_Putting on a mask._]\n", + "A visor for a visor. What care I\n", + "What curious eye doth quote deformities?\n", + "Here are the beetle-brows shall blush for me.\n", + "\n", + "BENVOLIO.\n", + "Come, knock and enter; and no sooner in\n", + "But every man betake him to his legs.\n", + "\n", + "ROMEO.\n", + "A torch for me: let wantons, light of heart,\n", + "Tickle the senseless rushes with their heels;\n", + "For I am proverb’d with a grandsire phrase,\n", + "I’ll be a candle-holder and look on,\n", + "The game was ne’er so fair, and I am done.\n", + "\n", + "MERCUTIO.\n", + "Tut, dun’s the mouse, the constable’s own word:\n", + "If thou art dun, we’ll draw thee from the mire\n", + "Or save your reverence love, wherein thou stickest\n", + "Up to the ears. Come, we burn daylight, ho.\n", + "\n", + "ROMEO.\n", + "Nay, that’s not so.\n", + "\n", + "MERCUTIO.\n", + "I mean sir, in delay\n", + "We waste our lights in vain, light lights by day.\n", + "Take our good meaning, for our judgment sits\n", + "Five times in that ere once in our five wits.\n", + "\n", + "ROMEO.\n", + "And we mean well in going to this mask;\n", + "But ’tis no wit to go.\n", + "\n", + "MERCUTIO.\n", + "Why, may one ask?\n", + "\n", + "ROMEO.\n", + "I dreamt a dream tonight.\n", + "\n", + "MERCUTIO.\n", + "And so did I.\n", + "\n", + "ROMEO.\n", + "Well what was yours?\n", + "\n", + "MERCUTIO.\n", + "That dreamers often lie.\n", + "\n", + "ROMEO.\n", + "In bed asleep, while they do dream things true.\n", + "\n", + "MERCUTIO.\n", + "O, then, I see Queen Mab hath been with you.\n", + "She is the fairies’ midwife, and she comes\n", + "In shape no bigger than an agate-stone\n", + "On the fore-finger of an alderman,\n", + "Drawn with a team of little atomies\n", + "Over men’s noses as they lie asleep:\n", + "Her waggon-spokes made of long spinners’ legs;\n", + "The cover, of the wings of grasshoppers;\n", + "Her traces, of the smallest spider’s web;\n", + "The collars, of the moonshine’s watery beams;\n", + "Her whip of cricket’s bone; the lash, of film;\n", + "Her waggoner, a small grey-coated gnat,\n", + "Not half so big as a round little worm\n", + "Prick’d from the lazy finger of a maid:\n", + "Her chariot is an empty hazelnut,\n", + "Made by the joiner squirrel or old grub,\n", + "Time out o’ mind the fairies’ coachmakers.\n", + "And in this state she gallops night by night\n", + "Through lovers’ brains, and then they dream of love;\n", + "O’er courtiers’ knees, that dream on curtsies straight;\n", + "O’er lawyers’ fingers, who straight dream on fees;\n", + "O’er ladies’ lips, who straight on kisses dream,\n", + "Which oft the angry Mab with blisters plagues,\n", + "Because their breaths with sweetmeats tainted are:\n", + "Sometime she gallops o’er a courtier’s nose,\n", + "And then dreams he of smelling out a suit;\n", + "And sometime comes she with a tithe-pig’s tail,\n", + "Tickling a parson’s nose as a lies asleep,\n", + "Then dreams he of another benefice:\n", + "Sometime she driveth o’er a soldier’s neck,\n", + "And then dreams he of cutting foreign throats,\n", + "Of breaches, ambuscados, Spanish blades,\n", + "Of healths five fathom deep; and then anon\n", + "Drums in his ear, at which he starts and wakes;\n", + "And, being thus frighted, swears a prayer or two,\n", + "And sleeps again. This is that very Mab\n", + "That plats the manes of horses in the night;\n", + "And bakes the elf-locks in foul sluttish hairs,\n", + "Which, once untangled, much misfortune bodes:\n", + "This is the hag, when maids lie on their backs,\n", + "That presses them, and learns them first to bear,\n", + "Making them women of good carriage:\n", + "This is she,—\n", + "\n", + "ROMEO.\n", + "Peace, peace, Mercutio, peace,\n", + "Thou talk’st of nothing.\n", + "\n", + "MERCUTIO.\n", + "True, I talk of dreams,\n", + "Which are the children of an idle brain,\n", + "Begot of nothing but vain fantasy,\n", + "Which is as thin of substance as the air,\n", + "And more inconstant than the wind, who woos\n", + "Even now the frozen bosom of the north,\n", + "And, being anger’d, puffs away from thence,\n", + "Turning his side to the dew-dropping south.\n", + "\n", + "BENVOLIO.\n", + "This wind you talk of blows us from ourselves:\n", + "Supper is done, and we shall come too late.\n", + "\n", + "ROMEO.\n", + "I fear too early: for my mind misgives\n", + "Some consequence yet hanging in the stars,\n", + "Shall bitterly begin his fearful date\n", + "With this night’s revels; and expire the term\n", + "Of a despised life, clos’d in my breast\n", + "By some vile forfeit of untimely death.\n", + "But he that hath the steerage of my course\n", + "Direct my suit. On, lusty gentlemen!\n", + "\n", + "BENVOLIO.\n", + "Strike, drum.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE V. A Hall in Capulet’s House.\n", + "\n", + " Musicians waiting. Enter Servants.\n", + "\n", + "FIRST SERVANT.\n", + "Where’s Potpan, that he helps not to take away?\n", + "He shift a trencher! He scrape a trencher!\n", + "\n", + "SECOND SERVANT.\n", + "When good manners shall lie all in one or two men’s hands, and they\n", + "unwash’d too, ’tis a foul thing.\n", + "\n", + "FIRST SERVANT.\n", + "Away with the join-stools, remove the court-cupboard, look to the\n", + "plate. Good thou, save me a piece of marchpane; and as thou loves me,\n", + "let the porter let in Susan Grindstone and Nell. Antony and Potpan!\n", + "\n", + "SECOND SERVANT.\n", + "Ay, boy, ready.\n", + "\n", + "FIRST SERVANT.\n", + "You are looked for and called for, asked for and sought for, in the\n", + "great chamber.\n", + "\n", + "SECOND SERVANT.\n", + "We cannot be here and there too. Cheerly, boys. Be brisk awhile, and\n", + "the longer liver take all.\n", + "\n", + " [_Exeunt._]\n", + "\n", + " Enter Capulet, &c. with the Guests and Gentlewomen to the Maskers.\n", + "\n", + "CAPULET.\n", + "Welcome, gentlemen, ladies that have their toes\n", + "Unplagu’d with corns will have a bout with you.\n", + "Ah my mistresses, which of you all\n", + "Will now deny to dance? She that makes dainty,\n", + "She I’ll swear hath corns. Am I come near ye now?\n", + "Welcome, gentlemen! I have seen the day\n", + "That I have worn a visor, and could tell\n", + "A whispering tale in a fair lady’s ear,\n", + "Such as would please; ’tis gone, ’tis gone, ’tis gone,\n", + "You are welcome, gentlemen! Come, musicians, play.\n", + "A hall, a hall, give room! And foot it, girls.\n", + "\n", + " [_Music plays, and they dance._]\n", + "\n", + "More light, you knaves; and turn the tables up,\n", + "And quench the fire, the room is grown too hot.\n", + "Ah sirrah, this unlook’d-for sport comes well.\n", + "Nay sit, nay sit, good cousin Capulet,\n", + "For you and I are past our dancing days;\n", + "How long is’t now since last yourself and I\n", + "Were in a mask?\n", + "\n", + "CAPULET’S COUSIN.\n", + "By’r Lady, thirty years.\n", + "\n", + "CAPULET.\n", + "What, man, ’tis not so much, ’tis not so much:\n", + "’Tis since the nuptial of Lucentio,\n", + "Come Pentecost as quickly as it will,\n", + "Some five and twenty years; and then we mask’d.\n", + "\n", + "CAPULET’S COUSIN.\n", + "’Tis more, ’tis more, his son is elder, sir;\n", + "His son is thirty.\n", + "\n", + "CAPULET.\n", + "Will you tell me that?\n", + "His son was but a ward two years ago.\n", + "\n", + "ROMEO.\n", + "What lady is that, which doth enrich the hand\n", + "Of yonder knight?\n", + "\n", + "SERVANT.\n", + "I know not, sir.\n", + "\n", + "ROMEO.\n", + "O, she doth teach the torches to burn bright!\n", + "It seems she hangs upon the cheek of night\n", + "As a rich jewel in an Ethiop’s ear;\n", + "Beauty too rich for use, for earth too dear!\n", + "So shows a snowy dove trooping with crows\n", + "As yonder lady o’er her fellows shows.\n", + "The measure done, I’ll watch her place of stand,\n", + "And touching hers, make blessed my rude hand.\n", + "Did my heart love till now? Forswear it, sight!\n", + "For I ne’er saw true beauty till this night.\n", + "\n", + "TYBALT.\n", + "This by his voice, should be a Montague.\n", + "Fetch me my rapier, boy. What, dares the slave\n", + "Come hither, cover’d with an antic face,\n", + "To fleer and scorn at our solemnity?\n", + "Now by the stock and honour of my kin,\n", + "To strike him dead I hold it not a sin.\n", + "\n", + "CAPULET.\n", + "Why how now, kinsman!\n", + "Wherefore storm you so?\n", + "\n", + "TYBALT.\n", + "Uncle, this is a Montague, our foe;\n", + "A villain that is hither come in spite,\n", + "To scorn at our solemnity this night.\n", + "\n", + "CAPULET.\n", + "Young Romeo, is it?\n", + "\n", + "TYBALT.\n", + "’Tis he, that villain Romeo.\n", + "\n", + "CAPULET.\n", + "Content thee, gentle coz, let him alone,\n", + "A bears him like a portly gentleman;\n", + "And, to say truth, Verona brags of him\n", + "To be a virtuous and well-govern’d youth.\n", + "I would not for the wealth of all the town\n", + "Here in my house do him disparagement.\n", + "Therefore be patient, take no note of him,\n", + "It is my will; the which if thou respect,\n", + "Show a fair presence and put off these frowns,\n", + "An ill-beseeming semblance for a feast.\n", + "\n", + "TYBALT.\n", + "It fits when such a villain is a guest:\n", + "I’ll not endure him.\n", + "\n", + "CAPULET.\n", + "He shall be endur’d.\n", + "What, goodman boy! I say he shall, go to;\n", + "Am I the master here, or you? Go to.\n", + "You’ll not endure him! God shall mend my soul,\n", + "You’ll make a mutiny among my guests!\n", + "You will set cock-a-hoop, you’ll be the man!\n", + "\n", + "TYBALT.\n", + "Why, uncle, ’tis a shame.\n", + "\n", + "CAPULET.\n", + "Go to, go to!\n", + "You are a saucy boy. Is’t so, indeed?\n", + "This trick may chance to scathe you, I know what.\n", + "You must contrary me! Marry, ’tis time.\n", + "Well said, my hearts!—You are a princox; go:\n", + "Be quiet, or—More light, more light!—For shame!\n", + "I’ll make you quiet. What, cheerly, my hearts.\n", + "\n", + "TYBALT.\n", + "Patience perforce with wilful choler meeting\n", + "Makes my flesh tremble in their different greeting.\n", + "I will withdraw: but this intrusion shall,\n", + "Now seeming sweet, convert to bitter gall.\n", + "\n", + " [_Exit._]\n", + "\n", + "ROMEO.\n", + "[_To Juliet._] If I profane with my unworthiest hand\n", + "This holy shrine, the gentle sin is this,\n", + "My lips, two blushing pilgrims, ready stand\n", + "To smooth that rough touch with a tender kiss.\n", + "\n", + "JULIET.\n", + "Good pilgrim, you do wrong your hand too much,\n", + "Which mannerly devotion shows in this;\n", + "For saints have hands that pilgrims’ hands do touch,\n", + "And palm to palm is holy palmers’ kiss.\n", + "\n", + "ROMEO.\n", + "Have not saints lips, and holy palmers too?\n", + "\n", + "JULIET.\n", + "Ay, pilgrim, lips that they must use in prayer.\n", + "\n", + "ROMEO.\n", + "O, then, dear saint, let lips do what hands do:\n", + "They pray, grant thou, lest faith turn to despair.\n", + "\n", + "JULIET.\n", + "Saints do not move, though grant for prayers’ sake.\n", + "\n", + "ROMEO.\n", + "Then move not while my prayer’s effect I take.\n", + "Thus from my lips, by thine my sin is purg’d.\n", + "[_Kissing her._]\n", + "\n", + "JULIET.\n", + "Then have my lips the sin that they have took.\n", + "\n", + "ROMEO.\n", + "Sin from my lips? O trespass sweetly urg’d!\n", + "Give me my sin again.\n", + "\n", + "JULIET.\n", + "You kiss by the book.\n", + "\n", + "NURSE.\n", + "Madam, your mother craves a word with you.\n", + "\n", + "ROMEO.\n", + "What is her mother?\n", + "\n", + "NURSE.\n", + "Marry, bachelor,\n", + "Her mother is the lady of the house,\n", + "And a good lady, and a wise and virtuous.\n", + "I nurs’d her daughter that you talk’d withal.\n", + "I tell you, he that can lay hold of her\n", + "Shall have the chinks.\n", + "\n", + "ROMEO.\n", + "Is she a Capulet?\n", + "O dear account! My life is my foe’s debt.\n", + "\n", + "BENVOLIO.\n", + "Away, be gone; the sport is at the best.\n", + "\n", + "ROMEO.\n", + "Ay, so I fear; the more is my unrest.\n", + "\n", + "CAPULET.\n", + "Nay, gentlemen, prepare not to be gone,\n", + "We have a trifling foolish banquet towards.\n", + "Is it e’en so? Why then, I thank you all;\n", + "I thank you, honest gentlemen; good night.\n", + "More torches here! Come on then, let’s to bed.\n", + "Ah, sirrah, by my fay, it waxes late,\n", + "I’ll to my rest.\n", + "\n", + " [_Exeunt all but Juliet and Nurse._]\n", + "\n", + "JULIET.\n", + "Come hither, Nurse. What is yond gentleman?\n", + "\n", + "NURSE.\n", + "The son and heir of old Tiberio.\n", + "\n", + "JULIET.\n", + "What’s he that now is going out of door?\n", + "\n", + "NURSE.\n", + "Marry, that I think be young Petruchio.\n", + "\n", + "JULIET.\n", + "What’s he that follows here, that would not dance?\n", + "\n", + "NURSE.\n", + "I know not.\n", + "\n", + "JULIET.\n", + "Go ask his name. If he be married,\n", + "My grave is like to be my wedding bed.\n", + "\n", + "NURSE.\n", + "His name is Romeo, and a Montague,\n", + "The only son of your great enemy.\n", + "\n", + "JULIET.\n", + "My only love sprung from my only hate!\n", + "Too early seen unknown, and known too late!\n", + "Prodigious birth of love it is to me,\n", + "That I must love a loathed enemy.\n", + "\n", + "NURSE.\n", + "What’s this? What’s this?\n", + "\n", + "JULIET.\n", + "A rhyme I learn’d even now\n", + "Of one I danc’d withal.\n", + "\n", + " [_One calls within, ‘Juliet’._]\n", + "\n", + "NURSE.\n", + "Anon, anon!\n", + "Come let’s away, the strangers all are gone.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "\n", + "\n", + "\n", + "ACT II\n", + "\n", + "\n", + " Enter Chorus.\n", + "\n", + "CHORUS.\n", + "Now old desire doth in his deathbed lie,\n", + "And young affection gapes to be his heir;\n", + "That fair for which love groan’d for and would die,\n", + "With tender Juliet match’d, is now not fair.\n", + "Now Romeo is belov’d, and loves again,\n", + "Alike bewitched by the charm of looks;\n", + "But to his foe suppos’d he must complain,\n", + "And she steal love’s sweet bait from fearful hooks:\n", + "Being held a foe, he may not have access\n", + "To breathe such vows as lovers use to swear;\n", + "And she as much in love, her means much less\n", + "To meet her new beloved anywhere.\n", + "But passion lends them power, time means, to meet,\n", + "Tempering extremities with extreme sweet.\n", + "\n", + " [_Exit._]\n", + "\n", + "SCENE I. An open place adjoining Capulet’s Garden.\n", + "\n", + " Enter Romeo.\n", + "\n", + "ROMEO.\n", + "Can I go forward when my heart is here?\n", + "Turn back, dull earth, and find thy centre out.\n", + "\n", + " [_He climbs the wall and leaps down within it._]\n", + "\n", + " Enter Benvolio and Mercutio.\n", + "\n", + "BENVOLIO.\n", + "Romeo! My cousin Romeo! Romeo!\n", + "\n", + "MERCUTIO.\n", + "He is wise,\n", + "And on my life hath stol’n him home to bed.\n", + "\n", + "BENVOLIO.\n", + "He ran this way, and leap’d this orchard wall:\n", + "Call, good Mercutio.\n", + "\n", + "MERCUTIO.\n", + "Nay, I’ll conjure too.\n", + "Romeo! Humours! Madman! Passion! Lover!\n", + "Appear thou in the likeness of a sigh,\n", + "Speak but one rhyme, and I am satisfied;\n", + "Cry but ‘Ah me!’ Pronounce but Love and dove;\n", + "Speak to my gossip Venus one fair word,\n", + "One nickname for her purblind son and heir,\n", + "Young Abraham Cupid, he that shot so trim\n", + "When King Cophetua lov’d the beggar-maid.\n", + "He heareth not, he stirreth not, he moveth not;\n", + "The ape is dead, and I must conjure him.\n", + "I conjure thee by Rosaline’s bright eyes,\n", + "By her high forehead and her scarlet lip,\n", + "By her fine foot, straight leg, and quivering thigh,\n", + "And the demesnes that there adjacent lie,\n", + "That in thy likeness thou appear to us.\n", + "\n", + "BENVOLIO.\n", + "An if he hear thee, thou wilt anger him.\n", + "\n", + "MERCUTIO.\n", + "This cannot anger him. ’Twould anger him\n", + "To raise a spirit in his mistress’ circle,\n", + "Of some strange nature, letting it there stand\n", + "Till she had laid it, and conjur’d it down;\n", + "That were some spite. My invocation\n", + "Is fair and honest, and, in his mistress’ name,\n", + "I conjure only but to raise up him.\n", + "\n", + "BENVOLIO.\n", + "Come, he hath hid himself among these trees\n", + "To be consorted with the humorous night.\n", + "Blind is his love, and best befits the dark.\n", + "\n", + "MERCUTIO.\n", + "If love be blind, love cannot hit the mark.\n", + "Now will he sit under a medlar tree,\n", + "And wish his mistress were that kind of fruit\n", + "As maids call medlars when they laugh alone.\n", + "O Romeo, that she were, O that she were\n", + "An open-arse and thou a poperin pear!\n", + "Romeo, good night. I’ll to my truckle-bed.\n", + "This field-bed is too cold for me to sleep.\n", + "Come, shall we go?\n", + "\n", + "BENVOLIO.\n", + "Go then; for ’tis in vain\n", + "To seek him here that means not to be found.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE II. Capulet’s Garden.\n", + "\n", + " Enter Romeo.\n", + "\n", + "ROMEO.\n", + "He jests at scars that never felt a wound.\n", + "\n", + " Juliet appears above at a window.\n", + "\n", + "But soft, what light through yonder window breaks?\n", + "It is the east, and Juliet is the sun!\n", + "Arise fair sun and kill the envious moon,\n", + "Who is already sick and pale with grief,\n", + "That thou her maid art far more fair than she.\n", + "Be not her maid since she is envious;\n", + "Her vestal livery is but sick and green,\n", + "And none but fools do wear it; cast it off.\n", + "It is my lady, O it is my love!\n", + "O, that she knew she were!\n", + "She speaks, yet she says nothing. What of that?\n", + "Her eye discourses, I will answer it.\n", + "I am too bold, ’tis not to me she speaks.\n", + "Two of the fairest stars in all the heaven,\n", + "Having some business, do entreat her eyes\n", + "To twinkle in their spheres till they return.\n", + "What if her eyes were there, they in her head?\n", + "The brightness of her cheek would shame those stars,\n", + "As daylight doth a lamp; her eyes in heaven\n", + "Would through the airy region stream so bright\n", + "That birds would sing and think it were not night.\n", + "See how she leans her cheek upon her hand.\n", + "O that I were a glove upon that hand,\n", + "That I might touch that cheek.\n", + "\n", + "JULIET.\n", + "Ay me.\n", + "\n", + "ROMEO.\n", + "She speaks.\n", + "O speak again bright angel, for thou art\n", + "As glorious to this night, being o’er my head,\n", + "As is a winged messenger of heaven\n", + "Unto the white-upturned wondering eyes\n", + "Of mortals that fall back to gaze on him\n", + "When he bestrides the lazy-puffing clouds\n", + "And sails upon the bosom of the air.\n", + "\n", + "JULIET.\n", + "O Romeo, Romeo, wherefore art thou Romeo?\n", + "Deny thy father and refuse thy name.\n", + "Or if thou wilt not, be but sworn my love,\n", + "And I’ll no longer be a Capulet.\n", + "\n", + "ROMEO.\n", + "[_Aside._] Shall I hear more, or shall I speak at this?\n", + "\n", + "JULIET.\n", + "’Tis but thy name that is my enemy;\n", + "Thou art thyself, though not a Montague.\n", + "What’s Montague? It is nor hand nor foot,\n", + "Nor arm, nor face, nor any other part\n", + "Belonging to a man. O be some other name.\n", + "What’s in a name? That which we call a rose\n", + "By any other name would smell as sweet;\n", + "So Romeo would, were he not Romeo call’d,\n", + "Retain that dear perfection which he owes\n", + "Without that title. Romeo, doff thy name,\n", + "And for thy name, which is no part of thee,\n", + "Take all myself.\n", + "\n", + "ROMEO.\n", + "I take thee at thy word.\n", + "Call me but love, and I’ll be new baptis’d;\n", + "Henceforth I never will be Romeo.\n", + "\n", + "JULIET.\n", + "What man art thou that, thus bescreen’d in night\n", + "So stumblest on my counsel?\n", + "\n", + "ROMEO.\n", + "By a name\n", + "I know not how to tell thee who I am:\n", + "My name, dear saint, is hateful to myself,\n", + "Because it is an enemy to thee.\n", + "Had I it written, I would tear the word.\n", + "\n", + "JULIET.\n", + "My ears have yet not drunk a hundred words\n", + "Of thy tongue’s utterance, yet I know the sound.\n", + "Art thou not Romeo, and a Montague?\n", + "\n", + "ROMEO.\n", + "Neither, fair maid, if either thee dislike.\n", + "\n", + "JULIET.\n", + "How cam’st thou hither, tell me, and wherefore?\n", + "The orchard walls are high and hard to climb,\n", + "And the place death, considering who thou art,\n", + "If any of my kinsmen find thee here.\n", + "\n", + "ROMEO.\n", + "With love’s light wings did I o’erperch these walls,\n", + "For stony limits cannot hold love out,\n", + "And what love can do, that dares love attempt:\n", + "Therefore thy kinsmen are no stop to me.\n", + "\n", + "JULIET.\n", + "If they do see thee, they will murder thee.\n", + "\n", + "ROMEO.\n", + "Alack, there lies more peril in thine eye\n", + "Than twenty of their swords. Look thou but sweet,\n", + "And I am proof against their enmity.\n", + "\n", + "JULIET.\n", + "I would not for the world they saw thee here.\n", + "\n", + "ROMEO.\n", + "I have night’s cloak to hide me from their eyes,\n", + "And but thou love me, let them find me here.\n", + "My life were better ended by their hate\n", + "Than death prorogued, wanting of thy love.\n", + "\n", + "JULIET.\n", + "By whose direction found’st thou out this place?\n", + "\n", + "ROMEO.\n", + "By love, that first did prompt me to enquire;\n", + "He lent me counsel, and I lent him eyes.\n", + "I am no pilot; yet wert thou as far\n", + "As that vast shore wash’d with the farthest sea,\n", + "I should adventure for such merchandise.\n", + "\n", + "JULIET.\n", + "Thou knowest the mask of night is on my face,\n", + "Else would a maiden blush bepaint my cheek\n", + "For that which thou hast heard me speak tonight.\n", + "Fain would I dwell on form, fain, fain deny\n", + "What I have spoke; but farewell compliment.\n", + "Dost thou love me? I know thou wilt say Ay,\n", + "And I will take thy word. Yet, if thou swear’st,\n", + "Thou mayst prove false. At lovers’ perjuries,\n", + "They say Jove laughs. O gentle Romeo,\n", + "If thou dost love, pronounce it faithfully.\n", + "Or if thou thinkest I am too quickly won,\n", + "I’ll frown and be perverse, and say thee nay,\n", + "So thou wilt woo. But else, not for the world.\n", + "In truth, fair Montague, I am too fond;\n", + "And therefore thou mayst think my ’haviour light:\n", + "But trust me, gentleman, I’ll prove more true\n", + "Than those that have more cunning to be strange.\n", + "I should have been more strange, I must confess,\n", + "But that thou overheard’st, ere I was ’ware,\n", + "My true-love passion; therefore pardon me,\n", + "And not impute this yielding to light love,\n", + "Which the dark night hath so discovered.\n", + "\n", + "ROMEO.\n", + "Lady, by yonder blessed moon I vow,\n", + "That tips with silver all these fruit-tree tops,—\n", + "\n", + "JULIET.\n", + "O swear not by the moon, th’inconstant moon,\n", + "That monthly changes in her circled orb,\n", + "Lest that thy love prove likewise variable.\n", + "\n", + "ROMEO.\n", + "What shall I swear by?\n", + "\n", + "JULIET.\n", + "Do not swear at all.\n", + "Or if thou wilt, swear by thy gracious self,\n", + "Which is the god of my idolatry,\n", + "And I’ll believe thee.\n", + "\n", + "ROMEO.\n", + "If my heart’s dear love,—\n", + "\n", + "JULIET.\n", + "Well, do not swear. Although I joy in thee,\n", + "I have no joy of this contract tonight;\n", + "It is too rash, too unadvis’d, too sudden,\n", + "Too like the lightning, which doth cease to be\n", + "Ere one can say “It lightens.” Sweet, good night.\n", + "This bud of love, by summer’s ripening breath,\n", + "May prove a beauteous flower when next we meet.\n", + "Good night, good night. As sweet repose and rest\n", + "Come to thy heart as that within my breast.\n", + "\n", + "ROMEO.\n", + "O wilt thou leave me so unsatisfied?\n", + "\n", + "JULIET.\n", + "What satisfaction canst thou have tonight?\n", + "\n", + "ROMEO.\n", + "Th’exchange of thy love’s faithful vow for mine.\n", + "\n", + "JULIET.\n", + "I gave thee mine before thou didst request it;\n", + "And yet I would it were to give again.\n", + "\n", + "ROMEO.\n", + "Would’st thou withdraw it? For what purpose, love?\n", + "\n", + "JULIET.\n", + "But to be frank and give it thee again.\n", + "And yet I wish but for the thing I have;\n", + "My bounty is as boundless as the sea,\n", + "My love as deep; the more I give to thee,\n", + "The more I have, for both are infinite.\n", + "I hear some noise within. Dear love, adieu.\n", + "[_Nurse calls within._]\n", + "Anon, good Nurse!—Sweet Montague be true.\n", + "Stay but a little, I will come again.\n", + "\n", + " [_Exit._]\n", + "\n", + "ROMEO.\n", + "O blessed, blessed night. I am afeard,\n", + "Being in night, all this is but a dream,\n", + "Too flattering sweet to be substantial.\n", + "\n", + " Enter Juliet above.\n", + "\n", + "JULIET.\n", + "Three words, dear Romeo, and good night indeed.\n", + "If that thy bent of love be honourable,\n", + "Thy purpose marriage, send me word tomorrow,\n", + "By one that I’ll procure to come to thee,\n", + "Where and what time thou wilt perform the rite,\n", + "And all my fortunes at thy foot I’ll lay\n", + "And follow thee my lord throughout the world.\n", + "\n", + "NURSE.\n", + "[_Within._] Madam.\n", + "\n", + "JULIET.\n", + "I come, anon.— But if thou meanest not well,\n", + "I do beseech thee,—\n", + "\n", + "NURSE.\n", + "[_Within._] Madam.\n", + "\n", + "JULIET.\n", + "By and by I come—\n", + "To cease thy strife and leave me to my grief.\n", + "Tomorrow will I send.\n", + "\n", + "ROMEO.\n", + "So thrive my soul,—\n", + "\n", + "JULIET.\n", + "A thousand times good night.\n", + "\n", + " [_Exit._]\n", + "\n", + "ROMEO.\n", + "A thousand times the worse, to want thy light.\n", + "Love goes toward love as schoolboys from their books,\n", + "But love from love, towards school with heavy looks.\n", + "\n", + " [_Retiring slowly._]\n", + "\n", + " Re-enter Juliet, above.\n", + "\n", + "JULIET.\n", + "Hist! Romeo, hist! O for a falconer’s voice\n", + "To lure this tassel-gentle back again.\n", + "Bondage is hoarse and may not speak aloud,\n", + "Else would I tear the cave where Echo lies,\n", + "And make her airy tongue more hoarse than mine\n", + "With repetition of my Romeo’s name.\n", + "\n", + "ROMEO.\n", + "It is my soul that calls upon my name.\n", + "How silver-sweet sound lovers’ tongues by night,\n", + "Like softest music to attending ears.\n", + "\n", + "JULIET.\n", + "Romeo.\n", + "\n", + "ROMEO.\n", + "My dear?\n", + "\n", + "JULIET.\n", + "What o’clock tomorrow\n", + "Shall I send to thee?\n", + "\n", + "ROMEO.\n", + "By the hour of nine.\n", + "\n", + "JULIET.\n", + "I will not fail. ’Tis twenty years till then.\n", + "I have forgot why I did call thee back.\n", + "\n", + "ROMEO.\n", + "Let me stand here till thou remember it.\n", + "\n", + "JULIET.\n", + "I shall forget, to have thee still stand there,\n", + "Remembering how I love thy company.\n", + "\n", + "ROMEO.\n", + "And I’ll still stay, to have thee still forget,\n", + "Forgetting any other home but this.\n", + "\n", + "JULIET.\n", + "’Tis almost morning; I would have thee gone,\n", + "And yet no farther than a wanton’s bird,\n", + "That lets it hop a little from her hand,\n", + "Like a poor prisoner in his twisted gyves,\n", + "And with a silk thread plucks it back again,\n", + "So loving-jealous of his liberty.\n", + "\n", + "ROMEO.\n", + "I would I were thy bird.\n", + "\n", + "JULIET.\n", + "Sweet, so would I:\n", + "Yet I should kill thee with much cherishing.\n", + "Good night, good night. Parting is such sweet sorrow\n", + "That I shall say good night till it be morrow.\n", + "\n", + " [_Exit._]\n", + "\n", + "ROMEO.\n", + "Sleep dwell upon thine eyes, peace in thy breast.\n", + "Would I were sleep and peace, so sweet to rest.\n", + "Hence will I to my ghostly Sire’s cell,\n", + "His help to crave and my dear hap to tell.\n", + "\n", + " [_Exit._]\n", + "\n", + "SCENE III. Friar Lawrence’s Cell.\n", + "\n", + " Enter Friar Lawrence with a basket.\n", + "\n", + "FRIAR LAWRENCE.\n", + "The grey-ey’d morn smiles on the frowning night,\n", + "Chequering the eastern clouds with streaks of light;\n", + "And fleckled darkness like a drunkard reels\n", + "From forth day’s pathway, made by Titan’s fiery wheels\n", + "Now, ere the sun advance his burning eye,\n", + "The day to cheer, and night’s dank dew to dry,\n", + "I must upfill this osier cage of ours\n", + "With baleful weeds and precious-juiced flowers.\n", + "The earth that’s nature’s mother, is her tomb;\n", + "What is her burying grave, that is her womb:\n", + "And from her womb children of divers kind\n", + "We sucking on her natural bosom find.\n", + "Many for many virtues excellent,\n", + "None but for some, and yet all different.\n", + "O, mickle is the powerful grace that lies\n", + "In plants, herbs, stones, and their true qualities.\n", + "For naught so vile that on the earth doth live\n", + "But to the earth some special good doth give;\n", + "Nor aught so good but, strain’d from that fair use,\n", + "Revolts from true birth, stumbling on abuse.\n", + "Virtue itself turns vice being misapplied,\n", + "And vice sometime’s by action dignified.\n", + "\n", + " Enter Romeo.\n", + "\n", + "Within the infant rind of this weak flower\n", + "Poison hath residence, and medicine power:\n", + "For this, being smelt, with that part cheers each part;\n", + "Being tasted, slays all senses with the heart.\n", + "Two such opposed kings encamp them still\n", + "In man as well as herbs,—grace and rude will;\n", + "And where the worser is predominant,\n", + "Full soon the canker death eats up that plant.\n", + "\n", + "ROMEO.\n", + "Good morrow, father.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Benedicite!\n", + "What early tongue so sweet saluteth me?\n", + "Young son, it argues a distemper’d head\n", + "So soon to bid good morrow to thy bed.\n", + "Care keeps his watch in every old man’s eye,\n", + "And where care lodges sleep will never lie;\n", + "But where unbruised youth with unstuff’d brain\n", + "Doth couch his limbs, there golden sleep doth reign.\n", + "Therefore thy earliness doth me assure\n", + "Thou art uprous’d with some distemperature;\n", + "Or if not so, then here I hit it right,\n", + "Our Romeo hath not been in bed tonight.\n", + "\n", + "ROMEO.\n", + "That last is true; the sweeter rest was mine.\n", + "\n", + "FRIAR LAWRENCE.\n", + "God pardon sin. Wast thou with Rosaline?\n", + "\n", + "ROMEO.\n", + "With Rosaline, my ghostly father? No.\n", + "I have forgot that name, and that name’s woe.\n", + "\n", + "FRIAR LAWRENCE.\n", + "That’s my good son. But where hast thou been then?\n", + "\n", + "ROMEO.\n", + "I’ll tell thee ere thou ask it me again.\n", + "I have been feasting with mine enemy,\n", + "Where on a sudden one hath wounded me\n", + "That’s by me wounded. Both our remedies\n", + "Within thy help and holy physic lies.\n", + "I bear no hatred, blessed man; for lo,\n", + "My intercession likewise steads my foe.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Be plain, good son, and homely in thy drift;\n", + "Riddling confession finds but riddling shrift.\n", + "\n", + "ROMEO.\n", + "Then plainly know my heart’s dear love is set\n", + "On the fair daughter of rich Capulet.\n", + "As mine on hers, so hers is set on mine;\n", + "And all combin’d, save what thou must combine\n", + "By holy marriage. When, and where, and how\n", + "We met, we woo’d, and made exchange of vow,\n", + "I’ll tell thee as we pass; but this I pray,\n", + "That thou consent to marry us today.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Holy Saint Francis! What a change is here!\n", + "Is Rosaline, that thou didst love so dear,\n", + "So soon forsaken? Young men’s love then lies\n", + "Not truly in their hearts, but in their eyes.\n", + "Jesu Maria, what a deal of brine\n", + "Hath wash’d thy sallow cheeks for Rosaline!\n", + "How much salt water thrown away in waste,\n", + "To season love, that of it doth not taste.\n", + "The sun not yet thy sighs from heaven clears,\n", + "Thy old groans yet ring in mine ancient ears.\n", + "Lo here upon thy cheek the stain doth sit\n", + "Of an old tear that is not wash’d off yet.\n", + "If ere thou wast thyself, and these woes thine,\n", + "Thou and these woes were all for Rosaline,\n", + "And art thou chang’d? Pronounce this sentence then,\n", + "Women may fall, when there’s no strength in men.\n", + "\n", + "ROMEO.\n", + "Thou chidd’st me oft for loving Rosaline.\n", + "\n", + "FRIAR LAWRENCE.\n", + "For doting, not for loving, pupil mine.\n", + "\n", + "ROMEO.\n", + "And bad’st me bury love.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Not in a grave\n", + "To lay one in, another out to have.\n", + "\n", + "ROMEO.\n", + "I pray thee chide me not, her I love now\n", + "Doth grace for grace and love for love allow.\n", + "The other did not so.\n", + "\n", + "FRIAR LAWRENCE.\n", + "O, she knew well\n", + "Thy love did read by rote, that could not spell.\n", + "But come young waverer, come go with me,\n", + "In one respect I’ll thy assistant be;\n", + "For this alliance may so happy prove,\n", + "To turn your households’ rancour to pure love.\n", + "\n", + "ROMEO.\n", + "O let us hence; I stand on sudden haste.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Wisely and slow; they stumble that run fast.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE IV. A Street.\n", + "\n", + " Enter Benvolio and Mercutio.\n", + "\n", + "MERCUTIO.\n", + "Where the devil should this Romeo be? Came he not home tonight?\n", + "\n", + "BENVOLIO.\n", + "Not to his father’s; I spoke with his man.\n", + "\n", + "MERCUTIO.\n", + "Why, that same pale hard-hearted wench, that Rosaline, torments him so\n", + "that he will sure run mad.\n", + "\n", + "BENVOLIO.\n", + "Tybalt, the kinsman to old Capulet, hath sent a letter to his father’s\n", + "house.\n", + "\n", + "MERCUTIO.\n", + "A challenge, on my life.\n", + "\n", + "BENVOLIO.\n", + "Romeo will answer it.\n", + "\n", + "MERCUTIO.\n", + "Any man that can write may answer a letter.\n", + "\n", + "BENVOLIO.\n", + "Nay, he will answer the letter’s master, how he dares, being dared.\n", + "\n", + "MERCUTIO.\n", + "Alas poor Romeo, he is already dead, stabbed with a white wench’s black\n", + "eye; run through the ear with a love song, the very pin of his heart\n", + "cleft with the blind bow-boy’s butt-shaft. And is he a man to encounter\n", + "Tybalt?\n", + "\n", + "BENVOLIO.\n", + "Why, what is Tybalt?\n", + "\n", + "MERCUTIO.\n", + "More than Prince of cats. O, he’s the courageous captain of\n", + "compliments. He fights as you sing prick-song, keeps time, distance,\n", + "and proportion. He rests his minim rest, one, two, and the third in\n", + "your bosom: the very butcher of a silk button, a duellist, a duellist;\n", + "a gentleman of the very first house, of the first and second cause. Ah,\n", + "the immortal passado, the punto reverso, the hay.\n", + "\n", + "BENVOLIO.\n", + "The what?\n", + "\n", + "MERCUTIO.\n", + "The pox of such antic lisping, affecting phantasies; these new tuners\n", + "of accent. By Jesu, a very good blade, a very tall man, a very good\n", + "whore. Why, is not this a lamentable thing, grandsire, that we should\n", + "be thus afflicted with these strange flies, these fashion-mongers,\n", + "these pardon-me’s, who stand so much on the new form that they cannot\n", + "sit at ease on the old bench? O their bones, their bones!\n", + "\n", + " Enter Romeo.\n", + "\n", + "BENVOLIO.\n", + "Here comes Romeo, here comes Romeo!\n", + "\n", + "MERCUTIO.\n", + "Without his roe, like a dried herring. O flesh, flesh, how art thou\n", + "fishified! Now is he for the numbers that Petrarch flowed in. Laura, to\n", + "his lady, was but a kitchen wench,—marry, she had a better love to\n", + "berhyme her: Dido a dowdy; Cleopatra a gypsy; Helen and Hero hildings\n", + "and harlots; Thisbe a grey eye or so, but not to the purpose. Signior\n", + "Romeo, bonjour! There’s a French salutation to your French slop. You\n", + "gave us the counterfeit fairly last night.\n", + "\n", + "ROMEO.\n", + "Good morrow to you both. What counterfeit did I give you?\n", + "\n", + "MERCUTIO.\n", + "The slip sir, the slip; can you not conceive?\n", + "\n", + "ROMEO.\n", + "Pardon, good Mercutio, my business was great, and in such a case as\n", + "mine a man may strain courtesy.\n", + "\n", + "MERCUTIO.\n", + "That’s as much as to say, such a case as yours constrains a man to bow\n", + "in the hams.\n", + "\n", + "ROMEO.\n", + "Meaning, to curtsy.\n", + "\n", + "MERCUTIO.\n", + "Thou hast most kindly hit it.\n", + "\n", + "ROMEO.\n", + "A most courteous exposition.\n", + "\n", + "MERCUTIO.\n", + "Nay, I am the very pink of courtesy.\n", + "\n", + "ROMEO.\n", + "Pink for flower.\n", + "\n", + "MERCUTIO.\n", + "Right.\n", + "\n", + "ROMEO.\n", + "Why, then is my pump well flowered.\n", + "\n", + "MERCUTIO.\n", + "Sure wit, follow me this jest now, till thou hast worn out thy pump,\n", + "that when the single sole of it is worn, the jest may remain after the\n", + "wearing, solely singular.\n", + "\n", + "ROMEO.\n", + "O single-soled jest, solely singular for the singleness!\n", + "\n", + "MERCUTIO.\n", + "Come between us, good Benvolio; my wits faint.\n", + "\n", + "ROMEO.\n", + "Swits and spurs, swits and spurs; or I’ll cry a match.\n", + "\n", + "MERCUTIO.\n", + "Nay, if thy wits run the wild-goose chase, I am done. For thou hast\n", + "more of the wild-goose in one of thy wits, than I am sure, I have in my\n", + "whole five. Was I with you there for the goose?\n", + "\n", + "ROMEO.\n", + "Thou wast never with me for anything, when thou wast not there for the\n", + "goose.\n", + "\n", + "MERCUTIO.\n", + "I will bite thee by the ear for that jest.\n", + "\n", + "ROMEO.\n", + "Nay, good goose, bite not.\n", + "\n", + "MERCUTIO.\n", + "Thy wit is a very bitter sweeting, it is a most sharp sauce.\n", + "\n", + "ROMEO.\n", + "And is it not then well served in to a sweet goose?\n", + "\n", + "MERCUTIO.\n", + "O here’s a wit of cheveril, that stretches from an inch narrow to an\n", + "ell broad.\n", + "\n", + "ROMEO.\n", + "I stretch it out for that word broad, which added to the goose, proves\n", + "thee far and wide a broad goose.\n", + "\n", + "MERCUTIO.\n", + "Why, is not this better now than groaning for love? Now art thou\n", + "sociable, now art thou Romeo; now art thou what thou art, by art as\n", + "well as by nature. For this drivelling love is like a great natural,\n", + "that runs lolling up and down to hide his bauble in a hole.\n", + "\n", + "BENVOLIO.\n", + "Stop there, stop there.\n", + "\n", + "MERCUTIO.\n", + "Thou desirest me to stop in my tale against the hair.\n", + "\n", + "BENVOLIO.\n", + "Thou wouldst else have made thy tale large.\n", + "\n", + "MERCUTIO.\n", + "O, thou art deceived; I would have made it short, for I was come to the\n", + "whole depth of my tale, and meant indeed to occupy the argument no\n", + "longer.\n", + "\n", + " Enter Nurse and Peter.\n", + "\n", + "ROMEO.\n", + "Here’s goodly gear!\n", + "A sail, a sail!\n", + "\n", + "MERCUTIO.\n", + "Two, two; a shirt and a smock.\n", + "\n", + "NURSE.\n", + "Peter!\n", + "\n", + "PETER.\n", + "Anon.\n", + "\n", + "NURSE.\n", + "My fan, Peter.\n", + "\n", + "MERCUTIO.\n", + "Good Peter, to hide her face; for her fan’s the fairer face.\n", + "\n", + "NURSE.\n", + "God ye good morrow, gentlemen.\n", + "\n", + "MERCUTIO.\n", + "God ye good-den, fair gentlewoman.\n", + "\n", + "NURSE.\n", + "Is it good-den?\n", + "\n", + "MERCUTIO.\n", + "’Tis no less, I tell ye; for the bawdy hand of the dial is now upon the\n", + "prick of noon.\n", + "\n", + "NURSE.\n", + "Out upon you! What a man are you?\n", + "\n", + "ROMEO.\n", + "One, gentlewoman, that God hath made for himself to mar.\n", + "\n", + "NURSE.\n", + "By my troth, it is well said; for himself to mar, quoth a? Gentlemen,\n", + "can any of you tell me where I may find the young Romeo?\n", + "\n", + "ROMEO.\n", + "I can tell you: but young Romeo will be older when you have found him\n", + "than he was when you sought him. I am the youngest of that name, for\n", + "fault of a worse.\n", + "\n", + "NURSE.\n", + "You say well.\n", + "\n", + "MERCUTIO.\n", + "Yea, is the worst well? Very well took, i’faith; wisely, wisely.\n", + "\n", + "NURSE.\n", + "If you be he, sir, I desire some confidence with you.\n", + "\n", + "BENVOLIO.\n", + "She will endite him to some supper.\n", + "\n", + "MERCUTIO.\n", + "A bawd, a bawd, a bawd! So ho!\n", + "\n", + "ROMEO.\n", + "What hast thou found?\n", + "\n", + "MERCUTIO.\n", + "No hare, sir; unless a hare, sir, in a lenten pie, that is something\n", + "stale and hoar ere it be spent.\n", + "[_Sings._]\n", + " An old hare hoar,\n", + " And an old hare hoar,\n", + " Is very good meat in Lent;\n", + " But a hare that is hoar\n", + " Is too much for a score\n", + " When it hoars ere it be spent.\n", + "Romeo, will you come to your father’s? We’ll to dinner thither.\n", + "\n", + "ROMEO.\n", + "I will follow you.\n", + "\n", + "MERCUTIO.\n", + "Farewell, ancient lady; farewell, lady, lady, lady.\n", + "\n", + " [_Exeunt Mercutio and Benvolio._]\n", + "\n", + "NURSE.\n", + "I pray you, sir, what saucy merchant was this that was so full of his\n", + "ropery?\n", + "\n", + "ROMEO.\n", + "A gentleman, Nurse, that loves to hear himself talk, and will speak\n", + "more in a minute than he will stand to in a month.\n", + "\n", + "NURSE.\n", + "And a speak anything against me, I’ll take him down, and a were lustier\n", + "than he is, and twenty such Jacks. And if I cannot, I’ll find those\n", + "that shall. Scurvy knave! I am none of his flirt-gills; I am none of\n", + "his skains-mates.—And thou must stand by too and suffer every knave to\n", + "use me at his pleasure!\n", + "\n", + "PETER.\n", + "I saw no man use you at his pleasure; if I had, my weapon should\n", + "quickly have been out. I warrant you, I dare draw as soon as another\n", + "man, if I see occasion in a good quarrel, and the law on my side.\n", + "\n", + "NURSE.\n", + "Now, afore God, I am so vexed that every part about me quivers. Scurvy\n", + "knave. Pray you, sir, a word: and as I told you, my young lady bid me\n", + "enquire you out; what she bade me say, I will keep to myself. But first\n", + "let me tell ye, if ye should lead her in a fool’s paradise, as they\n", + "say, it were a very gross kind of behaviour, as they say; for the\n", + "gentlewoman is young. And therefore, if you should deal double with\n", + "her, truly it were an ill thing to be offered to any gentlewoman, and\n", + "very weak dealing.\n", + "\n", + "ROMEO. Nurse, commend me to thy lady and mistress. I protest unto\n", + "thee,—\n", + "\n", + "NURSE.\n", + "Good heart, and i’faith I will tell her as much. Lord, Lord, she will\n", + "be a joyful woman.\n", + "\n", + "ROMEO.\n", + "What wilt thou tell her, Nurse? Thou dost not mark me.\n", + "\n", + "NURSE.\n", + "I will tell her, sir, that you do protest, which, as I take it, is a\n", + "gentlemanlike offer.\n", + "\n", + "ROMEO.\n", + "Bid her devise\n", + "Some means to come to shrift this afternoon,\n", + "And there she shall at Friar Lawrence’ cell\n", + "Be shriv’d and married. Here is for thy pains.\n", + "\n", + "NURSE.\n", + "No truly, sir; not a penny.\n", + "\n", + "ROMEO.\n", + "Go to; I say you shall.\n", + "\n", + "NURSE.\n", + "This afternoon, sir? Well, she shall be there.\n", + "\n", + "ROMEO.\n", + "And stay, good Nurse, behind the abbey wall.\n", + "Within this hour my man shall be with thee,\n", + "And bring thee cords made like a tackled stair,\n", + "Which to the high topgallant of my joy\n", + "Must be my convoy in the secret night.\n", + "Farewell, be trusty, and I’ll quit thy pains;\n", + "Farewell; commend me to thy mistress.\n", + "\n", + "NURSE.\n", + "Now God in heaven bless thee. Hark you, sir.\n", + "\n", + "ROMEO.\n", + "What say’st thou, my dear Nurse?\n", + "\n", + "NURSE.\n", + "Is your man secret? Did you ne’er hear say,\n", + "Two may keep counsel, putting one away?\n", + "\n", + "ROMEO.\n", + "I warrant thee my man’s as true as steel.\n", + "\n", + "NURSE.\n", + "Well, sir, my mistress is the sweetest lady. Lord, Lord! When ’twas a\n", + "little prating thing,—O, there is a nobleman in town, one Paris, that\n", + "would fain lay knife aboard; but she, good soul, had as lief see a\n", + "toad, a very toad, as see him. I anger her sometimes, and tell her that\n", + "Paris is the properer man, but I’ll warrant you, when I say so, she\n", + "looks as pale as any clout in the versal world. Doth not rosemary and\n", + "Romeo begin both with a letter?\n", + "\n", + "ROMEO.\n", + "Ay, Nurse; what of that? Both with an R.\n", + "\n", + "NURSE.\n", + "Ah, mocker! That’s the dog’s name. R is for the—no, I know it begins\n", + "with some other letter, and she hath the prettiest sententious of it,\n", + "of you and rosemary, that it would do you good to hear it.\n", + "\n", + "ROMEO.\n", + "Commend me to thy lady.\n", + "\n", + "NURSE.\n", + "Ay, a thousand times. Peter!\n", + "\n", + " [_Exit Romeo._]\n", + "\n", + "PETER.\n", + "Anon.\n", + "\n", + "NURSE.\n", + "Before and apace.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE V. Capulet’s Garden.\n", + "\n", + " Enter Juliet.\n", + "\n", + "JULIET.\n", + "The clock struck nine when I did send the Nurse,\n", + "In half an hour she promised to return.\n", + "Perchance she cannot meet him. That’s not so.\n", + "O, she is lame. Love’s heralds should be thoughts,\n", + "Which ten times faster glides than the sun’s beams,\n", + "Driving back shadows over lowering hills:\n", + "Therefore do nimble-pinion’d doves draw love,\n", + "And therefore hath the wind-swift Cupid wings.\n", + "Now is the sun upon the highmost hill\n", + "Of this day’s journey, and from nine till twelve\n", + "Is three long hours, yet she is not come.\n", + "Had she affections and warm youthful blood,\n", + "She’d be as swift in motion as a ball;\n", + "My words would bandy her to my sweet love,\n", + "And his to me.\n", + "But old folks, many feign as they were dead;\n", + "Unwieldy, slow, heavy and pale as lead.\n", + "\n", + " Enter Nurse and Peter.\n", + "\n", + "O God, she comes. O honey Nurse, what news?\n", + "Hast thou met with him? Send thy man away.\n", + "\n", + "NURSE.\n", + "Peter, stay at the gate.\n", + "\n", + " [_Exit Peter._]\n", + "\n", + "JULIET.\n", + "Now, good sweet Nurse,—O Lord, why look’st thou sad?\n", + "Though news be sad, yet tell them merrily;\n", + "If good, thou sham’st the music of sweet news\n", + "By playing it to me with so sour a face.\n", + "\n", + "NURSE.\n", + "I am aweary, give me leave awhile;\n", + "Fie, how my bones ache! What a jaunt have I had!\n", + "\n", + "JULIET.\n", + "I would thou hadst my bones, and I thy news:\n", + "Nay come, I pray thee speak; good, good Nurse, speak.\n", + "\n", + "NURSE.\n", + "Jesu, what haste? Can you not stay a while? Do you not see that I am\n", + "out of breath?\n", + "\n", + "JULIET.\n", + "How art thou out of breath, when thou hast breath\n", + "To say to me that thou art out of breath?\n", + "The excuse that thou dost make in this delay\n", + "Is longer than the tale thou dost excuse.\n", + "Is thy news good or bad? Answer to that;\n", + "Say either, and I’ll stay the circumstance.\n", + "Let me be satisfied, is’t good or bad?\n", + "\n", + "NURSE.\n", + "Well, you have made a simple choice; you know not how to choose a man.\n", + "Romeo? No, not he. Though his face be better than any man’s, yet his\n", + "leg excels all men’s, and for a hand and a foot, and a body, though\n", + "they be not to be talked on, yet they are past compare. He is not the\n", + "flower of courtesy, but I’ll warrant him as gentle as a lamb. Go thy\n", + "ways, wench, serve God. What, have you dined at home?\n", + "\n", + "JULIET.\n", + "No, no. But all this did I know before.\n", + "What says he of our marriage? What of that?\n", + "\n", + "NURSE.\n", + "Lord, how my head aches! What a head have I!\n", + "It beats as it would fall in twenty pieces.\n", + "My back o’ t’other side,—O my back, my back!\n", + "Beshrew your heart for sending me about\n", + "To catch my death with jauncing up and down.\n", + "\n", + "JULIET.\n", + "I’faith, I am sorry that thou art not well.\n", + "Sweet, sweet, sweet Nurse, tell me, what says my love?\n", + "\n", + "NURSE.\n", + "Your love says like an honest gentleman,\n", + "And a courteous, and a kind, and a handsome,\n", + "And I warrant a virtuous,—Where is your mother?\n", + "\n", + "JULIET.\n", + "Where is my mother? Why, she is within.\n", + "Where should she be? How oddly thou repliest.\n", + "‘Your love says, like an honest gentleman,\n", + "‘Where is your mother?’\n", + "\n", + "NURSE.\n", + "O God’s lady dear,\n", + "Are you so hot? Marry, come up, I trow.\n", + "Is this the poultice for my aching bones?\n", + "Henceforward do your messages yourself.\n", + "\n", + "JULIET.\n", + "Here’s such a coil. Come, what says Romeo?\n", + "\n", + "NURSE.\n", + "Have you got leave to go to shrift today?\n", + "\n", + "JULIET.\n", + "I have.\n", + "\n", + "NURSE.\n", + "Then hie you hence to Friar Lawrence’ cell;\n", + "There stays a husband to make you a wife.\n", + "Now comes the wanton blood up in your cheeks,\n", + "They’ll be in scarlet straight at any news.\n", + "Hie you to church. I must another way,\n", + "To fetch a ladder by the which your love\n", + "Must climb a bird’s nest soon when it is dark.\n", + "I am the drudge, and toil in your delight;\n", + "But you shall bear the burden soon at night.\n", + "Go. I’ll to dinner; hie you to the cell.\n", + "\n", + "JULIET.\n", + "Hie to high fortune! Honest Nurse, farewell.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE VI. Friar Lawrence’s Cell.\n", + "\n", + " Enter Friar Lawrence and Romeo.\n", + "\n", + "FRIAR LAWRENCE.\n", + "So smile the heavens upon this holy act\n", + "That after-hours with sorrow chide us not.\n", + "\n", + "ROMEO.\n", + "Amen, amen, but come what sorrow can,\n", + "It cannot countervail the exchange of joy\n", + "That one short minute gives me in her sight.\n", + "Do thou but close our hands with holy words,\n", + "Then love-devouring death do what he dare,\n", + "It is enough I may but call her mine.\n", + "\n", + "FRIAR LAWRENCE.\n", + "These violent delights have violent ends,\n", + "And in their triumph die; like fire and powder,\n", + "Which as they kiss consume. The sweetest honey\n", + "Is loathsome in his own deliciousness,\n", + "And in the taste confounds the appetite.\n", + "Therefore love moderately: long love doth so;\n", + "Too swift arrives as tardy as too slow.\n", + "\n", + " Enter Juliet.\n", + "\n", + "Here comes the lady. O, so light a foot\n", + "Will ne’er wear out the everlasting flint.\n", + "A lover may bestride the gossamers\n", + "That idles in the wanton summer air\n", + "And yet not fall; so light is vanity.\n", + "\n", + "JULIET.\n", + "Good even to my ghostly confessor.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Romeo shall thank thee, daughter, for us both.\n", + "\n", + "JULIET.\n", + "As much to him, else is his thanks too much.\n", + "\n", + "ROMEO.\n", + "Ah, Juliet, if the measure of thy joy\n", + "Be heap’d like mine, and that thy skill be more\n", + "To blazon it, then sweeten with thy breath\n", + "This neighbour air, and let rich music’s tongue\n", + "Unfold the imagin’d happiness that both\n", + "Receive in either by this dear encounter.\n", + "\n", + "JULIET.\n", + "Conceit more rich in matter than in words,\n", + "Brags of his substance, not of ornament.\n", + "They are but beggars that can count their worth;\n", + "But my true love is grown to such excess,\n", + "I cannot sum up sum of half my wealth.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Come, come with me, and we will make short work,\n", + "For, by your leaves, you shall not stay alone\n", + "Till holy church incorporate two in one.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "\n", + "\n", + "\n", + "ACT III\n", + "\n", + "SCENE I. A public Place.\n", + "\n", + "\n", + " Enter Mercutio, Benvolio, Page and Servants.\n", + "\n", + "BENVOLIO.\n", + "I pray thee, good Mercutio, let’s retire:\n", + "The day is hot, the Capulets abroad,\n", + "And if we meet, we shall not scape a brawl,\n", + "For now these hot days, is the mad blood stirring.\n", + "\n", + "MERCUTIO.\n", + "Thou art like one of these fellows that, when he enters the confines of\n", + "a tavern, claps me his sword upon the table, and says ‘God send me no\n", + "need of thee!’ and by the operation of the second cup draws him on the\n", + "drawer, when indeed there is no need.\n", + "\n", + "BENVOLIO.\n", + "Am I like such a fellow?\n", + "\n", + "MERCUTIO.\n", + "Come, come, thou art as hot a Jack in thy mood as any in Italy; and as\n", + "soon moved to be moody, and as soon moody to be moved.\n", + "\n", + "BENVOLIO.\n", + "And what to?\n", + "\n", + "MERCUTIO.\n", + "Nay, an there were two such, we should have none shortly, for one would\n", + "kill the other. Thou? Why, thou wilt quarrel with a man that hath a\n", + "hair more or a hair less in his beard than thou hast. Thou wilt quarrel\n", + "with a man for cracking nuts, having no other reason but because thou\n", + "hast hazel eyes. What eye but such an eye would spy out such a quarrel?\n", + "Thy head is as full of quarrels as an egg is full of meat, and yet thy\n", + "head hath been beaten as addle as an egg for quarrelling. Thou hast\n", + "quarrelled with a man for coughing in the street, because he hath\n", + "wakened thy dog that hath lain asleep in the sun. Didst thou not fall\n", + "out with a tailor for wearing his new doublet before Easter? with\n", + "another for tying his new shoes with an old riband? And yet thou wilt\n", + "tutor me from quarrelling!\n", + "\n", + "BENVOLIO.\n", + "And I were so apt to quarrel as thou art, any man should buy the fee\n", + "simple of my life for an hour and a quarter.\n", + "\n", + "MERCUTIO.\n", + "The fee simple! O simple!\n", + "\n", + " Enter Tybalt and others.\n", + "\n", + "BENVOLIO.\n", + "By my head, here comes the Capulets.\n", + "\n", + "MERCUTIO.\n", + "By my heel, I care not.\n", + "\n", + "TYBALT.\n", + "Follow me close, for I will speak to them.\n", + "Gentlemen, good-den: a word with one of you.\n", + "\n", + "MERCUTIO.\n", + "And but one word with one of us? Couple it with something; make it a\n", + "word and a blow.\n", + "\n", + "TYBALT.\n", + "You shall find me apt enough to that, sir, and you will give me\n", + "occasion.\n", + "\n", + "MERCUTIO.\n", + "Could you not take some occasion without giving?\n", + "\n", + "TYBALT.\n", + "Mercutio, thou consortest with Romeo.\n", + "\n", + "MERCUTIO.\n", + "Consort? What, dost thou make us minstrels? And thou make minstrels of\n", + "us, look to hear nothing but discords. Here’s my fiddlestick, here’s\n", + "that shall make you dance. Zounds, consort!\n", + "\n", + "BENVOLIO.\n", + "We talk here in the public haunt of men.\n", + "Either withdraw unto some private place,\n", + "And reason coldly of your grievances,\n", + "Or else depart; here all eyes gaze on us.\n", + "\n", + "MERCUTIO.\n", + "Men’s eyes were made to look, and let them gaze.\n", + "I will not budge for no man’s pleasure, I.\n", + "\n", + " Enter Romeo.\n", + "\n", + "TYBALT.\n", + "Well, peace be with you, sir, here comes my man.\n", + "\n", + "MERCUTIO.\n", + "But I’ll be hanged, sir, if he wear your livery.\n", + "Marry, go before to field, he’ll be your follower;\n", + "Your worship in that sense may call him man.\n", + "\n", + "TYBALT.\n", + "Romeo, the love I bear thee can afford\n", + "No better term than this: Thou art a villain.\n", + "\n", + "ROMEO.\n", + "Tybalt, the reason that I have to love thee\n", + "Doth much excuse the appertaining rage\n", + "To such a greeting. Villain am I none;\n", + "Therefore farewell; I see thou know’st me not.\n", + "\n", + "TYBALT.\n", + "Boy, this shall not excuse the injuries\n", + "That thou hast done me, therefore turn and draw.\n", + "\n", + "ROMEO.\n", + "I do protest I never injur’d thee,\n", + "But love thee better than thou canst devise\n", + "Till thou shalt know the reason of my love.\n", + "And so good Capulet, which name I tender\n", + "As dearly as mine own, be satisfied.\n", + "\n", + "MERCUTIO.\n", + "O calm, dishonourable, vile submission!\n", + "[_Draws._] Alla stoccata carries it away.\n", + "Tybalt, you rat-catcher, will you walk?\n", + "\n", + "TYBALT.\n", + "What wouldst thou have with me?\n", + "\n", + "MERCUTIO.\n", + "Good King of Cats, nothing but one of your nine lives; that I mean to\n", + "make bold withal, and, as you shall use me hereafter, dry-beat the rest\n", + "of the eight. Will you pluck your sword out of his pilcher by the ears?\n", + "Make haste, lest mine be about your ears ere it be out.\n", + "\n", + "TYBALT.\n", + "[_Drawing._] I am for you.\n", + "\n", + "ROMEO.\n", + "Gentle Mercutio, put thy rapier up.\n", + "\n", + "MERCUTIO.\n", + "Come, sir, your passado.\n", + "\n", + " [_They fight._]\n", + "\n", + "ROMEO.\n", + "Draw, Benvolio; beat down their weapons.\n", + "Gentlemen, for shame, forbear this outrage,\n", + "Tybalt, Mercutio, the Prince expressly hath\n", + "Forbid this bandying in Verona streets.\n", + "Hold, Tybalt! Good Mercutio!\n", + "\n", + " [_Exeunt Tybalt with his Partizans._]\n", + "\n", + "MERCUTIO.\n", + "I am hurt.\n", + "A plague o’ both your houses. I am sped.\n", + "Is he gone, and hath nothing?\n", + "\n", + "BENVOLIO.\n", + "What, art thou hurt?\n", + "\n", + "MERCUTIO.\n", + "Ay, ay, a scratch, a scratch. Marry, ’tis enough.\n", + "Where is my page? Go villain, fetch a surgeon.\n", + "\n", + " [_Exit Page._]\n", + "\n", + "ROMEO.\n", + "Courage, man; the hurt cannot be much.\n", + "\n", + "MERCUTIO.\n", + "No, ’tis not so deep as a well, nor so wide as a church door, but ’tis\n", + "enough, ’twill serve. Ask for me tomorrow, and you shall find me a\n", + "grave man. I am peppered, I warrant, for this world. A plague o’ both\n", + "your houses. Zounds, a dog, a rat, a mouse, a cat, to scratch a man to\n", + "death. A braggart, a rogue, a villain, that fights by the book of\n", + "arithmetic!—Why the devil came you between us? I was hurt under your\n", + "arm.\n", + "\n", + "ROMEO.\n", + "I thought all for the best.\n", + "\n", + "MERCUTIO.\n", + "Help me into some house, Benvolio,\n", + "Or I shall faint. A plague o’ both your houses.\n", + "They have made worms’ meat of me.\n", + "I have it, and soundly too. Your houses!\n", + "\n", + " [_Exeunt Mercutio and Benvolio._]\n", + "\n", + "ROMEO.\n", + "This gentleman, the Prince’s near ally,\n", + "My very friend, hath got his mortal hurt\n", + "In my behalf; my reputation stain’d\n", + "With Tybalt’s slander,—Tybalt, that an hour\n", + "Hath been my cousin. O sweet Juliet,\n", + "Thy beauty hath made me effeminate\n", + "And in my temper soften’d valour’s steel.\n", + "\n", + " Re-enter Benvolio.\n", + "\n", + "BENVOLIO.\n", + "O Romeo, Romeo, brave Mercutio’s dead,\n", + "That gallant spirit hath aspir’d the clouds,\n", + "Which too untimely here did scorn the earth.\n", + "\n", + "ROMEO.\n", + "This day’s black fate on mo days doth depend;\n", + "This but begins the woe others must end.\n", + "\n", + " Re-enter Tybalt.\n", + "\n", + "BENVOLIO.\n", + "Here comes the furious Tybalt back again.\n", + "\n", + "ROMEO.\n", + "Again in triumph, and Mercutio slain?\n", + "Away to heaven respective lenity,\n", + "And fire-ey’d fury be my conduct now!\n", + "Now, Tybalt, take the ‘villain’ back again\n", + "That late thou gav’st me, for Mercutio’s soul\n", + "Is but a little way above our heads,\n", + "Staying for thine to keep him company.\n", + "Either thou or I, or both, must go with him.\n", + "\n", + "TYBALT.\n", + "Thou wretched boy, that didst consort him here,\n", + "Shalt with him hence.\n", + "\n", + "ROMEO.\n", + "This shall determine that.\n", + "\n", + " [_They fight; Tybalt falls._]\n", + "\n", + "BENVOLIO.\n", + "Romeo, away, be gone!\n", + "The citizens are up, and Tybalt slain.\n", + "Stand not amaz’d. The Prince will doom thee death\n", + "If thou art taken. Hence, be gone, away!\n", + "\n", + "ROMEO.\n", + "O, I am fortune’s fool!\n", + "\n", + "BENVOLIO.\n", + "Why dost thou stay?\n", + "\n", + " [_Exit Romeo._]\n", + "\n", + " Enter Citizens.\n", + "\n", + "FIRST CITIZEN.\n", + "Which way ran he that kill’d Mercutio?\n", + "Tybalt, that murderer, which way ran he?\n", + "\n", + "BENVOLIO.\n", + "There lies that Tybalt.\n", + "\n", + "FIRST CITIZEN.\n", + "Up, sir, go with me.\n", + "I charge thee in the Prince’s name obey.\n", + "\n", + " Enter Prince, attended; Montague, Capulet, their Wives and others.\n", + "\n", + "PRINCE.\n", + "Where are the vile beginners of this fray?\n", + "\n", + "BENVOLIO.\n", + "O noble Prince, I can discover all\n", + "The unlucky manage of this fatal brawl.\n", + "There lies the man, slain by young Romeo,\n", + "That slew thy kinsman, brave Mercutio.\n", + "\n", + "LADY CAPULET.\n", + "Tybalt, my cousin! O my brother’s child!\n", + "O Prince! O husband! O, the blood is spill’d\n", + "Of my dear kinsman! Prince, as thou art true,\n", + "For blood of ours shed blood of Montague.\n", + "O cousin, cousin.\n", + "\n", + "PRINCE.\n", + "Benvolio, who began this bloody fray?\n", + "\n", + "BENVOLIO.\n", + "Tybalt, here slain, whom Romeo’s hand did slay;\n", + "Romeo, that spoke him fair, bid him bethink\n", + "How nice the quarrel was, and urg’d withal\n", + "Your high displeasure. All this uttered\n", + "With gentle breath, calm look, knees humbly bow’d\n", + "Could not take truce with the unruly spleen\n", + "Of Tybalt, deaf to peace, but that he tilts\n", + "With piercing steel at bold Mercutio’s breast,\n", + "Who, all as hot, turns deadly point to point,\n", + "And, with a martial scorn, with one hand beats\n", + "Cold death aside, and with the other sends\n", + "It back to Tybalt, whose dexterity\n", + "Retorts it. Romeo he cries aloud,\n", + "‘Hold, friends! Friends, part!’ and swifter than his tongue,\n", + "His agile arm beats down their fatal points,\n", + "And ’twixt them rushes; underneath whose arm\n", + "An envious thrust from Tybalt hit the life\n", + "Of stout Mercutio, and then Tybalt fled.\n", + "But by and by comes back to Romeo,\n", + "Who had but newly entertain’d revenge,\n", + "And to’t they go like lightning; for, ere I\n", + "Could draw to part them was stout Tybalt slain;\n", + "And as he fell did Romeo turn and fly.\n", + "This is the truth, or let Benvolio die.\n", + "\n", + "LADY CAPULET.\n", + "He is a kinsman to the Montague.\n", + "Affection makes him false, he speaks not true.\n", + "Some twenty of them fought in this black strife,\n", + "And all those twenty could but kill one life.\n", + "I beg for justice, which thou, Prince, must give;\n", + "Romeo slew Tybalt, Romeo must not live.\n", + "\n", + "PRINCE.\n", + "Romeo slew him, he slew Mercutio.\n", + "Who now the price of his dear blood doth owe?\n", + "\n", + "MONTAGUE.\n", + "Not Romeo, Prince, he was Mercutio’s friend;\n", + "His fault concludes but what the law should end,\n", + "The life of Tybalt.\n", + "\n", + "PRINCE.\n", + "And for that offence\n", + "Immediately we do exile him hence.\n", + "I have an interest in your hate’s proceeding,\n", + "My blood for your rude brawls doth lie a-bleeding.\n", + "But I’ll amerce you with so strong a fine\n", + "That you shall all repent the loss of mine.\n", + "I will be deaf to pleading and excuses;\n", + "Nor tears nor prayers shall purchase out abuses.\n", + "Therefore use none. Let Romeo hence in haste,\n", + "Else, when he is found, that hour is his last.\n", + "Bear hence this body, and attend our will.\n", + "Mercy but murders, pardoning those that kill.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE II. A Room in Capulet’s House.\n", + "\n", + " Enter Juliet.\n", + "\n", + "JULIET.\n", + "Gallop apace, you fiery-footed steeds,\n", + "Towards Phoebus’ lodging. Such a waggoner\n", + "As Phaeton would whip you to the west\n", + "And bring in cloudy night immediately.\n", + "Spread thy close curtain, love-performing night,\n", + "That runaway’s eyes may wink, and Romeo\n", + "Leap to these arms, untalk’d of and unseen.\n", + "Lovers can see to do their amorous rites\n", + "By their own beauties: or, if love be blind,\n", + "It best agrees with night. Come, civil night,\n", + "Thou sober-suited matron, all in black,\n", + "And learn me how to lose a winning match,\n", + "Play’d for a pair of stainless maidenhoods.\n", + "Hood my unmann’d blood, bating in my cheeks,\n", + "With thy black mantle, till strange love, grow bold,\n", + "Think true love acted simple modesty.\n", + "Come, night, come Romeo; come, thou day in night;\n", + "For thou wilt lie upon the wings of night\n", + "Whiter than new snow upon a raven’s back.\n", + "Come gentle night, come loving black-brow’d night,\n", + "Give me my Romeo, and when I shall die,\n", + "Take him and cut him out in little stars,\n", + "And he will make the face of heaven so fine\n", + "That all the world will be in love with night,\n", + "And pay no worship to the garish sun.\n", + "O, I have bought the mansion of a love,\n", + "But not possess’d it; and though I am sold,\n", + "Not yet enjoy’d. So tedious is this day\n", + "As is the night before some festival\n", + "To an impatient child that hath new robes\n", + "And may not wear them. O, here comes my Nurse,\n", + "And she brings news, and every tongue that speaks\n", + "But Romeo’s name speaks heavenly eloquence.\n", + "\n", + " Enter Nurse, with cords.\n", + "\n", + "Now, Nurse, what news? What hast thou there?\n", + "The cords that Romeo bid thee fetch?\n", + "\n", + "NURSE.\n", + "Ay, ay, the cords.\n", + "\n", + " [_Throws them down._]\n", + "\n", + "JULIET.\n", + "Ay me, what news? Why dost thou wring thy hands?\n", + "\n", + "NURSE.\n", + "Ah, well-a-day, he’s dead, he’s dead, he’s dead!\n", + "We are undone, lady, we are undone.\n", + "Alack the day, he’s gone, he’s kill’d, he’s dead.\n", + "\n", + "JULIET.\n", + "Can heaven be so envious?\n", + "\n", + "NURSE.\n", + "Romeo can,\n", + "Though heaven cannot. O Romeo, Romeo.\n", + "Who ever would have thought it? Romeo!\n", + "\n", + "JULIET.\n", + "What devil art thou, that dost torment me thus?\n", + "This torture should be roar’d in dismal hell.\n", + "Hath Romeo slain himself? Say thou but Ay,\n", + "And that bare vowel I shall poison more\n", + "Than the death-darting eye of cockatrice.\n", + "I am not I if there be such an I;\n", + "Or those eyes shut that make thee answer Ay.\n", + "If he be slain, say Ay; or if not, No.\n", + "Brief sounds determine of my weal or woe.\n", + "\n", + "NURSE.\n", + "I saw the wound, I saw it with mine eyes,\n", + "God save the mark!—here on his manly breast.\n", + "A piteous corse, a bloody piteous corse;\n", + "Pale, pale as ashes, all bedaub’d in blood,\n", + "All in gore-blood. I swounded at the sight.\n", + "\n", + "JULIET.\n", + "O, break, my heart. Poor bankrout, break at once.\n", + "To prison, eyes; ne’er look on liberty.\n", + "Vile earth to earth resign; end motion here,\n", + "And thou and Romeo press one heavy bier.\n", + "\n", + "NURSE.\n", + "O Tybalt, Tybalt, the best friend I had.\n", + "O courteous Tybalt, honest gentleman!\n", + "That ever I should live to see thee dead.\n", + "\n", + "JULIET.\n", + "What storm is this that blows so contrary?\n", + "Is Romeo slaughter’d and is Tybalt dead?\n", + "My dearest cousin, and my dearer lord?\n", + "Then dreadful trumpet sound the general doom,\n", + "For who is living, if those two are gone?\n", + "\n", + "NURSE.\n", + "Tybalt is gone, and Romeo banished,\n", + "Romeo that kill’d him, he is banished.\n", + "\n", + "JULIET.\n", + "O God! Did Romeo’s hand shed Tybalt’s blood?\n", + "\n", + "NURSE.\n", + "It did, it did; alas the day, it did.\n", + "\n", + "JULIET.\n", + "O serpent heart, hid with a flowering face!\n", + "Did ever dragon keep so fair a cave?\n", + "Beautiful tyrant, fiend angelical,\n", + "Dove-feather’d raven, wolvish-ravening lamb!\n", + "Despised substance of divinest show!\n", + "Just opposite to what thou justly seem’st,\n", + "A damned saint, an honourable villain!\n", + "O nature, what hadst thou to do in hell\n", + "When thou didst bower the spirit of a fiend\n", + "In mortal paradise of such sweet flesh?\n", + "Was ever book containing such vile matter\n", + "So fairly bound? O, that deceit should dwell\n", + "In such a gorgeous palace.\n", + "\n", + "NURSE.\n", + "There’s no trust,\n", + "No faith, no honesty in men. All perjur’d,\n", + "All forsworn, all naught, all dissemblers.\n", + "Ah, where’s my man? Give me some aqua vitae.\n", + "These griefs, these woes, these sorrows make me old.\n", + "Shame come to Romeo.\n", + "\n", + "JULIET.\n", + "Blister’d be thy tongue\n", + "For such a wish! He was not born to shame.\n", + "Upon his brow shame is asham’d to sit;\n", + "For ’tis a throne where honour may be crown’d\n", + "Sole monarch of the universal earth.\n", + "O, what a beast was I to chide at him!\n", + "\n", + "NURSE.\n", + "Will you speak well of him that kill’d your cousin?\n", + "\n", + "JULIET.\n", + "Shall I speak ill of him that is my husband?\n", + "Ah, poor my lord, what tongue shall smooth thy name,\n", + "When I thy three-hours’ wife have mangled it?\n", + "But wherefore, villain, didst thou kill my cousin?\n", + "That villain cousin would have kill’d my husband.\n", + "Back, foolish tears, back to your native spring,\n", + "Your tributary drops belong to woe,\n", + "Which you mistaking offer up to joy.\n", + "My husband lives, that Tybalt would have slain,\n", + "And Tybalt’s dead, that would have slain my husband.\n", + "All this is comfort; wherefore weep I then?\n", + "Some word there was, worser than Tybalt’s death,\n", + "That murder’d me. I would forget it fain,\n", + "But O, it presses to my memory\n", + "Like damned guilty deeds to sinners’ minds.\n", + "Tybalt is dead, and Romeo banished.\n", + "That ‘banished,’ that one word ‘banished,’\n", + "Hath slain ten thousand Tybalts. Tybalt’s death\n", + "Was woe enough, if it had ended there.\n", + "Or if sour woe delights in fellowship,\n", + "And needly will be rank’d with other griefs,\n", + "Why follow’d not, when she said Tybalt’s dead,\n", + "Thy father or thy mother, nay or both,\n", + "Which modern lamentation might have mov’d?\n", + "But with a rear-ward following Tybalt’s death,\n", + "‘Romeo is banished’—to speak that word\n", + "Is father, mother, Tybalt, Romeo, Juliet,\n", + "All slain, all dead. Romeo is banished,\n", + "There is no end, no limit, measure, bound,\n", + "In that word’s death, no words can that woe sound.\n", + "Where is my father and my mother, Nurse?\n", + "\n", + "NURSE.\n", + "Weeping and wailing over Tybalt’s corse.\n", + "Will you go to them? I will bring you thither.\n", + "\n", + "JULIET.\n", + "Wash they his wounds with tears. Mine shall be spent,\n", + "When theirs are dry, for Romeo’s banishment.\n", + "Take up those cords. Poor ropes, you are beguil’d,\n", + "Both you and I; for Romeo is exil’d.\n", + "He made you for a highway to my bed,\n", + "But I, a maid, die maiden-widowed.\n", + "Come cords, come Nurse, I’ll to my wedding bed,\n", + "And death, not Romeo, take my maidenhead.\n", + "\n", + "NURSE.\n", + "Hie to your chamber. I’ll find Romeo\n", + "To comfort you. I wot well where he is.\n", + "Hark ye, your Romeo will be here at night.\n", + "I’ll to him, he is hid at Lawrence’ cell.\n", + "\n", + "JULIET.\n", + "O find him, give this ring to my true knight,\n", + "And bid him come to take his last farewell.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE III. Friar Lawrence’s cell.\n", + "\n", + " Enter Friar Lawrence.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Romeo, come forth; come forth, thou fearful man.\n", + "Affliction is enanmour’d of thy parts\n", + "And thou art wedded to calamity.\n", + "\n", + " Enter Romeo.\n", + "\n", + "ROMEO.\n", + "Father, what news? What is the Prince’s doom?\n", + "What sorrow craves acquaintance at my hand,\n", + "That I yet know not?\n", + "\n", + "FRIAR LAWRENCE.\n", + "Too familiar\n", + "Is my dear son with such sour company.\n", + "I bring thee tidings of the Prince’s doom.\n", + "\n", + "ROMEO.\n", + "What less than doomsday is the Prince’s doom?\n", + "\n", + "FRIAR LAWRENCE.\n", + "A gentler judgment vanish’d from his lips,\n", + "Not body’s death, but body’s banishment.\n", + "\n", + "ROMEO.\n", + "Ha, banishment? Be merciful, say death;\n", + "For exile hath more terror in his look,\n", + "Much more than death. Do not say banishment.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Hence from Verona art thou banished.\n", + "Be patient, for the world is broad and wide.\n", + "\n", + "ROMEO.\n", + "There is no world without Verona walls,\n", + "But purgatory, torture, hell itself.\n", + "Hence banished is banish’d from the world,\n", + "And world’s exile is death. Then banished\n", + "Is death misterm’d. Calling death banished,\n", + "Thou cutt’st my head off with a golden axe,\n", + "And smilest upon the stroke that murders me.\n", + "\n", + "FRIAR LAWRENCE.\n", + "O deadly sin, O rude unthankfulness!\n", + "Thy fault our law calls death, but the kind Prince,\n", + "Taking thy part, hath brush’d aside the law,\n", + "And turn’d that black word death to banishment.\n", + "This is dear mercy, and thou see’st it not.\n", + "\n", + "ROMEO.\n", + "’Tis torture, and not mercy. Heaven is here\n", + "Where Juliet lives, and every cat and dog,\n", + "And little mouse, every unworthy thing,\n", + "Live here in heaven and may look on her,\n", + "But Romeo may not. More validity,\n", + "More honourable state, more courtship lives\n", + "In carrion flies than Romeo. They may seize\n", + "On the white wonder of dear Juliet’s hand,\n", + "And steal immortal blessing from her lips,\n", + "Who, even in pure and vestal modesty\n", + "Still blush, as thinking their own kisses sin.\n", + "But Romeo may not, he is banished.\n", + "This may flies do, when I from this must fly.\n", + "They are free men but I am banished.\n", + "And say’st thou yet that exile is not death?\n", + "Hadst thou no poison mix’d, no sharp-ground knife,\n", + "No sudden mean of death, though ne’er so mean,\n", + "But banished to kill me? Banished?\n", + "O Friar, the damned use that word in hell.\n", + "Howling attends it. How hast thou the heart,\n", + "Being a divine, a ghostly confessor,\n", + "A sin-absolver, and my friend profess’d,\n", + "To mangle me with that word banished?\n", + "\n", + "FRIAR LAWRENCE.\n", + "Thou fond mad man, hear me speak a little,\n", + "\n", + "ROMEO.\n", + "O, thou wilt speak again of banishment.\n", + "\n", + "FRIAR LAWRENCE.\n", + "I’ll give thee armour to keep off that word,\n", + "Adversity’s sweet milk, philosophy,\n", + "To comfort thee, though thou art banished.\n", + "\n", + "ROMEO.\n", + "Yet banished? Hang up philosophy.\n", + "Unless philosophy can make a Juliet,\n", + "Displant a town, reverse a Prince’s doom,\n", + "It helps not, it prevails not, talk no more.\n", + "\n", + "FRIAR LAWRENCE.\n", + "O, then I see that mad men have no ears.\n", + "\n", + "ROMEO.\n", + "How should they, when that wise men have no eyes?\n", + "\n", + "FRIAR LAWRENCE.\n", + "Let me dispute with thee of thy estate.\n", + "\n", + "ROMEO.\n", + "Thou canst not speak of that thou dost not feel.\n", + "Wert thou as young as I, Juliet thy love,\n", + "An hour but married, Tybalt murdered,\n", + "Doting like me, and like me banished,\n", + "Then mightst thou speak, then mightst thou tear thy hair,\n", + "And fall upon the ground as I do now,\n", + "Taking the measure of an unmade grave.\n", + "\n", + " [_Knocking within._]\n", + "\n", + "FRIAR LAWRENCE.\n", + "Arise; one knocks. Good Romeo, hide thyself.\n", + "\n", + "ROMEO.\n", + "Not I, unless the breath of heartsick groans\n", + "Mist-like infold me from the search of eyes.\n", + "\n", + " [_Knocking._]\n", + "\n", + "FRIAR LAWRENCE.\n", + "Hark, how they knock!—Who’s there?—Romeo, arise,\n", + "Thou wilt be taken.—Stay awhile.—Stand up.\n", + "\n", + " [_Knocking._]\n", + "\n", + "Run to my study.—By-and-by.—God’s will,\n", + "What simpleness is this.—I come, I come.\n", + "\n", + " [_Knocking._]\n", + "\n", + "Who knocks so hard? Whence come you, what’s your will?\n", + "\n", + "NURSE.\n", + "[_Within._] Let me come in, and you shall know my errand.\n", + "I come from Lady Juliet.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Welcome then.\n", + "\n", + " Enter Nurse.\n", + "\n", + "NURSE.\n", + "O holy Friar, O, tell me, holy Friar,\n", + "Where is my lady’s lord, where’s Romeo?\n", + "\n", + "FRIAR LAWRENCE.\n", + "There on the ground, with his own tears made drunk.\n", + "\n", + "NURSE.\n", + "O, he is even in my mistress’ case.\n", + "Just in her case! O woeful sympathy!\n", + "Piteous predicament. Even so lies she,\n", + "Blubbering and weeping, weeping and blubbering.\n", + "Stand up, stand up; stand, and you be a man.\n", + "For Juliet’s sake, for her sake, rise and stand.\n", + "Why should you fall into so deep an O?\n", + "\n", + "ROMEO.\n", + "Nurse.\n", + "\n", + "NURSE.\n", + "Ah sir, ah sir, death’s the end of all.\n", + "\n", + "ROMEO.\n", + "Spakest thou of Juliet? How is it with her?\n", + "Doth not she think me an old murderer,\n", + "Now I have stain’d the childhood of our joy\n", + "With blood remov’d but little from her own?\n", + "Where is she? And how doth she? And what says\n", + "My conceal’d lady to our cancell’d love?\n", + "\n", + "NURSE.\n", + "O, she says nothing, sir, but weeps and weeps;\n", + "And now falls on her bed, and then starts up,\n", + "And Tybalt calls, and then on Romeo cries,\n", + "And then down falls again.\n", + "\n", + "ROMEO.\n", + "As if that name,\n", + "Shot from the deadly level of a gun,\n", + "Did murder her, as that name’s cursed hand\n", + "Murder’d her kinsman. O, tell me, Friar, tell me,\n", + "In what vile part of this anatomy\n", + "Doth my name lodge? Tell me, that I may sack\n", + "The hateful mansion.\n", + "\n", + " [_Drawing his sword._]\n", + "\n", + "FRIAR LAWRENCE.\n", + "Hold thy desperate hand.\n", + "Art thou a man? Thy form cries out thou art.\n", + "Thy tears are womanish, thy wild acts denote\n", + "The unreasonable fury of a beast.\n", + "Unseemly woman in a seeming man,\n", + "And ill-beseeming beast in seeming both!\n", + "Thou hast amaz’d me. By my holy order,\n", + "I thought thy disposition better temper’d.\n", + "Hast thou slain Tybalt? Wilt thou slay thyself?\n", + "And slay thy lady, that in thy life lives,\n", + "By doing damned hate upon thyself?\n", + "Why rail’st thou on thy birth, the heaven and earth?\n", + "Since birth, and heaven and earth, all three do meet\n", + "In thee at once; which thou at once wouldst lose.\n", + "Fie, fie, thou sham’st thy shape, thy love, thy wit,\n", + "Which, like a usurer, abound’st in all,\n", + "And usest none in that true use indeed\n", + "Which should bedeck thy shape, thy love, thy wit.\n", + "Thy noble shape is but a form of wax,\n", + "Digressing from the valour of a man;\n", + "Thy dear love sworn but hollow perjury,\n", + "Killing that love which thou hast vow’d to cherish;\n", + "Thy wit, that ornament to shape and love,\n", + "Misshapen in the conduct of them both,\n", + "Like powder in a skilless soldier’s flask,\n", + "Is set afire by thine own ignorance,\n", + "And thou dismember’d with thine own defence.\n", + "What, rouse thee, man. Thy Juliet is alive,\n", + "For whose dear sake thou wast but lately dead.\n", + "There art thou happy. Tybalt would kill thee,\n", + "But thou slew’st Tybalt; there art thou happy.\n", + "The law that threaten’d death becomes thy friend,\n", + "And turns it to exile; there art thou happy.\n", + "A pack of blessings light upon thy back;\n", + "Happiness courts thee in her best array;\n", + "But like a misshaped and sullen wench,\n", + "Thou putt’st up thy Fortune and thy love.\n", + "Take heed, take heed, for such die miserable.\n", + "Go, get thee to thy love as was decreed,\n", + "Ascend her chamber, hence and comfort her.\n", + "But look thou stay not till the watch be set,\n", + "For then thou canst not pass to Mantua;\n", + "Where thou shalt live till we can find a time\n", + "To blaze your marriage, reconcile your friends,\n", + "Beg pardon of the Prince, and call thee back\n", + "With twenty hundred thousand times more joy\n", + "Than thou went’st forth in lamentation.\n", + "Go before, Nurse. Commend me to thy lady,\n", + "And bid her hasten all the house to bed,\n", + "Which heavy sorrow makes them apt unto.\n", + "Romeo is coming.\n", + "\n", + "NURSE.\n", + "O Lord, I could have stay’d here all the night\n", + "To hear good counsel. O, what learning is!\n", + "My lord, I’ll tell my lady you will come.\n", + "\n", + "ROMEO.\n", + "Do so, and bid my sweet prepare to chide.\n", + "\n", + "NURSE.\n", + "Here sir, a ring she bid me give you, sir.\n", + "Hie you, make haste, for it grows very late.\n", + "\n", + " [_Exit._]\n", + "\n", + "ROMEO.\n", + "How well my comfort is reviv’d by this.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Go hence, good night, and here stands all your state:\n", + "Either be gone before the watch be set,\n", + "Or by the break of day disguis’d from hence.\n", + "Sojourn in Mantua. I’ll find out your man,\n", + "And he shall signify from time to time\n", + "Every good hap to you that chances here.\n", + "Give me thy hand; ’tis late; farewell; good night.\n", + "\n", + "ROMEO.\n", + "But that a joy past joy calls out on me,\n", + "It were a grief so brief to part with thee.\n", + "Farewell.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE IV. A Room in Capulet’s House.\n", + "\n", + " Enter Capulet, Lady Capulet and Paris.\n", + "\n", + "CAPULET.\n", + "Things have fallen out, sir, so unluckily\n", + "That we have had no time to move our daughter.\n", + "Look you, she lov’d her kinsman Tybalt dearly,\n", + "And so did I. Well, we were born to die.\n", + "’Tis very late; she’ll not come down tonight.\n", + "I promise you, but for your company,\n", + "I would have been abed an hour ago.\n", + "\n", + "PARIS.\n", + "These times of woe afford no tune to woo.\n", + "Madam, good night. Commend me to your daughter.\n", + "\n", + "LADY CAPULET.\n", + "I will, and know her mind early tomorrow;\n", + "Tonight she’s mew’d up to her heaviness.\n", + "\n", + "CAPULET.\n", + "Sir Paris, I will make a desperate tender\n", + "Of my child’s love. I think she will be rul’d\n", + "In all respects by me; nay more, I doubt it not.\n", + "Wife, go you to her ere you go to bed,\n", + "Acquaint her here of my son Paris’ love,\n", + "And bid her, mark you me, on Wednesday next,\n", + "But, soft, what day is this?\n", + "\n", + "PARIS.\n", + "Monday, my lord.\n", + "\n", + "CAPULET.\n", + "Monday! Ha, ha! Well, Wednesday is too soon,\n", + "A Thursday let it be; a Thursday, tell her,\n", + "She shall be married to this noble earl.\n", + "Will you be ready? Do you like this haste?\n", + "We’ll keep no great ado,—a friend or two,\n", + "For, hark you, Tybalt being slain so late,\n", + "It may be thought we held him carelessly,\n", + "Being our kinsman, if we revel much.\n", + "Therefore we’ll have some half a dozen friends,\n", + "And there an end. But what say you to Thursday?\n", + "\n", + "PARIS.\n", + "My lord, I would that Thursday were tomorrow.\n", + "\n", + "CAPULET.\n", + "Well, get you gone. A Thursday be it then.\n", + "Go you to Juliet ere you go to bed,\n", + "Prepare her, wife, against this wedding day.\n", + "Farewell, my lord.—Light to my chamber, ho!\n", + "Afore me, it is so very very late that we\n", + "May call it early by and by. Good night.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE V. An open Gallery to Juliet’s Chamber, overlooking the Garden.\n", + "\n", + " Enter Romeo and Juliet.\n", + "\n", + "JULIET.\n", + "Wilt thou be gone? It is not yet near day.\n", + "It was the nightingale, and not the lark,\n", + "That pierc’d the fearful hollow of thine ear;\n", + "Nightly she sings on yond pomegranate tree.\n", + "Believe me, love, it was the nightingale.\n", + "\n", + "ROMEO.\n", + "It was the lark, the herald of the morn,\n", + "No nightingale. Look, love, what envious streaks\n", + "Do lace the severing clouds in yonder east.\n", + "Night’s candles are burnt out, and jocund day\n", + "Stands tiptoe on the misty mountain tops.\n", + "I must be gone and live, or stay and die.\n", + "\n", + "JULIET.\n", + "Yond light is not daylight, I know it, I.\n", + "It is some meteor that the sun exhales\n", + "To be to thee this night a torchbearer\n", + "And light thee on thy way to Mantua.\n", + "Therefore stay yet, thou need’st not to be gone.\n", + "\n", + "ROMEO.\n", + "Let me be ta’en, let me be put to death,\n", + "I am content, so thou wilt have it so.\n", + "I’ll say yon grey is not the morning’s eye,\n", + "’Tis but the pale reflex of Cynthia’s brow.\n", + "Nor that is not the lark whose notes do beat\n", + "The vaulty heaven so high above our heads.\n", + "I have more care to stay than will to go.\n", + "Come, death, and welcome. Juliet wills it so.\n", + "How is’t, my soul? Let’s talk. It is not day.\n", + "\n", + "JULIET.\n", + "It is, it is! Hie hence, be gone, away.\n", + "It is the lark that sings so out of tune,\n", + "Straining harsh discords and unpleasing sharps.\n", + "Some say the lark makes sweet division;\n", + "This doth not so, for she divideth us.\n", + "Some say the lark and loathed toad change eyes.\n", + "O, now I would they had chang’d voices too,\n", + "Since arm from arm that voice doth us affray,\n", + "Hunting thee hence with hunt’s-up to the day.\n", + "O now be gone, more light and light it grows.\n", + "\n", + "ROMEO.\n", + "More light and light, more dark and dark our woes.\n", + "\n", + " Enter Nurse.\n", + "\n", + "NURSE.\n", + "Madam.\n", + "\n", + "JULIET.\n", + "Nurse?\n", + "\n", + "NURSE.\n", + "Your lady mother is coming to your chamber.\n", + "The day is broke, be wary, look about.\n", + "\n", + " [_Exit._]\n", + "\n", + "JULIET.\n", + "Then, window, let day in, and let life out.\n", + "\n", + "ROMEO.\n", + "Farewell, farewell, one kiss, and I’ll descend.\n", + "\n", + " [_Descends._]\n", + "\n", + "JULIET.\n", + "Art thou gone so? Love, lord, ay husband, friend,\n", + "I must hear from thee every day in the hour,\n", + "For in a minute there are many days.\n", + "O, by this count I shall be much in years\n", + "Ere I again behold my Romeo.\n", + "\n", + "ROMEO.\n", + "Farewell!\n", + "I will omit no opportunity\n", + "That may convey my greetings, love, to thee.\n", + "\n", + "JULIET.\n", + "O thinkest thou we shall ever meet again?\n", + "\n", + "ROMEO.\n", + "I doubt it not, and all these woes shall serve\n", + "For sweet discourses in our time to come.\n", + "\n", + "JULIET.\n", + "O God! I have an ill-divining soul!\n", + "Methinks I see thee, now thou art so low,\n", + "As one dead in the bottom of a tomb.\n", + "Either my eyesight fails, or thou look’st pale.\n", + "\n", + "ROMEO.\n", + "And trust me, love, in my eye so do you.\n", + "Dry sorrow drinks our blood. Adieu, adieu.\n", + "\n", + " [_Exit below._]\n", + "\n", + "JULIET.\n", + "O Fortune, Fortune! All men call thee fickle,\n", + "If thou art fickle, what dost thou with him\n", + "That is renown’d for faith? Be fickle, Fortune;\n", + "For then, I hope thou wilt not keep him long\n", + "But send him back.\n", + "\n", + "LADY CAPULET.\n", + "[_Within._] Ho, daughter, are you up?\n", + "\n", + "JULIET.\n", + "Who is’t that calls? Is it my lady mother?\n", + "Is she not down so late, or up so early?\n", + "What unaccustom’d cause procures her hither?\n", + "\n", + " Enter Lady Capulet.\n", + "\n", + "LADY CAPULET.\n", + "Why, how now, Juliet?\n", + "\n", + "JULIET.\n", + "Madam, I am not well.\n", + "\n", + "LADY CAPULET.\n", + "Evermore weeping for your cousin’s death?\n", + "What, wilt thou wash him from his grave with tears?\n", + "And if thou couldst, thou couldst not make him live.\n", + "Therefore have done: some grief shows much of love,\n", + "But much of grief shows still some want of wit.\n", + "\n", + "JULIET.\n", + "Yet let me weep for such a feeling loss.\n", + "\n", + "LADY CAPULET.\n", + "So shall you feel the loss, but not the friend\n", + "Which you weep for.\n", + "\n", + "JULIET.\n", + "Feeling so the loss,\n", + "I cannot choose but ever weep the friend.\n", + "\n", + "LADY CAPULET.\n", + "Well, girl, thou weep’st not so much for his death\n", + "As that the villain lives which slaughter’d him.\n", + "\n", + "JULIET.\n", + "What villain, madam?\n", + "\n", + "LADY CAPULET.\n", + "That same villain Romeo.\n", + "\n", + "JULIET.\n", + "Villain and he be many miles asunder.\n", + "God pardon him. I do, with all my heart.\n", + "And yet no man like he doth grieve my heart.\n", + "\n", + "LADY CAPULET.\n", + "That is because the traitor murderer lives.\n", + "\n", + "JULIET.\n", + "Ay madam, from the reach of these my hands.\n", + "Would none but I might venge my cousin’s death.\n", + "\n", + "LADY CAPULET.\n", + "We will have vengeance for it, fear thou not.\n", + "Then weep no more. I’ll send to one in Mantua,\n", + "Where that same banish’d runagate doth live,\n", + "Shall give him such an unaccustom’d dram\n", + "That he shall soon keep Tybalt company:\n", + "And then I hope thou wilt be satisfied.\n", + "\n", + "JULIET.\n", + "Indeed I never shall be satisfied\n", + "With Romeo till I behold him—dead—\n", + "Is my poor heart so for a kinsman vex’d.\n", + "Madam, if you could find out but a man\n", + "To bear a poison, I would temper it,\n", + "That Romeo should upon receipt thereof,\n", + "Soon sleep in quiet. O, how my heart abhors\n", + "To hear him nam’d, and cannot come to him,\n", + "To wreak the love I bore my cousin\n", + "Upon his body that hath slaughter’d him.\n", + "\n", + "LADY CAPULET.\n", + "Find thou the means, and I’ll find such a man.\n", + "But now I’ll tell thee joyful tidings, girl.\n", + "\n", + "JULIET.\n", + "And joy comes well in such a needy time.\n", + "What are they, I beseech your ladyship?\n", + "\n", + "LADY CAPULET.\n", + "Well, well, thou hast a careful father, child;\n", + "One who to put thee from thy heaviness,\n", + "Hath sorted out a sudden day of joy,\n", + "That thou expects not, nor I look’d not for.\n", + "\n", + "JULIET.\n", + "Madam, in happy time, what day is that?\n", + "\n", + "LADY CAPULET.\n", + "Marry, my child, early next Thursday morn\n", + "The gallant, young, and noble gentleman,\n", + "The County Paris, at Saint Peter’s Church,\n", + "Shall happily make thee there a joyful bride.\n", + "\n", + "JULIET.\n", + "Now by Saint Peter’s Church, and Peter too,\n", + "He shall not make me there a joyful bride.\n", + "I wonder at this haste, that I must wed\n", + "Ere he that should be husband comes to woo.\n", + "I pray you tell my lord and father, madam,\n", + "I will not marry yet; and when I do, I swear\n", + "It shall be Romeo, whom you know I hate,\n", + "Rather than Paris. These are news indeed.\n", + "\n", + "LADY CAPULET.\n", + "Here comes your father, tell him so yourself,\n", + "And see how he will take it at your hands.\n", + "\n", + " Enter Capulet and Nurse.\n", + "\n", + "CAPULET.\n", + "When the sun sets, the air doth drizzle dew;\n", + "But for the sunset of my brother’s son\n", + "It rains downright.\n", + "How now? A conduit, girl? What, still in tears?\n", + "Evermore showering? In one little body\n", + "Thou counterfeits a bark, a sea, a wind.\n", + "For still thy eyes, which I may call the sea,\n", + "Do ebb and flow with tears; the bark thy body is,\n", + "Sailing in this salt flood, the winds, thy sighs,\n", + "Who raging with thy tears and they with them,\n", + "Without a sudden calm will overset\n", + "Thy tempest-tossed body. How now, wife?\n", + "Have you deliver’d to her our decree?\n", + "\n", + "LADY CAPULET.\n", + "Ay, sir; but she will none, she gives you thanks.\n", + "I would the fool were married to her grave.\n", + "\n", + "CAPULET.\n", + "Soft. Take me with you, take me with you, wife.\n", + "How, will she none? Doth she not give us thanks?\n", + "Is she not proud? Doth she not count her blest,\n", + "Unworthy as she is, that we have wrought\n", + "So worthy a gentleman to be her bridegroom?\n", + "\n", + "JULIET.\n", + "Not proud you have, but thankful that you have.\n", + "Proud can I never be of what I hate;\n", + "But thankful even for hate that is meant love.\n", + "\n", + "CAPULET.\n", + "How now, how now, chopp’d logic? What is this?\n", + "Proud, and, I thank you, and I thank you not;\n", + "And yet not proud. Mistress minion you,\n", + "Thank me no thankings, nor proud me no prouds,\n", + "But fettle your fine joints ’gainst Thursday next\n", + "To go with Paris to Saint Peter’s Church,\n", + "Or I will drag thee on a hurdle thither.\n", + "Out, you green-sickness carrion! Out, you baggage!\n", + "You tallow-face!\n", + "\n", + "LADY CAPULET.\n", + "Fie, fie! What, are you mad?\n", + "\n", + "JULIET.\n", + "Good father, I beseech you on my knees,\n", + "Hear me with patience but to speak a word.\n", + "\n", + "CAPULET.\n", + "Hang thee young baggage, disobedient wretch!\n", + "I tell thee what,—get thee to church a Thursday,\n", + "Or never after look me in the face.\n", + "Speak not, reply not, do not answer me.\n", + "My fingers itch. Wife, we scarce thought us blest\n", + "That God had lent us but this only child;\n", + "But now I see this one is one too much,\n", + "And that we have a curse in having her.\n", + "Out on her, hilding.\n", + "\n", + "NURSE.\n", + "God in heaven bless her.\n", + "You are to blame, my lord, to rate her so.\n", + "\n", + "CAPULET.\n", + "And why, my lady wisdom? Hold your tongue,\n", + "Good prudence; smatter with your gossips, go.\n", + "\n", + "NURSE.\n", + "I speak no treason.\n", + "\n", + "CAPULET.\n", + "O God ye good-en!\n", + "\n", + "NURSE.\n", + "May not one speak?\n", + "\n", + "CAPULET.\n", + "Peace, you mumbling fool!\n", + "Utter your gravity o’er a gossip’s bowl,\n", + "For here we need it not.\n", + "\n", + "LADY CAPULET.\n", + "You are too hot.\n", + "\n", + "CAPULET.\n", + "God’s bread, it makes me mad!\n", + "Day, night, hour, ride, time, work, play,\n", + "Alone, in company, still my care hath been\n", + "To have her match’d, and having now provided\n", + "A gentleman of noble parentage,\n", + "Of fair demesnes, youthful, and nobly allied,\n", + "Stuff’d, as they say, with honourable parts,\n", + "Proportion’d as one’s thought would wish a man,\n", + "And then to have a wretched puling fool,\n", + "A whining mammet, in her fortune’s tender,\n", + "To answer, ‘I’ll not wed, I cannot love,\n", + "I am too young, I pray you pardon me.’\n", + "But, and you will not wed, I’ll pardon you.\n", + "Graze where you will, you shall not house with me.\n", + "Look to’t, think on’t, I do not use to jest.\n", + "Thursday is near; lay hand on heart, advise.\n", + "And you be mine, I’ll give you to my friend;\n", + "And you be not, hang, beg, starve, die in the streets,\n", + "For by my soul, I’ll ne’er acknowledge thee,\n", + "Nor what is mine shall never do thee good.\n", + "Trust to’t, bethink you, I’ll not be forsworn.\n", + "\n", + " [_Exit._]\n", + "\n", + "JULIET.\n", + "Is there no pity sitting in the clouds,\n", + "That sees into the bottom of my grief?\n", + "O sweet my mother, cast me not away,\n", + "Delay this marriage for a month, a week,\n", + "Or, if you do not, make the bridal bed\n", + "In that dim monument where Tybalt lies.\n", + "\n", + "LADY CAPULET.\n", + "Talk not to me, for I’ll not speak a word.\n", + "Do as thou wilt, for I have done with thee.\n", + "\n", + " [_Exit._]\n", + "\n", + "JULIET.\n", + "O God! O Nurse, how shall this be prevented?\n", + "My husband is on earth, my faith in heaven.\n", + "How shall that faith return again to earth,\n", + "Unless that husband send it me from heaven\n", + "By leaving earth? Comfort me, counsel me.\n", + "Alack, alack, that heaven should practise stratagems\n", + "Upon so soft a subject as myself.\n", + "What say’st thou? Hast thou not a word of joy?\n", + "Some comfort, Nurse.\n", + "\n", + "NURSE.\n", + "Faith, here it is.\n", + "Romeo is banished; and all the world to nothing\n", + "That he dares ne’er come back to challenge you.\n", + "Or if he do, it needs must be by stealth.\n", + "Then, since the case so stands as now it doth,\n", + "I think it best you married with the County.\n", + "O, he’s a lovely gentleman.\n", + "Romeo’s a dishclout to him. An eagle, madam,\n", + "Hath not so green, so quick, so fair an eye\n", + "As Paris hath. Beshrew my very heart,\n", + "I think you are happy in this second match,\n", + "For it excels your first: or if it did not,\n", + "Your first is dead, or ’twere as good he were,\n", + "As living here and you no use of him.\n", + "\n", + "JULIET.\n", + "Speakest thou from thy heart?\n", + "\n", + "NURSE.\n", + "And from my soul too,\n", + "Or else beshrew them both.\n", + "\n", + "JULIET.\n", + "Amen.\n", + "\n", + "NURSE.\n", + "What?\n", + "\n", + "JULIET.\n", + "Well, thou hast comforted me marvellous much.\n", + "Go in, and tell my lady I am gone,\n", + "Having displeas’d my father, to Lawrence’ cell,\n", + "To make confession and to be absolv’d.\n", + "\n", + "NURSE.\n", + "Marry, I will; and this is wisely done.\n", + "\n", + " [_Exit._]\n", + "\n", + "JULIET.\n", + "Ancient damnation! O most wicked fiend!\n", + "Is it more sin to wish me thus forsworn,\n", + "Or to dispraise my lord with that same tongue\n", + "Which she hath prais’d him with above compare\n", + "So many thousand times? Go, counsellor.\n", + "Thou and my bosom henceforth shall be twain.\n", + "I’ll to the Friar to know his remedy.\n", + "If all else fail, myself have power to die.\n", + "\n", + " [_Exit._]\n", + "\n", + "\n", + "\n", + "\n", + "ACT IV\n", + "\n", + "SCENE I. Friar Lawrence’s Cell.\n", + "\n", + "\n", + " Enter Friar Lawrence and Paris.\n", + "\n", + "FRIAR LAWRENCE.\n", + "On Thursday, sir? The time is very short.\n", + "\n", + "PARIS.\n", + "My father Capulet will have it so;\n", + "And I am nothing slow to slack his haste.\n", + "\n", + "FRIAR LAWRENCE.\n", + "You say you do not know the lady’s mind.\n", + "Uneven is the course; I like it not.\n", + "\n", + "PARIS.\n", + "Immoderately she weeps for Tybalt’s death,\n", + "And therefore have I little talk’d of love;\n", + "For Venus smiles not in a house of tears.\n", + "Now, sir, her father counts it dangerous\n", + "That she do give her sorrow so much sway;\n", + "And in his wisdom, hastes our marriage,\n", + "To stop the inundation of her tears,\n", + "Which, too much minded by herself alone,\n", + "May be put from her by society.\n", + "Now do you know the reason of this haste.\n", + "\n", + "FRIAR LAWRENCE.\n", + "[_Aside._] I would I knew not why it should be slow’d.—\n", + "Look, sir, here comes the lady toward my cell.\n", + "\n", + " Enter Juliet.\n", + "\n", + "PARIS.\n", + "Happily met, my lady and my wife!\n", + "\n", + "JULIET.\n", + "That may be, sir, when I may be a wife.\n", + "\n", + "PARIS.\n", + "That may be, must be, love, on Thursday next.\n", + "\n", + "JULIET.\n", + "What must be shall be.\n", + "\n", + "FRIAR LAWRENCE.\n", + "That’s a certain text.\n", + "\n", + "PARIS.\n", + "Come you to make confession to this father?\n", + "\n", + "JULIET.\n", + "To answer that, I should confess to you.\n", + "\n", + "PARIS.\n", + "Do not deny to him that you love me.\n", + "\n", + "JULIET.\n", + "I will confess to you that I love him.\n", + "\n", + "PARIS.\n", + "So will ye, I am sure, that you love me.\n", + "\n", + "JULIET.\n", + "If I do so, it will be of more price,\n", + "Being spoke behind your back than to your face.\n", + "\n", + "PARIS.\n", + "Poor soul, thy face is much abus’d with tears.\n", + "\n", + "JULIET.\n", + "The tears have got small victory by that;\n", + "For it was bad enough before their spite.\n", + "\n", + "PARIS.\n", + "Thou wrong’st it more than tears with that report.\n", + "\n", + "JULIET.\n", + "That is no slander, sir, which is a truth,\n", + "And what I spake, I spake it to my face.\n", + "\n", + "PARIS.\n", + "Thy face is mine, and thou hast slander’d it.\n", + "\n", + "JULIET.\n", + "It may be so, for it is not mine own.\n", + "Are you at leisure, holy father, now,\n", + "Or shall I come to you at evening mass?\n", + "\n", + "FRIAR LAWRENCE.\n", + "My leisure serves me, pensive daughter, now.—\n", + "My lord, we must entreat the time alone.\n", + "\n", + "PARIS.\n", + "God shield I should disturb devotion!—\n", + "Juliet, on Thursday early will I rouse ye,\n", + "Till then, adieu; and keep this holy kiss.\n", + "\n", + " [_Exit._]\n", + "\n", + "JULIET.\n", + "O shut the door, and when thou hast done so,\n", + "Come weep with me, past hope, past cure, past help!\n", + "\n", + "FRIAR LAWRENCE.\n", + "O Juliet, I already know thy grief;\n", + "It strains me past the compass of my wits.\n", + "I hear thou must, and nothing may prorogue it,\n", + "On Thursday next be married to this County.\n", + "\n", + "JULIET.\n", + "Tell me not, Friar, that thou hear’st of this,\n", + "Unless thou tell me how I may prevent it.\n", + "If in thy wisdom, thou canst give no help,\n", + "Do thou but call my resolution wise,\n", + "And with this knife I’ll help it presently.\n", + "God join’d my heart and Romeo’s, thou our hands;\n", + "And ere this hand, by thee to Romeo’s seal’d,\n", + "Shall be the label to another deed,\n", + "Or my true heart with treacherous revolt\n", + "Turn to another, this shall slay them both.\n", + "Therefore, out of thy long-experienc’d time,\n", + "Give me some present counsel, or behold\n", + "’Twixt my extremes and me this bloody knife\n", + "Shall play the empire, arbitrating that\n", + "Which the commission of thy years and art\n", + "Could to no issue of true honour bring.\n", + "Be not so long to speak. I long to die,\n", + "If what thou speak’st speak not of remedy.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Hold, daughter. I do spy a kind of hope,\n", + "Which craves as desperate an execution\n", + "As that is desperate which we would prevent.\n", + "If, rather than to marry County Paris\n", + "Thou hast the strength of will to slay thyself,\n", + "Then is it likely thou wilt undertake\n", + "A thing like death to chide away this shame,\n", + "That cop’st with death himself to scape from it.\n", + "And if thou dar’st, I’ll give thee remedy.\n", + "\n", + "JULIET.\n", + "O, bid me leap, rather than marry Paris,\n", + "From off the battlements of yonder tower,\n", + "Or walk in thievish ways, or bid me lurk\n", + "Where serpents are. Chain me with roaring bears;\n", + "Or hide me nightly in a charnel-house,\n", + "O’er-cover’d quite with dead men’s rattling bones,\n", + "With reeky shanks and yellow chapless skulls.\n", + "Or bid me go into a new-made grave,\n", + "And hide me with a dead man in his shroud;\n", + "Things that, to hear them told, have made me tremble,\n", + "And I will do it without fear or doubt,\n", + "To live an unstain’d wife to my sweet love.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Hold then. Go home, be merry, give consent\n", + "To marry Paris. Wednesday is tomorrow;\n", + "Tomorrow night look that thou lie alone,\n", + "Let not thy Nurse lie with thee in thy chamber.\n", + "Take thou this vial, being then in bed,\n", + "And this distilled liquor drink thou off,\n", + "When presently through all thy veins shall run\n", + "A cold and drowsy humour; for no pulse\n", + "Shall keep his native progress, but surcease.\n", + "No warmth, no breath shall testify thou livest,\n", + "The roses in thy lips and cheeks shall fade\n", + "To paly ashes; thy eyes’ windows fall,\n", + "Like death when he shuts up the day of life.\n", + "Each part depriv’d of supple government,\n", + "Shall stiff and stark and cold appear like death.\n", + "And in this borrow’d likeness of shrunk death\n", + "Thou shalt continue two and forty hours,\n", + "And then awake as from a pleasant sleep.\n", + "Now when the bridegroom in the morning comes\n", + "To rouse thee from thy bed, there art thou dead.\n", + "Then as the manner of our country is,\n", + "In thy best robes, uncover’d, on the bier,\n", + "Thou shalt be borne to that same ancient vault\n", + "Where all the kindred of the Capulets lie.\n", + "In the meantime, against thou shalt awake,\n", + "Shall Romeo by my letters know our drift,\n", + "And hither shall he come, and he and I\n", + "Will watch thy waking, and that very night\n", + "Shall Romeo bear thee hence to Mantua.\n", + "And this shall free thee from this present shame,\n", + "If no inconstant toy nor womanish fear\n", + "Abate thy valour in the acting it.\n", + "\n", + "JULIET.\n", + "Give me, give me! O tell not me of fear!\n", + "\n", + "FRIAR LAWRENCE.\n", + "Hold; get you gone, be strong and prosperous\n", + "In this resolve. I’ll send a friar with speed\n", + "To Mantua, with my letters to thy lord.\n", + "\n", + "JULIET.\n", + "Love give me strength, and strength shall help afford.\n", + "Farewell, dear father.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE II. Hall in Capulet’s House.\n", + "\n", + " Enter Capulet, Lady Capulet, Nurse and Servants.\n", + "\n", + "CAPULET.\n", + "So many guests invite as here are writ.\n", + "\n", + " [_Exit first Servant._]\n", + "\n", + "Sirrah, go hire me twenty cunning cooks.\n", + "\n", + "SECOND SERVANT.\n", + "You shall have none ill, sir; for I’ll try if they can lick their\n", + "fingers.\n", + "\n", + "CAPULET.\n", + "How canst thou try them so?\n", + "\n", + "SECOND SERVANT.\n", + "Marry, sir, ’tis an ill cook that cannot lick his own fingers;\n", + "therefore he that cannot lick his fingers goes not with me.\n", + "\n", + "CAPULET.\n", + "Go, begone.\n", + "\n", + " [_Exit second Servant._]\n", + "\n", + "We shall be much unfurnish’d for this time.\n", + "What, is my daughter gone to Friar Lawrence?\n", + "\n", + "NURSE.\n", + "Ay, forsooth.\n", + "\n", + "CAPULET.\n", + "Well, he may chance to do some good on her.\n", + "A peevish self-will’d harlotry it is.\n", + "\n", + " Enter Juliet.\n", + "\n", + "NURSE.\n", + "See where she comes from shrift with merry look.\n", + "\n", + "CAPULET.\n", + "How now, my headstrong. Where have you been gadding?\n", + "\n", + "JULIET.\n", + "Where I have learnt me to repent the sin\n", + "Of disobedient opposition\n", + "To you and your behests; and am enjoin’d\n", + "By holy Lawrence to fall prostrate here,\n", + "To beg your pardon. Pardon, I beseech you.\n", + "Henceforward I am ever rul’d by you.\n", + "\n", + "CAPULET.\n", + "Send for the County, go tell him of this.\n", + "I’ll have this knot knit up tomorrow morning.\n", + "\n", + "JULIET.\n", + "I met the youthful lord at Lawrence’ cell,\n", + "And gave him what becomed love I might,\n", + "Not stepping o’er the bounds of modesty.\n", + "\n", + "CAPULET.\n", + "Why, I am glad on’t. This is well. Stand up.\n", + "This is as’t should be. Let me see the County.\n", + "Ay, marry. Go, I say, and fetch him hither.\n", + "Now afore God, this reverend holy Friar,\n", + "All our whole city is much bound to him.\n", + "\n", + "JULIET.\n", + "Nurse, will you go with me into my closet,\n", + "To help me sort such needful ornaments\n", + "As you think fit to furnish me tomorrow?\n", + "\n", + "LADY CAPULET.\n", + "No, not till Thursday. There is time enough.\n", + "\n", + "CAPULET.\n", + "Go, Nurse, go with her. We’ll to church tomorrow.\n", + "\n", + " [_Exeunt Juliet and Nurse._]\n", + "\n", + "LADY CAPULET.\n", + "We shall be short in our provision,\n", + "’Tis now near night.\n", + "\n", + "CAPULET.\n", + "Tush, I will stir about,\n", + "And all things shall be well, I warrant thee, wife.\n", + "Go thou to Juliet, help to deck up her.\n", + "I’ll not to bed tonight, let me alone.\n", + "I’ll play the housewife for this once.—What, ho!—\n", + "They are all forth: well, I will walk myself\n", + "To County Paris, to prepare him up\n", + "Against tomorrow. My heart is wondrous light\n", + "Since this same wayward girl is so reclaim’d.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE III. Juliet’s Chamber.\n", + "\n", + " Enter Juliet and Nurse.\n", + "\n", + "JULIET.\n", + "Ay, those attires are best. But, gentle Nurse,\n", + "I pray thee leave me to myself tonight;\n", + "For I have need of many orisons\n", + "To move the heavens to smile upon my state,\n", + "Which, well thou know’st, is cross and full of sin.\n", + "\n", + " Enter Lady Capulet.\n", + "\n", + "LADY CAPULET.\n", + "What, are you busy, ho? Need you my help?\n", + "\n", + "JULIET.\n", + "No, madam; we have cull’d such necessaries\n", + "As are behoveful for our state tomorrow.\n", + "So please you, let me now be left alone,\n", + "And let the nurse this night sit up with you,\n", + "For I am sure you have your hands full all\n", + "In this so sudden business.\n", + "\n", + "LADY CAPULET.\n", + "Good night.\n", + "Get thee to bed and rest, for thou hast need.\n", + "\n", + " [_Exeunt Lady Capulet and Nurse._]\n", + "\n", + "JULIET.\n", + "Farewell. God knows when we shall meet again.\n", + "I have a faint cold fear thrills through my veins\n", + "That almost freezes up the heat of life.\n", + "I’ll call them back again to comfort me.\n", + "Nurse!—What should she do here?\n", + "My dismal scene I needs must act alone.\n", + "Come, vial.\n", + "What if this mixture do not work at all?\n", + "Shall I be married then tomorrow morning?\n", + "No, No! This shall forbid it. Lie thou there.\n", + "\n", + " [_Laying down her dagger._]\n", + "\n", + "What if it be a poison, which the Friar\n", + "Subtly hath minister’d to have me dead,\n", + "Lest in this marriage he should be dishonour’d,\n", + "Because he married me before to Romeo?\n", + "I fear it is. And yet methinks it should not,\n", + "For he hath still been tried a holy man.\n", + "How if, when I am laid into the tomb,\n", + "I wake before the time that Romeo\n", + "Come to redeem me? There’s a fearful point!\n", + "Shall I not then be stifled in the vault,\n", + "To whose foul mouth no healthsome air breathes in,\n", + "And there die strangled ere my Romeo comes?\n", + "Or, if I live, is it not very like,\n", + "The horrible conceit of death and night,\n", + "Together with the terror of the place,\n", + "As in a vault, an ancient receptacle,\n", + "Where for this many hundred years the bones\n", + "Of all my buried ancestors are pack’d,\n", + "Where bloody Tybalt, yet but green in earth,\n", + "Lies festering in his shroud; where, as they say,\n", + "At some hours in the night spirits resort—\n", + "Alack, alack, is it not like that I,\n", + "So early waking, what with loathsome smells,\n", + "And shrieks like mandrakes torn out of the earth,\n", + "That living mortals, hearing them, run mad.\n", + "O, if I wake, shall I not be distraught,\n", + "Environed with all these hideous fears,\n", + "And madly play with my forefathers’ joints?\n", + "And pluck the mangled Tybalt from his shroud?\n", + "And, in this rage, with some great kinsman’s bone,\n", + "As with a club, dash out my desperate brains?\n", + "O look, methinks I see my cousin’s ghost\n", + "Seeking out Romeo that did spit his body\n", + "Upon a rapier’s point. Stay, Tybalt, stay!\n", + "Romeo, Romeo, Romeo, here’s drink! I drink to thee.\n", + "\n", + " [_Throws herself on the bed._]\n", + "\n", + "SCENE IV. Hall in Capulet’s House.\n", + "\n", + " Enter Lady Capulet and Nurse.\n", + "\n", + "LADY CAPULET.\n", + "Hold, take these keys and fetch more spices, Nurse.\n", + "\n", + "NURSE.\n", + "They call for dates and quinces in the pastry.\n", + "\n", + " Enter Capulet.\n", + "\n", + "CAPULET.\n", + "Come, stir, stir, stir! The second cock hath crow’d,\n", + "The curfew bell hath rung, ’tis three o’clock.\n", + "Look to the bak’d meats, good Angelica;\n", + "Spare not for cost.\n", + "\n", + "NURSE.\n", + "Go, you cot-quean, go,\n", + "Get you to bed; faith, you’ll be sick tomorrow\n", + "For this night’s watching.\n", + "\n", + "CAPULET.\n", + "No, not a whit. What! I have watch’d ere now\n", + "All night for lesser cause, and ne’er been sick.\n", + "\n", + "LADY CAPULET.\n", + "Ay, you have been a mouse-hunt in your time;\n", + "But I will watch you from such watching now.\n", + "\n", + " [_Exeunt Lady Capulet and Nurse._]\n", + "\n", + "CAPULET.\n", + "A jealous-hood, a jealous-hood!\n", + "\n", + " Enter Servants, with spits, logs and baskets.\n", + "\n", + "Now, fellow, what’s there?\n", + "\n", + "FIRST SERVANT.\n", + "Things for the cook, sir; but I know not what.\n", + "\n", + "CAPULET.\n", + "Make haste, make haste.\n", + "\n", + " [_Exit First Servant._]\n", + "\n", + "—Sirrah, fetch drier logs.\n", + "Call Peter, he will show thee where they are.\n", + "\n", + "SECOND SERVANT.\n", + "I have a head, sir, that will find out logs\n", + "And never trouble Peter for the matter.\n", + "\n", + " [_Exit._]\n", + "\n", + "CAPULET.\n", + "Mass and well said; a merry whoreson, ha.\n", + "Thou shalt be loggerhead.—Good faith, ’tis day.\n", + "The County will be here with music straight,\n", + "For so he said he would. I hear him near.\n", + "\n", + " [_Play music._]\n", + "\n", + "Nurse! Wife! What, ho! What, Nurse, I say!\n", + "\n", + " Re-enter Nurse.\n", + "\n", + "Go waken Juliet, go and trim her up.\n", + "I’ll go and chat with Paris. Hie, make haste,\n", + "Make haste; the bridegroom he is come already.\n", + "Make haste I say.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE V. Juliet’s Chamber; Juliet on the bed.\n", + "\n", + " Enter Nurse.\n", + "\n", + "NURSE.\n", + "Mistress! What, mistress! Juliet! Fast, I warrant her, she.\n", + "Why, lamb, why, lady, fie, you slug-abed!\n", + "Why, love, I say! Madam! Sweetheart! Why, bride!\n", + "What, not a word? You take your pennyworths now.\n", + "Sleep for a week; for the next night, I warrant,\n", + "The County Paris hath set up his rest\n", + "That you shall rest but little. God forgive me!\n", + "Marry and amen. How sound is she asleep!\n", + "I needs must wake her. Madam, madam, madam!\n", + "Ay, let the County take you in your bed,\n", + "He’ll fright you up, i’faith. Will it not be?\n", + "What, dress’d, and in your clothes, and down again?\n", + "I must needs wake you. Lady! Lady! Lady!\n", + "Alas, alas! Help, help! My lady’s dead!\n", + "O, well-a-day that ever I was born.\n", + "Some aqua vitae, ho! My lord! My lady!\n", + "\n", + " Enter Lady Capulet.\n", + "\n", + "LADY CAPULET.\n", + "What noise is here?\n", + "\n", + "NURSE.\n", + "O lamentable day!\n", + "\n", + "LADY CAPULET.\n", + "What is the matter?\n", + "\n", + "NURSE.\n", + "Look, look! O heavy day!\n", + "\n", + "LADY CAPULET.\n", + "O me, O me! My child, my only life.\n", + "Revive, look up, or I will die with thee.\n", + "Help, help! Call help.\n", + "\n", + " Enter Capulet.\n", + "\n", + "CAPULET.\n", + "For shame, bring Juliet forth, her lord is come.\n", + "\n", + "NURSE.\n", + "She’s dead, deceas’d, she’s dead; alack the day!\n", + "\n", + "LADY CAPULET.\n", + "Alack the day, she’s dead, she’s dead, she’s dead!\n", + "\n", + "CAPULET.\n", + "Ha! Let me see her. Out alas! She’s cold,\n", + "Her blood is settled and her joints are stiff.\n", + "Life and these lips have long been separated.\n", + "Death lies on her like an untimely frost\n", + "Upon the sweetest flower of all the field.\n", + "\n", + "NURSE.\n", + "O lamentable day!\n", + "\n", + "LADY CAPULET.\n", + "O woful time!\n", + "\n", + "CAPULET.\n", + "Death, that hath ta’en her hence to make me wail,\n", + "Ties up my tongue and will not let me speak.\n", + "\n", + " Enter Friar Lawrence and Paris with Musicians.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Come, is the bride ready to go to church?\n", + "\n", + "CAPULET.\n", + "Ready to go, but never to return.\n", + "O son, the night before thy wedding day\n", + "Hath death lain with thy bride. There she lies,\n", + "Flower as she was, deflowered by him.\n", + "Death is my son-in-law, death is my heir;\n", + "My daughter he hath wedded. I will die\n", + "And leave him all; life, living, all is death’s.\n", + "\n", + "PARIS.\n", + "Have I thought long to see this morning’s face,\n", + "And doth it give me such a sight as this?\n", + "\n", + "LADY CAPULET.\n", + "Accurs’d, unhappy, wretched, hateful day.\n", + "Most miserable hour that e’er time saw\n", + "In lasting labour of his pilgrimage.\n", + "But one, poor one, one poor and loving child,\n", + "But one thing to rejoice and solace in,\n", + "And cruel death hath catch’d it from my sight.\n", + "\n", + "NURSE.\n", + "O woe! O woeful, woeful, woeful day.\n", + "Most lamentable day, most woeful day\n", + "That ever, ever, I did yet behold!\n", + "O day, O day, O day, O hateful day.\n", + "Never was seen so black a day as this.\n", + "O woeful day, O woeful day.\n", + "\n", + "PARIS.\n", + "Beguil’d, divorced, wronged, spited, slain.\n", + "Most detestable death, by thee beguil’d,\n", + "By cruel, cruel thee quite overthrown.\n", + "O love! O life! Not life, but love in death!\n", + "\n", + "CAPULET.\n", + "Despis’d, distressed, hated, martyr’d, kill’d.\n", + "Uncomfortable time, why cam’st thou now\n", + "To murder, murder our solemnity?\n", + "O child! O child! My soul, and not my child,\n", + "Dead art thou. Alack, my child is dead,\n", + "And with my child my joys are buried.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Peace, ho, for shame. Confusion’s cure lives not\n", + "In these confusions. Heaven and yourself\n", + "Had part in this fair maid, now heaven hath all,\n", + "And all the better is it for the maid.\n", + "Your part in her you could not keep from death,\n", + "But heaven keeps his part in eternal life.\n", + "The most you sought was her promotion,\n", + "For ’twas your heaven she should be advanc’d,\n", + "And weep ye now, seeing she is advanc’d\n", + "Above the clouds, as high as heaven itself?\n", + "O, in this love, you love your child so ill\n", + "That you run mad, seeing that she is well.\n", + "She’s not well married that lives married long,\n", + "But she’s best married that dies married young.\n", + "Dry up your tears, and stick your rosemary\n", + "On this fair corse, and, as the custom is,\n", + "And in her best array bear her to church;\n", + "For though fond nature bids us all lament,\n", + "Yet nature’s tears are reason’s merriment.\n", + "\n", + "CAPULET.\n", + "All things that we ordained festival\n", + "Turn from their office to black funeral:\n", + "Our instruments to melancholy bells,\n", + "Our wedding cheer to a sad burial feast;\n", + "Our solemn hymns to sullen dirges change;\n", + "Our bridal flowers serve for a buried corse,\n", + "And all things change them to the contrary.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Sir, go you in, and, madam, go with him,\n", + "And go, Sir Paris, everyone prepare\n", + "To follow this fair corse unto her grave.\n", + "The heavens do lower upon you for some ill;\n", + "Move them no more by crossing their high will.\n", + "\n", + " [_Exeunt Capulet, Lady Capulet, Paris and Friar._]\n", + "\n", + "FIRST MUSICIAN.\n", + "Faith, we may put up our pipes and be gone.\n", + "\n", + "NURSE.\n", + "Honest good fellows, ah, put up, put up,\n", + "For well you know this is a pitiful case.\n", + "\n", + "FIRST MUSICIAN.\n", + "Ay, by my troth, the case may be amended.\n", + "\n", + " [_Exit Nurse._]\n", + "\n", + " Enter Peter.\n", + "\n", + "PETER.\n", + "Musicians, O, musicians, ‘Heart’s ease,’ ‘Heart’s ease’, O, and you\n", + "will have me live, play ‘Heart’s ease.’\n", + "\n", + "FIRST MUSICIAN.\n", + "Why ‘Heart’s ease’?\n", + "\n", + "PETER.\n", + "O musicians, because my heart itself plays ‘My heart is full’. O play\n", + "me some merry dump to comfort me.\n", + "\n", + "FIRST MUSICIAN.\n", + "Not a dump we, ’tis no time to play now.\n", + "\n", + "PETER.\n", + "You will not then?\n", + "\n", + "FIRST MUSICIAN.\n", + "No.\n", + "\n", + "PETER.\n", + "I will then give it you soundly.\n", + "\n", + "FIRST MUSICIAN.\n", + "What will you give us?\n", + "\n", + "PETER.\n", + "No money, on my faith, but the gleek! I will give you the minstrel.\n", + "\n", + "FIRST MUSICIAN.\n", + "Then will I give you the serving-creature.\n", + "\n", + "PETER.\n", + "Then will I lay the serving-creature’s dagger on your pate. I will\n", + "carry no crotchets. I’ll re you, I’ll fa you. Do you note me?\n", + "\n", + "FIRST MUSICIAN.\n", + "And you re us and fa us, you note us.\n", + "\n", + "SECOND MUSICIAN.\n", + "Pray you put up your dagger, and put out your wit.\n", + "\n", + "PETER.\n", + "Then have at you with my wit. I will dry-beat you with an iron wit, and\n", + "put up my iron dagger. Answer me like men.\n", + " ‘When griping griefs the heart doth wound,\n", + " And doleful dumps the mind oppress,\n", + " Then music with her silver sound’—\n", + "Why ‘silver sound’? Why ‘music with her silver sound’? What say you,\n", + "Simon Catling?\n", + "\n", + "FIRST MUSICIAN.\n", + "Marry, sir, because silver hath a sweet sound.\n", + "\n", + "PETER.\n", + "Prates. What say you, Hugh Rebeck?\n", + "\n", + "SECOND MUSICIAN.\n", + "I say ‘silver sound’ because musicians sound for silver.\n", + "\n", + "PETER.\n", + "Prates too! What say you, James Soundpost?\n", + "\n", + "THIRD MUSICIAN.\n", + "Faith, I know not what to say.\n", + "\n", + "PETER.\n", + "O, I cry you mercy, you are the singer. I will say for you. It is\n", + "‘music with her silver sound’ because musicians have no gold for\n", + "sounding.\n", + " ‘Then music with her silver sound\n", + " With speedy help doth lend redress.’\n", + "\n", + " [_Exit._]\n", + "\n", + "FIRST MUSICIAN.\n", + "What a pestilent knave is this same!\n", + "\n", + "SECOND MUSICIAN.\n", + "Hang him, Jack. Come, we’ll in here, tarry for the mourners, and stay\n", + "dinner.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "\n", + "\n", + "\n", + "ACT V\n", + "\n", + "SCENE I. Mantua. A Street.\n", + "\n", + "\n", + " Enter Romeo.\n", + "\n", + "ROMEO.\n", + "If I may trust the flattering eye of sleep,\n", + "My dreams presage some joyful news at hand.\n", + "My bosom’s lord sits lightly in his throne;\n", + "And all this day an unaccustom’d spirit\n", + "Lifts me above the ground with cheerful thoughts.\n", + "I dreamt my lady came and found me dead,—\n", + "Strange dream, that gives a dead man leave to think!—\n", + "And breath’d such life with kisses in my lips,\n", + "That I reviv’d, and was an emperor.\n", + "Ah me, how sweet is love itself possess’d,\n", + "When but love’s shadows are so rich in joy.\n", + "\n", + " Enter Balthasar.\n", + "\n", + "News from Verona! How now, Balthasar?\n", + "Dost thou not bring me letters from the Friar?\n", + "How doth my lady? Is my father well?\n", + "How fares my Juliet? That I ask again;\n", + "For nothing can be ill if she be well.\n", + "\n", + "BALTHASAR.\n", + "Then she is well, and nothing can be ill.\n", + "Her body sleeps in Capel’s monument,\n", + "And her immortal part with angels lives.\n", + "I saw her laid low in her kindred’s vault,\n", + "And presently took post to tell it you.\n", + "O pardon me for bringing these ill news,\n", + "Since you did leave it for my office, sir.\n", + "\n", + "ROMEO.\n", + "Is it even so? Then I defy you, stars!\n", + "Thou know’st my lodging. Get me ink and paper,\n", + "And hire post-horses. I will hence tonight.\n", + "\n", + "BALTHASAR.\n", + "I do beseech you sir, have patience.\n", + "Your looks are pale and wild, and do import\n", + "Some misadventure.\n", + "\n", + "ROMEO.\n", + "Tush, thou art deceiv’d.\n", + "Leave me, and do the thing I bid thee do.\n", + "Hast thou no letters to me from the Friar?\n", + "\n", + "BALTHASAR.\n", + "No, my good lord.\n", + "\n", + "ROMEO.\n", + "No matter. Get thee gone,\n", + "And hire those horses. I’ll be with thee straight.\n", + "\n", + " [_Exit Balthasar._]\n", + "\n", + "Well, Juliet, I will lie with thee tonight.\n", + "Let’s see for means. O mischief thou art swift\n", + "To enter in the thoughts of desperate men.\n", + "I do remember an apothecary,—\n", + "And hereabouts he dwells,—which late I noted\n", + "In tatter’d weeds, with overwhelming brows,\n", + "Culling of simples, meagre were his looks,\n", + "Sharp misery had worn him to the bones;\n", + "And in his needy shop a tortoise hung,\n", + "An alligator stuff’d, and other skins\n", + "Of ill-shaped fishes; and about his shelves\n", + "A beggarly account of empty boxes,\n", + "Green earthen pots, bladders, and musty seeds,\n", + "Remnants of packthread, and old cakes of roses\n", + "Were thinly scatter’d, to make up a show.\n", + "Noting this penury, to myself I said,\n", + "And if a man did need a poison now,\n", + "Whose sale is present death in Mantua,\n", + "Here lives a caitiff wretch would sell it him.\n", + "O, this same thought did but forerun my need,\n", + "And this same needy man must sell it me.\n", + "As I remember, this should be the house.\n", + "Being holiday, the beggar’s shop is shut.\n", + "What, ho! Apothecary!\n", + "\n", + " Enter Apothecary.\n", + "\n", + "APOTHECARY.\n", + "Who calls so loud?\n", + "\n", + "ROMEO.\n", + "Come hither, man. I see that thou art poor.\n", + "Hold, there is forty ducats. Let me have\n", + "A dram of poison, such soon-speeding gear\n", + "As will disperse itself through all the veins,\n", + "That the life-weary taker may fall dead,\n", + "And that the trunk may be discharg’d of breath\n", + "As violently as hasty powder fir’d\n", + "Doth hurry from the fatal cannon’s womb.\n", + "\n", + "APOTHECARY.\n", + "Such mortal drugs I have, but Mantua’s law\n", + "Is death to any he that utters them.\n", + "\n", + "ROMEO.\n", + "Art thou so bare and full of wretchedness,\n", + "And fear’st to die? Famine is in thy cheeks,\n", + "Need and oppression starveth in thine eyes,\n", + "Contempt and beggary hangs upon thy back.\n", + "The world is not thy friend, nor the world’s law;\n", + "The world affords no law to make thee rich;\n", + "Then be not poor, but break it and take this.\n", + "\n", + "APOTHECARY.\n", + "My poverty, but not my will consents.\n", + "\n", + "ROMEO.\n", + "I pay thy poverty, and not thy will.\n", + "\n", + "APOTHECARY.\n", + "Put this in any liquid thing you will\n", + "And drink it off; and, if you had the strength\n", + "Of twenty men, it would despatch you straight.\n", + "\n", + "ROMEO.\n", + "There is thy gold, worse poison to men’s souls,\n", + "Doing more murder in this loathsome world\n", + "Than these poor compounds that thou mayst not sell.\n", + "I sell thee poison, thou hast sold me none.\n", + "Farewell, buy food, and get thyself in flesh.\n", + "Come, cordial and not poison, go with me\n", + "To Juliet’s grave, for there must I use thee.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "SCENE II. Friar Lawrence’s Cell.\n", + "\n", + " Enter Friar John.\n", + "\n", + "FRIAR JOHN.\n", + "Holy Franciscan Friar! Brother, ho!\n", + "\n", + " Enter Friar Lawrence.\n", + "\n", + "FRIAR LAWRENCE.\n", + "This same should be the voice of Friar John.\n", + "Welcome from Mantua. What says Romeo?\n", + "Or, if his mind be writ, give me his letter.\n", + "\n", + "FRIAR JOHN.\n", + "Going to find a barefoot brother out,\n", + "One of our order, to associate me,\n", + "Here in this city visiting the sick,\n", + "And finding him, the searchers of the town,\n", + "Suspecting that we both were in a house\n", + "Where the infectious pestilence did reign,\n", + "Seal’d up the doors, and would not let us forth,\n", + "So that my speed to Mantua there was stay’d.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Who bare my letter then to Romeo?\n", + "\n", + "FRIAR JOHN.\n", + "I could not send it,—here it is again,—\n", + "Nor get a messenger to bring it thee,\n", + "So fearful were they of infection.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Unhappy fortune! By my brotherhood,\n", + "The letter was not nice, but full of charge,\n", + "Of dear import, and the neglecting it\n", + "May do much danger. Friar John, go hence,\n", + "Get me an iron crow and bring it straight\n", + "Unto my cell.\n", + "\n", + "FRIAR JOHN.\n", + "Brother, I’ll go and bring it thee.\n", + "\n", + " [_Exit._]\n", + "\n", + "FRIAR LAWRENCE.\n", + "Now must I to the monument alone.\n", + "Within this three hours will fair Juliet wake.\n", + "She will beshrew me much that Romeo\n", + "Hath had no notice of these accidents;\n", + "But I will write again to Mantua,\n", + "And keep her at my cell till Romeo come.\n", + "Poor living corse, clos’d in a dead man’s tomb.\n", + "\n", + " [_Exit._]\n", + "\n", + "SCENE III. A churchyard; in it a Monument belonging to the Capulets.\n", + "\n", + " Enter Paris, and his Page bearing flowers and a torch.\n", + "\n", + "PARIS.\n", + "Give me thy torch, boy. Hence and stand aloof.\n", + "Yet put it out, for I would not be seen.\n", + "Under yond yew tree lay thee all along,\n", + "Holding thy ear close to the hollow ground;\n", + "So shall no foot upon the churchyard tread,\n", + "Being loose, unfirm, with digging up of graves,\n", + "But thou shalt hear it. Whistle then to me,\n", + "As signal that thou hear’st something approach.\n", + "Give me those flowers. Do as I bid thee, go.\n", + "\n", + "PAGE.\n", + "[_Aside._] I am almost afraid to stand alone\n", + "Here in the churchyard; yet I will adventure.\n", + "\n", + " [_Retires._]\n", + "\n", + "PARIS.\n", + "Sweet flower, with flowers thy bridal bed I strew.\n", + "O woe, thy canopy is dust and stones,\n", + "Which with sweet water nightly I will dew,\n", + "Or wanting that, with tears distill’d by moans.\n", + "The obsequies that I for thee will keep,\n", + "Nightly shall be to strew thy grave and weep.\n", + "\n", + " [_The Page whistles._]\n", + "\n", + "The boy gives warning something doth approach.\n", + "What cursed foot wanders this way tonight,\n", + "To cross my obsequies and true love’s rite?\n", + "What, with a torch! Muffle me, night, awhile.\n", + "\n", + " [_Retires._]\n", + "\n", + " Enter Romeo and Balthasar with a torch, mattock, &c.\n", + "\n", + "ROMEO.\n", + "Give me that mattock and the wrenching iron.\n", + "Hold, take this letter; early in the morning\n", + "See thou deliver it to my lord and father.\n", + "Give me the light; upon thy life I charge thee,\n", + "Whate’er thou hear’st or seest, stand all aloof\n", + "And do not interrupt me in my course.\n", + "Why I descend into this bed of death\n", + "Is partly to behold my lady’s face,\n", + "But chiefly to take thence from her dead finger\n", + "A precious ring, a ring that I must use\n", + "In dear employment. Therefore hence, be gone.\n", + "But if thou jealous dost return to pry\n", + "In what I further shall intend to do,\n", + "By heaven I will tear thee joint by joint,\n", + "And strew this hungry churchyard with thy limbs.\n", + "The time and my intents are savage-wild;\n", + "More fierce and more inexorable far\n", + "Than empty tigers or the roaring sea.\n", + "\n", + "BALTHASAR.\n", + "I will be gone, sir, and not trouble you.\n", + "\n", + "ROMEO.\n", + "So shalt thou show me friendship. Take thou that.\n", + "Live, and be prosperous, and farewell, good fellow.\n", + "\n", + "BALTHASAR.\n", + "For all this same, I’ll hide me hereabout.\n", + "His looks I fear, and his intents I doubt.\n", + "\n", + " [_Retires_]\n", + "\n", + "ROMEO.\n", + "Thou detestable maw, thou womb of death,\n", + "Gorg’d with the dearest morsel of the earth,\n", + "Thus I enforce thy rotten jaws to open,\n", + "\n", + " [_Breaking open the door of the monument._]\n", + "\n", + "And in despite, I’ll cram thee with more food.\n", + "\n", + "PARIS.\n", + "This is that banish’d haughty Montague\n", + "That murder’d my love’s cousin,—with which grief,\n", + "It is supposed, the fair creature died,—\n", + "And here is come to do some villainous shame\n", + "To the dead bodies. I will apprehend him.\n", + "\n", + " [_Advances._]\n", + "\n", + "Stop thy unhallow’d toil, vile Montague.\n", + "Can vengeance be pursu’d further than death?\n", + "Condemned villain, I do apprehend thee.\n", + "Obey, and go with me, for thou must die.\n", + "\n", + "ROMEO.\n", + "I must indeed; and therefore came I hither.\n", + "Good gentle youth, tempt not a desperate man.\n", + "Fly hence and leave me. Think upon these gone;\n", + "Let them affright thee. I beseech thee, youth,\n", + "Put not another sin upon my head\n", + "By urging me to fury. O be gone.\n", + "By heaven I love thee better than myself;\n", + "For I come hither arm’d against myself.\n", + "Stay not, be gone, live, and hereafter say,\n", + "A madman’s mercy bid thee run away.\n", + "\n", + "PARIS.\n", + "I do defy thy conjuration,\n", + "And apprehend thee for a felon here.\n", + "\n", + "ROMEO.\n", + "Wilt thou provoke me? Then have at thee, boy!\n", + "\n", + " [_They fight._]\n", + "\n", + "PAGE.\n", + "O lord, they fight! I will go call the watch.\n", + "\n", + " [_Exit._]\n", + "\n", + "PARIS.\n", + "O, I am slain! [_Falls._] If thou be merciful,\n", + "Open the tomb, lay me with Juliet.\n", + "\n", + " [_Dies._]\n", + "\n", + "ROMEO.\n", + "In faith, I will. Let me peruse this face.\n", + "Mercutio’s kinsman, noble County Paris!\n", + "What said my man, when my betossed soul\n", + "Did not attend him as we rode? I think\n", + "He told me Paris should have married Juliet.\n", + "Said he not so? Or did I dream it so?\n", + "Or am I mad, hearing him talk of Juliet,\n", + "To think it was so? O, give me thy hand,\n", + "One writ with me in sour misfortune’s book.\n", + "I’ll bury thee in a triumphant grave.\n", + "A grave? O no, a lantern, slaught’red youth,\n", + "For here lies Juliet, and her beauty makes\n", + "This vault a feasting presence full of light.\n", + "Death, lie thou there, by a dead man interr’d.\n", + "\n", + " [_Laying Paris in the monument._]\n", + "\n", + "How oft when men are at the point of death\n", + "Have they been merry! Which their keepers call\n", + "A lightning before death. O, how may I\n", + "Call this a lightning? O my love, my wife,\n", + "Death that hath suck’d the honey of thy breath,\n", + "Hath had no power yet upon thy beauty.\n", + "Thou art not conquer’d. Beauty’s ensign yet\n", + "Is crimson in thy lips and in thy cheeks,\n", + "And death’s pale flag is not advanced there.\n", + "Tybalt, liest thou there in thy bloody sheet?\n", + "O, what more favour can I do to thee\n", + "Than with that hand that cut thy youth in twain\n", + "To sunder his that was thine enemy?\n", + "Forgive me, cousin. Ah, dear Juliet,\n", + "Why art thou yet so fair? Shall I believe\n", + "That unsubstantial death is amorous;\n", + "And that the lean abhorred monster keeps\n", + "Thee here in dark to be his paramour?\n", + "For fear of that I still will stay with thee,\n", + "And never from this palace of dim night\n", + "Depart again. Here, here will I remain\n", + "With worms that are thy chambermaids. O, here\n", + "Will I set up my everlasting rest;\n", + "And shake the yoke of inauspicious stars\n", + "From this world-wearied flesh. Eyes, look your last.\n", + "Arms, take your last embrace! And, lips, O you\n", + "The doors of breath, seal with a righteous kiss\n", + "A dateless bargain to engrossing death.\n", + "Come, bitter conduct, come, unsavoury guide.\n", + "Thou desperate pilot, now at once run on\n", + "The dashing rocks thy sea-sick weary bark.\n", + "Here’s to my love! [_Drinks._] O true apothecary!\n", + "Thy drugs are quick. Thus with a kiss I die.\n", + "\n", + " [_Dies._]\n", + "\n", + " Enter, at the other end of the Churchyard, Friar Lawrence, with a\n", + " lantern, crow, and spade.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Saint Francis be my speed. How oft tonight\n", + "Have my old feet stumbled at graves? Who’s there?\n", + "Who is it that consorts, so late, the dead?\n", + "\n", + "BALTHASAR.\n", + "Here’s one, a friend, and one that knows you well.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Bliss be upon you. Tell me, good my friend,\n", + "What torch is yond that vainly lends his light\n", + "To grubs and eyeless skulls? As I discern,\n", + "It burneth in the Capels’ monument.\n", + "\n", + "BALTHASAR.\n", + "It doth so, holy sir, and there’s my master,\n", + "One that you love.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Who is it?\n", + "\n", + "BALTHASAR.\n", + "Romeo.\n", + "\n", + "FRIAR LAWRENCE.\n", + "How long hath he been there?\n", + "\n", + "BALTHASAR.\n", + "Full half an hour.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Go with me to the vault.\n", + "\n", + "BALTHASAR.\n", + "I dare not, sir;\n", + "My master knows not but I am gone hence,\n", + "And fearfully did menace me with death\n", + "If I did stay to look on his intents.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Stay then, I’ll go alone. Fear comes upon me.\n", + "O, much I fear some ill unlucky thing.\n", + "\n", + "BALTHASAR.\n", + "As I did sleep under this yew tree here,\n", + "I dreamt my master and another fought,\n", + "And that my master slew him.\n", + "\n", + "FRIAR LAWRENCE.\n", + "Romeo! [_Advances._]\n", + "Alack, alack, what blood is this which stains\n", + "The stony entrance of this sepulchre?\n", + "What mean these masterless and gory swords\n", + "To lie discolour’d by this place of peace?\n", + "\n", + " [_Enters the monument._]\n", + "\n", + "Romeo! O, pale! Who else? What, Paris too?\n", + "And steep’d in blood? Ah what an unkind hour\n", + "Is guilty of this lamentable chance?\n", + "The lady stirs.\n", + "\n", + " [_Juliet wakes and stirs._]\n", + "\n", + "JULIET.\n", + "O comfortable Friar, where is my lord?\n", + "I do remember well where I should be,\n", + "And there I am. Where is my Romeo?\n", + "\n", + " [_Noise within._]\n", + "\n", + "FRIAR LAWRENCE.\n", + "I hear some noise. Lady, come from that nest\n", + "Of death, contagion, and unnatural sleep.\n", + "A greater power than we can contradict\n", + "Hath thwarted our intents. Come, come away.\n", + "Thy husband in thy bosom there lies dead;\n", + "And Paris too. Come, I’ll dispose of thee\n", + "Among a sisterhood of holy nuns.\n", + "Stay not to question, for the watch is coming.\n", + "Come, go, good Juliet. I dare no longer stay.\n", + "\n", + "JULIET.\n", + "Go, get thee hence, for I will not away.\n", + "\n", + " [_Exit Friar Lawrence._]\n", + "\n", + "What’s here? A cup clos’d in my true love’s hand?\n", + "Poison, I see, hath been his timeless end.\n", + "O churl. Drink all, and left no friendly drop\n", + "To help me after? I will kiss thy lips.\n", + "Haply some poison yet doth hang on them,\n", + "To make me die with a restorative.\n", + "\n", + " [_Kisses him._]\n", + "\n", + "Thy lips are warm!\n", + "\n", + "FIRST WATCH.\n", + "[_Within._] Lead, boy. Which way?\n", + "\n", + "JULIET.\n", + "Yea, noise? Then I’ll be brief. O happy dagger.\n", + "\n", + " [_Snatching Romeo’s dagger._]\n", + "\n", + "This is thy sheath. [_stabs herself_] There rest, and let me die.\n", + "\n", + " [_Falls on Romeo’s body and dies._]\n", + "\n", + " Enter Watch with the Page of Paris.\n", + "\n", + "PAGE.\n", + "This is the place. There, where the torch doth burn.\n", + "\n", + "FIRST WATCH.\n", + "The ground is bloody. Search about the churchyard.\n", + "Go, some of you, whoe’er you find attach.\n", + "\n", + " [_Exeunt some of the Watch._]\n", + "\n", + "Pitiful sight! Here lies the County slain,\n", + "And Juliet bleeding, warm, and newly dead,\n", + "Who here hath lain this two days buried.\n", + "Go tell the Prince; run to the Capulets.\n", + "Raise up the Montagues, some others search.\n", + "\n", + " [_Exeunt others of the Watch._]\n", + "\n", + "We see the ground whereon these woes do lie,\n", + "But the true ground of all these piteous woes\n", + "We cannot without circumstance descry.\n", + "\n", + " Re-enter some of the Watch with Balthasar.\n", + "\n", + "SECOND WATCH.\n", + "Here’s Romeo’s man. We found him in the churchyard.\n", + "\n", + "FIRST WATCH.\n", + "Hold him in safety till the Prince come hither.\n", + "\n", + " Re-enter others of the Watch with Friar Lawrence.\n", + "\n", + "THIRD WATCH. Here is a Friar that trembles, sighs, and weeps.\n", + "We took this mattock and this spade from him\n", + "As he was coming from this churchyard side.\n", + "\n", + "FIRST WATCH.\n", + "A great suspicion. Stay the Friar too.\n", + "\n", + " Enter the Prince and Attendants.\n", + "\n", + "PRINCE.\n", + "What misadventure is so early up,\n", + "That calls our person from our morning’s rest?\n", + "\n", + " Enter Capulet, Lady Capulet and others.\n", + "\n", + "CAPULET.\n", + "What should it be that they so shriek abroad?\n", + "\n", + "LADY CAPULET.\n", + "O the people in the street cry Romeo,\n", + "Some Juliet, and some Paris, and all run\n", + "With open outcry toward our monument.\n", + "\n", + "PRINCE.\n", + "What fear is this which startles in our ears?\n", + "\n", + "FIRST WATCH.\n", + "Sovereign, here lies the County Paris slain,\n", + "And Romeo dead, and Juliet, dead before,\n", + "Warm and new kill’d.\n", + "\n", + "PRINCE.\n", + "Search, seek, and know how this foul murder comes.\n", + "\n", + "FIRST WATCH.\n", + "Here is a Friar, and slaughter’d Romeo’s man,\n", + "With instruments upon them fit to open\n", + "These dead men’s tombs.\n", + "\n", + "CAPULET.\n", + "O heaven! O wife, look how our daughter bleeds!\n", + "This dagger hath mista’en, for lo, his house\n", + "Is empty on the back of Montague,\n", + "And it mis-sheathed in my daughter’s bosom.\n", + "\n", + "LADY CAPULET.\n", + "O me! This sight of death is as a bell\n", + "That warns my old age to a sepulchre.\n", + "\n", + " Enter Montague and others.\n", + "\n", + "PRINCE.\n", + "Come, Montague, for thou art early up,\n", + "To see thy son and heir more early down.\n", + "\n", + "MONTAGUE.\n", + "Alas, my liege, my wife is dead tonight.\n", + "Grief of my son’s exile hath stopp’d her breath.\n", + "What further woe conspires against mine age?\n", + "\n", + "PRINCE.\n", + "Look, and thou shalt see.\n", + "\n", + "MONTAGUE.\n", + "O thou untaught! What manners is in this,\n", + "To press before thy father to a grave?\n", + "\n", + "PRINCE.\n", + "Seal up the mouth of outrage for a while,\n", + "Till we can clear these ambiguities,\n", + "And know their spring, their head, their true descent,\n", + "And then will I be general of your woes,\n", + "And lead you even to death. Meantime forbear,\n", + "And let mischance be slave to patience.\n", + "Bring forth the parties of suspicion.\n", + "\n", + "FRIAR LAWRENCE.\n", + "I am the greatest, able to do least,\n", + "Yet most suspected, as the time and place\n", + "Doth make against me, of this direful murder.\n", + "And here I stand, both to impeach and purge\n", + "Myself condemned and myself excus’d.\n", + "\n", + "PRINCE.\n", + "Then say at once what thou dost know in this.\n", + "\n", + "FRIAR LAWRENCE.\n", + "I will be brief, for my short date of breath\n", + "Is not so long as is a tedious tale.\n", + "Romeo, there dead, was husband to that Juliet,\n", + "And she, there dead, that Romeo’s faithful wife.\n", + "I married them; and their stol’n marriage day\n", + "Was Tybalt’s doomsday, whose untimely death\n", + "Banish’d the new-made bridegroom from this city;\n", + "For whom, and not for Tybalt, Juliet pin’d.\n", + "You, to remove that siege of grief from her,\n", + "Betroth’d, and would have married her perforce\n", + "To County Paris. Then comes she to me,\n", + "And with wild looks, bid me devise some means\n", + "To rid her from this second marriage,\n", + "Or in my cell there would she kill herself.\n", + "Then gave I her, so tutored by my art,\n", + "A sleeping potion, which so took effect\n", + "As I intended, for it wrought on her\n", + "The form of death. Meantime I writ to Romeo\n", + "That he should hither come as this dire night\n", + "To help to take her from her borrow’d grave,\n", + "Being the time the potion’s force should cease.\n", + "But he which bore my letter, Friar John,\n", + "Was stay’d by accident; and yesternight\n", + "Return’d my letter back. Then all alone\n", + "At the prefixed hour of her waking\n", + "Came I to take her from her kindred’s vault,\n", + "Meaning to keep her closely at my cell\n", + "Till I conveniently could send to Romeo.\n", + "But when I came, some minute ere the time\n", + "Of her awaking, here untimely lay\n", + "The noble Paris and true Romeo dead.\n", + "She wakes; and I entreated her come forth\n", + "And bear this work of heaven with patience.\n", + "But then a noise did scare me from the tomb;\n", + "And she, too desperate, would not go with me,\n", + "But, as it seems, did violence on herself.\n", + "All this I know; and to the marriage\n", + "Her Nurse is privy. And if ought in this\n", + "Miscarried by my fault, let my old life\n", + "Be sacrific’d, some hour before his time,\n", + "Unto the rigour of severest law.\n", + "\n", + "PRINCE.\n", + "We still have known thee for a holy man.\n", + "Where’s Romeo’s man? What can he say to this?\n", + "\n", + "BALTHASAR.\n", + "I brought my master news of Juliet’s death,\n", + "And then in post he came from Mantua\n", + "To this same place, to this same monument.\n", + "This letter he early bid me give his father,\n", + "And threaten’d me with death, going in the vault,\n", + "If I departed not, and left him there.\n", + "\n", + "PRINCE.\n", + "Give me the letter, I will look on it.\n", + "Where is the County’s Page that rais’d the watch?\n", + "Sirrah, what made your master in this place?\n", + "\n", + "PAGE.\n", + "He came with flowers to strew his lady’s grave,\n", + "And bid me stand aloof, and so I did.\n", + "Anon comes one with light to ope the tomb,\n", + "And by and by my master drew on him,\n", + "And then I ran away to call the watch.\n", + "\n", + "PRINCE.\n", + "This letter doth make good the Friar’s words,\n", + "Their course of love, the tidings of her death.\n", + "And here he writes that he did buy a poison\n", + "Of a poor ’pothecary, and therewithal\n", + "Came to this vault to die, and lie with Juliet.\n", + "Where be these enemies? Capulet, Montague,\n", + "See what a scourge is laid upon your hate,\n", + "That heaven finds means to kill your joys with love!\n", + "And I, for winking at your discords too,\n", + "Have lost a brace of kinsmen. All are punish’d.\n", + "\n", + "CAPULET.\n", + "O brother Montague, give me thy hand.\n", + "This is my daughter’s jointure, for no more\n", + "Can I demand.\n", + "\n", + "MONTAGUE.\n", + "But I can give thee more,\n", + "For I will raise her statue in pure gold,\n", + "That whiles Verona by that name is known,\n", + "There shall no figure at such rate be set\n", + "As that of true and faithful Juliet.\n", + "\n", + "CAPULET.\n", + "As rich shall Romeo’s by his lady’s lie,\n", + "Poor sacrifices of our enmity.\n", + "\n", + "PRINCE.\n", + "A glooming peace this morning with it brings;\n", + "The sun for sorrow will not show his head.\n", + "Go hence, to have more talk of these sad things.\n", + "Some shall be pardon’d, and some punished,\n", + "For never was a story of more woe\n", + "Than this of Juliet and her Romeo.\n", + "\n", + " [_Exeunt._]\n", + "\n", + "\n", + "\n", + "\n", + "*** END OF THE PROJECT GUTENBERG EBOOK ROMEO AND JULIET ***\n", + "\n", + "\n", + " \n", + "\n", + "Updated editions will replace the previous one—the old editions will\n", + "be renamed.\n", + "\n", + "Creating the works from print editions not protected by U.S. copyright\n", + "law means that no one owns a United States copyright in these works,\n", + "so the Foundation (and you!) can copy and distribute it in the United\n", + "States without permission and without paying copyright\n", + "royalties. Special rules, set forth in the General Terms of Use part\n", + "of this license, apply to copying and distributing Project\n", + "Gutenberg™ electronic works to protect the PROJECT GUTENBERG™\n", + "concept and trademark. Project Gutenberg is a registered trademark,\n", + "and may not be used if you charge for an eBook, except by following\n", + "the terms of the trademark license, including paying royalties for use\n", + "of the Project Gutenberg trademark. If you do not charge anything for\n", + "copies of this eBook, complying with the trademark license is very\n", + "easy. You may use this eBook for nearly any purpose such as creation\n", + "of derivative works, reports, performances and research. Project\n", + "Gutenberg eBooks may be modified and printed and given away—you may\n", + "do practically ANYTHING in the United States with eBooks not protected\n", + "by U.S. copyright law. Redistribution is subject to the trademark\n", + "license, especially commercial redistribution.\n", + "\n", + "\n", + "START: FULL LICENSE\n", + "\n", + "THE FULL PROJECT GUTENBERG LICENSE\n", + "\n", + "PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK\n", + "\n", + "To protect the Project Gutenberg™ mission of promoting the free\n", + "distribution of electronic works, by using or distributing this work\n", + "(or any other work associated in any way with the phrase “Project\n", + "Gutenberg”), you agree to comply with all the terms of the Full\n", + "Project Gutenberg™ License available with this file or online at\n", + "www.gutenberg.org/license.\n", + "\n", + "Section 1. General Terms of Use and Redistributing Project Gutenberg™\n", + "electronic works\n", + "\n", + "1.A. By reading or using any part of this Project Gutenberg™\n", + "electronic work, you indicate that you have read, understand, agree to\n", + "and accept all the terms of this license and intellectual property\n", + "(trademark/copyright) agreement. If you do not agree to abide by all\n", + "the terms of this agreement, you must cease using and return or\n", + "destroy all copies of Project Gutenberg™ electronic works in your\n", + "possession. If you paid a fee for obtaining a copy of or access to a\n", + "Project Gutenberg™ electronic work and you do not agree to be bound\n", + "by the terms of this agreement, you may obtain a refund from the person\n", + "or entity to whom you paid the fee as set forth in paragraph 1.E.8.\n", + "\n", + "1.B. “Project Gutenberg” is a registered trademark. It may only be\n", + "used on or associated in any way with an electronic work by people who\n", + "agree to be bound by the terms of this agreement. There are a few\n", + "things that you can do with most Project Gutenberg™ electronic works\n", + "even without complying with the full terms of this agreement. See\n", + "paragraph 1.C below. There are a lot of things you can do with Project\n", + "Gutenberg™ electronic works if you follow the terms of this\n", + "agreement and help preserve free future access to Project Gutenberg™\n", + "electronic works. See paragraph 1.E below.\n", + "\n", + "1.C. The Project Gutenberg Literary Archive Foundation (“the\n", + "Foundation” or PGLAF), owns a compilation copyright in the collection\n", + "of Project Gutenberg™ electronic works. Nearly all the individual\n", + "works in the collection are in the public domain in the United\n", + "States. If an individual work is unprotected by copyright law in the\n", + "United States and you are located in the United States, we do not\n", + "claim a right to prevent you from copying, distributing, performing,\n", + "displaying or creating derivative works based on the work as long as\n", + "all references to Project Gutenberg are removed. Of course, we hope\n", + "that you will support the Project Gutenberg™ mission of promoting\n", + "free access to electronic works by freely sharing Project Gutenberg™\n", + "works in compliance with the terms of this agreement for keeping the\n", + "Project Gutenberg™ name associated with the work. You can easily\n", + "comply with the terms of this agreement by keeping this work in the\n", + "same format with its attached full Project Gutenberg™ License when\n", + "you share it without charge with others.\n", + "\n", + "1.D. The copyright laws of the place where you are located also govern\n", + "what you can do with this work. Copyright laws in most countries are\n", + "in a constant state of change. If you are outside the United States,\n", + "check the laws of your country in addition to the terms of this\n", + "agreement before downloading, copying, displaying, performing,\n", + "distributing or creating derivative works based on this work or any\n", + "other Project Gutenberg™ work. The Foundation makes no\n", + "representations concerning the copyright status of any work in any\n", + "country other than the United States.\n", + "\n", + "1.E. Unless you have removed all references to Project Gutenberg:\n", + "\n", + "1.E.1. The following sentence, with active links to, or other\n", + "immediate access to, the full Project Gutenberg™ License must appear\n", + "prominently whenever any copy of a Project Gutenberg™ work (any work\n", + "on which the phrase “Project Gutenberg” appears, or with which the\n", + "phrase “Project Gutenberg” is associated) is accessed, displayed,\n", + "performed, viewed, copied or distributed:\n", + "\n", + " This eBook is for the use of anyone anywhere in the United States and most\n", + " other parts of the world at no cost and with almost no restrictions\n", + " whatsoever. You may copy it, give it away or re-use it under the terms\n", + " of the Project Gutenberg License included with this eBook or online\n", + " at www.gutenberg.org. If you\n", + " are not located in the United States, you will have to check the laws\n", + " of the country where you are located before using this eBook.\n", + " \n", + "1.E.2. If an individual Project Gutenberg™ electronic work is\n", + "derived from texts not protected by U.S. copyright law (does not\n", + "contain a notice indicating that it is posted with permission of the\n", + "copyright holder), the work can be copied and distributed to anyone in\n", + "the United States without paying any fees or charges. If you are\n", + "redistributing or providing access to a work with the phrase “Project\n", + "Gutenberg” associated with or appearing on the work, you must comply\n", + "either with the requirements of paragraphs 1.E.1 through 1.E.7 or\n", + "obtain permission for the use of the work and the Project Gutenberg™\n", + "trademark as set forth in paragraphs 1.E.8 or 1.E.9.\n", + "\n", + "1.E.3. If an individual Project Gutenberg™ electronic work is posted\n", + "with the permission of the copyright holder, your use and distribution\n", + "must comply with both paragraphs 1.E.1 through 1.E.7 and any\n", + "additional terms imposed by the copyright holder. Additional terms\n", + "will be linked to the Project Gutenberg™ License for all works\n", + "posted with the permission of the copyright holder found at the\n", + "beginning of this work.\n", + "\n", + "1.E.4. Do not unlink or detach or remove the full Project Gutenberg™\n", + "License terms from this work, or any files containing a part of this\n", + "work or any other work associated with Project Gutenberg™.\n", + "\n", + "1.E.5. Do not copy, display, perform, distribute or redistribute this\n", + "electronic work, or any part of this electronic work, without\n", + "prominently displaying the sentence set forth in paragraph 1.E.1 with\n", + "active links or immediate access to the full terms of the Project\n", + "Gutenberg™ License.\n", + "\n", + "1.E.6. You may convert to and distribute this work in any binary,\n", + "compressed, marked up, nonproprietary or proprietary form, including\n", + "any word processing or hypertext form. However, if you provide access\n", + "to or distribute copies of a Project Gutenberg™ work in a format\n", + "other than “Plain Vanilla ASCII” or other format used in the official\n", + "version posted on the official Project Gutenberg™ website\n", + "(www.gutenberg.org), you must, at no additional cost, fee or expense\n", + "to the user, provide a copy, a means of exporting a copy, or a means\n", + "of obtaining a copy upon request, of the work in its original “Plain\n", + "Vanilla ASCII” or other form. Any alternate format must include the\n", + "full Project Gutenberg™ License as specified in paragraph 1.E.1.\n", + "\n", + "1.E.7. Do not charge a fee for access to, viewing, displaying,\n", + "performing, copying or distributing any Project Gutenberg™ works\n", + "unless you comply with paragraph 1.E.8 or 1.E.9.\n", + "\n", + "1.E.8. You may charge a reasonable fee for copies of or providing\n", + "access to or distributing Project Gutenberg™ electronic works\n", + "provided that:\n", + "\n", + " • You pay a royalty fee of 20% of the gross profits you derive from\n", + " the use of Project Gutenberg™ works calculated using the method\n", + " you already use to calculate your applicable taxes. The fee is owed\n", + " to the owner of the Project Gutenberg™ trademark, but he has\n", + " agreed to donate royalties under this paragraph to the Project\n", + " Gutenberg Literary Archive Foundation. Royalty payments must be paid\n", + " within 60 days following each date on which you prepare (or are\n", + " legally required to prepare) your periodic tax returns. Royalty\n", + " payments should be clearly marked as such and sent to the Project\n", + " Gutenberg Literary Archive Foundation at the address specified in\n", + " Section 4, “Information about donations to the Project Gutenberg\n", + " Literary Archive Foundation.”\n", + " \n", + " • You provide a full refund of any money paid by a user who notifies\n", + " you in writing (or by e-mail) within 30 days of receipt that s/he\n", + " does not agree to the terms of the full Project Gutenberg™\n", + " License. You must require such a user to return or destroy all\n", + " copies of the works possessed in a physical medium and discontinue\n", + " all use of and all access to other copies of Project Gutenberg™\n", + " works.\n", + " \n", + " • You provide, in accordance with paragraph 1.F.3, a full refund of\n", + " any money paid for a work or a replacement copy, if a defect in the\n", + " electronic work is discovered and reported to you within 90 days of\n", + " receipt of the work.\n", + " \n", + " • You comply with all other terms of this agreement for free\n", + " distribution of Project Gutenberg™ works.\n", + " \n", + "\n", + "1.E.9. If you wish to charge a fee or distribute a Project\n", + "Gutenberg™ electronic work or group of works on different terms than\n", + "are set forth in this agreement, you must obtain permission in writing\n", + "from the Project Gutenberg Literary Archive Foundation, the manager of\n", + "the Project Gutenberg™ trademark. Contact the Foundation as set\n", + "forth in Section 3 below.\n", + "\n", + "1.F.\n", + "\n", + "1.F.1. Project Gutenberg volunteers and employees expend considerable\n", + "effort to identify, do copyright research on, transcribe and proofread\n", + "works not protected by U.S. copyright law in creating the Project\n", + "Gutenberg™ collection. Despite these efforts, Project Gutenberg™\n", + "electronic works, and the medium on which they may be stored, may\n", + "contain “Defects,” such as, but not limited to, incomplete, inaccurate\n", + "or corrupt data, transcription errors, a copyright or other\n", + "intellectual property infringement, a defective or damaged disk or\n", + "other medium, a computer virus, or computer codes that damage or\n", + "cannot be read by your equipment.\n", + "\n", + "1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right\n", + "of Replacement or Refund” described in paragraph 1.F.3, the Project\n", + "Gutenberg Literary Archive Foundation, the owner of the Project\n", + "Gutenberg™ trademark, and any other party distributing a Project\n", + "Gutenberg™ electronic work under this agreement, disclaim all\n", + "liability to you for damages, costs and expenses, including legal\n", + "fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT\n", + "LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE\n", + "PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE\n", + "TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE\n", + "LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR\n", + "INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH\n", + "DAMAGE.\n", + "\n", + "1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a\n", + "defect in this electronic work within 90 days of receiving it, you can\n", + "receive a refund of the money (if any) you paid for it by sending a\n", + "written explanation to the person you received the work from. If you\n", + "received the work on a physical medium, you must return the medium\n", + "with your written explanation. The person or entity that provided you\n", + "with the defective work may elect to provide a replacement copy in\n", + "lieu of a refund. If you received the work electronically, the person\n", + "or entity providing it to you may choose to give you a second\n", + "opportunity to receive the work electronically in lieu of a refund. If\n", + "the second copy is also defective, you may demand a refund in writing\n", + "without further opportunities to fix the problem.\n", + "\n", + "1.F.4. Except for the limited right of replacement or refund set forth\n", + "in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO\n", + "OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\n", + "LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE.\n", + "\n", + "1.F.5. Some states do not allow disclaimers of certain implied\n", + "warranties or the exclusion or limitation of certain types of\n", + "damages. If any disclaimer or limitation set forth in this agreement\n", + "violates the law of the state applicable to this agreement, the\n", + "agreement shall be interpreted to make the maximum disclaimer or\n", + "limitation permitted by the applicable state law. The invalidity or\n", + "unenforceability of any provision of this agreement shall not void the\n", + "remaining provisions.\n", + "\n", + "1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the\n", + "trademark owner, any agent or employee of the Foundation, anyone\n", + "providing copies of Project Gutenberg™ electronic works in\n", + "accordance with this agreement, and any volunteers associated with the\n", + "production, promotion and distribution of Project Gutenberg™\n", + "electronic works, harmless from all liability, costs and expenses,\n", + "including legal fees, that arise directly or indirectly from any of\n", + "the following which you do or cause to occur: (a) distribution of this\n", + "or any Project Gutenberg™ work, (b) alteration, modification, or\n", + "additions or deletions to any Project Gutenberg™ work, and (c) any\n", + "Defect you cause.\n", + "\n", + "Section 2. Information about the Mission of Project Gutenberg™\n", + "\n", + "Project Gutenberg™ is synonymous with the free distribution of\n", + "electronic works in formats readable by the widest variety of\n", + "computers including obsolete, old, middle-aged and new computers. It\n", + "exists because of the efforts of hundreds of volunteers and donations\n", + "from people in all walks of life.\n", + "\n", + "Volunteers and financial support to provide volunteers with the\n", + "assistance they need are critical to reaching Project Gutenberg™’s\n", + "goals and ensuring that the Project Gutenberg™ collection will\n", + "remain freely available for generations to come. In 2001, the Project\n", + "Gutenberg Literary Archive Foundation was created to provide a secure\n", + "and permanent future for Project Gutenberg™ and future\n", + "generations. To learn more about the Project Gutenberg Literary\n", + "Archive Foundation and how your efforts and donations can help, see\n", + "Sections 3 and 4 and the Foundation information page at www.gutenberg.org.\n", + "\n", + "Section 3. Information about the Project Gutenberg Literary Archive Foundation\n", + "\n", + "The Project Gutenberg Literary Archive Foundation is a non-profit\n", + "501(c)(3) educational corporation organized under the laws of the\n", + "state of Mississippi and granted tax exempt status by the Internal\n", + "Revenue Service. The Foundation’s EIN or federal tax identification\n", + "number is 64-6221541. Contributions to the Project Gutenberg Literary\n", + "Archive Foundation are tax deductible to the full extent permitted by\n", + "U.S. federal laws and your state’s laws.\n", + "\n", + "The Foundation’s business office is located at 809 North 1500 West,\n", + "Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up\n", + "to date contact information can be found at the Foundation’s website\n", + "and official page at www.gutenberg.org/contact\n", + "\n", + "Section 4. Information about Donations to the Project Gutenberg\n", + "Literary Archive Foundation\n", + "\n", + "Project Gutenberg™ depends upon and cannot survive without widespread\n", + "public support and donations to carry out its mission of\n", + "increasing the number of public domain and licensed works that can be\n", + "freely distributed in machine-readable form accessible by the widest\n", + "array of equipment including outdated equipment. Many small donations\n", + "($1 to $5,000) are particularly important to maintaining tax exempt\n", + "status with the IRS.\n", + "\n", + "The Foundation is committed to complying with the laws regulating\n", + "charities and charitable donations in all 50 states of the United\n", + "States. Compliance requirements are not uniform and it takes a\n", + "considerable effort, much paperwork and many fees to meet and keep up\n", + "with these requirements. We do not solicit donations in locations\n", + "where we have not received written confirmation of compliance. To SEND\n", + "DONATIONS or determine the status of compliance for any particular state\n", + "visit www.gutenberg.org/donate.\n", + "\n", + "While we cannot and do not solicit contributions from states where we\n", + "have not met the solicitation requirements, we know of no prohibition\n", + "against accepting unsolicited donations from donors in such states who\n", + "approach us with offers to donate.\n", + "\n", + "International donations are gratefully accepted, but we cannot make\n", + "any statements concerning tax treatment of donations received from\n", + "outside the United States. U.S. laws alone swamp our small staff.\n", + "\n", + "Please check the Project Gutenberg web pages for current donation\n", + "methods and addresses. Donations are accepted in a number of other\n", + "ways including checks, online payments and credit card donations. To\n", + "donate, please visit: www.gutenberg.org/donate.\n", + "\n", + "Section 5. General Information About Project Gutenberg™ electronic works\n", + "\n", + "Professor Michael S. Hart was the originator of the Project\n", + "Gutenberg™ concept of a library of electronic works that could be\n", + "freely shared with anyone. For forty years, he produced and\n", + "distributed Project Gutenberg™ eBooks with only a loose network of\n", + "volunteer support.\n", + "\n", + "Project Gutenberg™ eBooks are often created from several printed\n", + "editions, all of which are confirmed as not protected by copyright in\n", + "the U.S. unless a copyright notice is included. Thus, we do not\n", + "necessarily keep eBooks in compliance with any particular paper\n", + "edition.\n", + "\n", + "Most people start at our website which has the main PG search\n", + "facility: www.gutenberg.org.\n", + "\n", + "This website includes information about Project Gutenberg™,\n", + "including how to make donations to the Project Gutenberg Literary\n", + "Archive Foundation, how to help produce our new eBooks, and how to\n", + "subscribe to our email newsletter to hear about new eBooks.\n", + "\n", + "\n", + "\n" + ] + } + ], + "source": [ + "import urllib.request # To open and read URLs\n", + "import re # To match regular expressions\n", + "import unicodedata # To normalize texts\n", + "\n", + "url = 'https://www.gutenberg.org/cache/epub/1513/pg1513.txt'\n", + "try:\n", + " with urllib.request.urlopen(url) as f:\n", + " text = f.read().decode('utf-8')\n", + " print(text) # for testing\n", + "except Exception as e:\n", + " print(\"An error occurred:\", e)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "75147b85-e506-4147-a34e-43acf3506468", + "metadata": {}, + "outputs": [ + { + "ename": "SyntaxError", + "evalue": "incomplete input (, line 28)", + "output_type": "error", + "traceback": [ + " \u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[2]\u001b[39m\u001b[32m, line 28\u001b[39m\n\u001b[31m \u001b[39m\u001b[31m#print(\"\\nTotal words:\", len(tokens))\u001b[39m\n ^\n\u001b[31mSyntaxError\u001b[39m\u001b[31m:\u001b[39m incomplete input\n" + ] + } + ], + "source": [ + "try:\n", + " # Remove text before and after the main content \n", + " start = re.search(r\"\\*\\*\\* START OF THE PROJECT GUTENBERG EBOOK .* \\*\\*\\*\", text)\n", + " end = re.search(r\"\\*\\*\\* END OF THE PROJECT GUTENBERG EBOOK .* \\*\\*\\*\", text)\n", + " if start and end:\n", + " text = text[start.end():end.start()]\n", + " else:\n", + " print(\"Warning: Could not find Gutenberg delimiters; cleaning entire text\")\n", + "\n", + " # Step 3: Normalize unicode\n", + " text = unicodedata.normalize(\"NFKD\", text)\n", + "\n", + " # Step 4: Remove HTML tags and special characters\n", + " text = re.sub(r\"<.*?>\", \" \", text) \n", + " text = re.sub(r\"[^a-zA-Z0-9\\s.,;:'\\\"!?-]\", \" \", text)\n", + "\n", + " # Step 5: Convert to lowercase\n", + " text = text.lower()\n", + "\n", + " # Step 6: Replace multiple spaces/newlines with one space\n", + " text = re.sub(r\"\\s+\", \" \", text).strip()\n", + "\n", + " # Step 7: Tokenize into words\n", + " tokens = re.findall(r\"\\b\\w+\\b\", text)\n", + "\n", + " # Step 8: Print short preview\n", + " #print(\"Cleaned text preview:\\n\", text[:])\n", + " #print(\"\\nTotal words:\", len(tokens))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "76464f6f-4510-4775-95cd-b1263c5dc62d", + "metadata": {}, + "outputs": [], + "source": [ + "try:\n", + " # Remove text before and after the main content \n", + " start = re.search(r\"\\*\\*\\* START OF THE PROJECT GUTENBERG EBOOK .* \\*\\*\\*\", text)\n", + " end = re.search(r\"\\*\\*\\* END OF THE PROJECT GUTENBERG EBOOK .* \\*\\*\\*\", text)\n", + " if start and end:\n", + " text = text[start.end():end.start()]\n", + " else:\n", + " print(\"Warning: Could not find Gutenberg delimiters; cleaning entire text\")\n", + "\n", + " # Step 3: Normalize unicode\n", + " text = unicodedata.normalize(\"NFKD\", text)\n", + "\n", + " # Step 4: Remove HTML tags and special characters\n", + " text = re.sub(r\"<.*?>\", \" \", text) \n", + " text = re.sub(r\"[^a-zA-Z0-9\\s.,;:'\\\"!?-]\", \" \", text)\n", + "\n", + " # Step 5: Convert to lowercase\n", + " text = text.lower()\n", + "\n", + " # Step 6: Replace multiple spaces/newlines with one space\n", + " text = re.sub(r\"\\s+\", \" \", text).strip()\n", + "\n", + " # Step 7: Tokenize into words\n", + " tokens = re.findall(r\"\\b\\w+\\b\", text)\n", + "\n", + " # Step 8: Print short preview\n", + " #print(\"Cleaned text preview:\\n\", text[:])\n", + " #print(\"\\nTotal words:\", len(tokens))\n", + "except Exception as e:\n", + " print(\"An error occurred:\", e)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "156ab896-34c8-48d8-a2dd-f74b2759d848", + "metadata": {}, + "outputs": [ + { + "ename": "ModuleNotFoundError", + "evalue": "No module named 'nltk'", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mModuleNotFoundError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[4]\u001b[39m\u001b[32m, line 2\u001b[39m\n\u001b[32m 1\u001b[39m \u001b[38;5;66;03m#%%md Step 2: Removing Stop Words \u001b[39;00m\n\u001b[32m----> \u001b[39m\u001b[32m2\u001b[39m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34;01mnltk\u001b[39;00m\n\u001b[32m 3\u001b[39m nltk.download(\u001b[33m'\u001b[39m\u001b[33mstopwords\u001b[39m\u001b[33m'\u001b[39m)\n\u001b[32m 4\u001b[39m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34;01mnltk\u001b[39;00m\u001b[34;01m.\u001b[39;00m\u001b[34;01mcorpus\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m stopwords\n", + "\u001b[31mModuleNotFoundError\u001b[39m: No module named 'nltk'" + ] + } + ], + "source": [ + "import nltk\n", + "nltk.download('stopwords')\n", + "from nltk.corpus import stopwords\n", + "# Define the stop words set\n", + "stop_words = set(stopwords.words('english'))\n", + "# Filter out stop words\n", + "filtered_tokens = [word for word in tokens if word.lower() not in stop_words]\n", + "#print(\"Filtered tokens:\", filtered_tokens)\n", + "print(\"\\nTotal Filtered:\", len(filtered_tokens))\n", + "print(\"\\nTotal Original:\", len(tokens))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1f734732", + "metadata": {}, + "outputs": [ + { + "ename": "SyntaxError", + "evalue": "invalid syntax (, line 1)", + "output_type": "error", + "traceback": [ + " \u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[5]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[31m \u001b[39m\u001b[31mpip show nltk\u001b[39m\n ^\n\u001b[31mSyntaxError\u001b[39m\u001b[31m:\u001b[39m invalid syntax\n" + ] + } + ], + "source": [ + "pip show nltk\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6c32310a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting nltk\n", + " Using cached nltk-3.9.2-py3-none-any.whl.metadata (3.2 kB)\n", + "Collecting click (from nltk)\n", + " Using cached click-8.3.0-py3-none-any.whl.metadata (2.6 kB)\n", + "Collecting joblib (from nltk)\n", + " Using cached joblib-1.5.2-py3-none-any.whl.metadata (5.6 kB)\n", + "Collecting regex>=2021.8.3 (from nltk)\n", + " Downloading regex-2025.11.3-cp311-cp311-win_amd64.whl.metadata (41 kB)\n", + " ---------------------------------------- 0.0/41.5 kB ? eta -:--:--\n", + " --------- ------------------------------ 10.2/41.5 kB ? eta -:--:--\n", + " ---------------------------- --------- 30.7/41.5 kB 325.1 kB/s eta 0:00:01\n", + " -------------------------------------- 41.5/41.5 kB 332.8 kB/s eta 0:00:00\n", + "Collecting tqdm (from nltk)\n", + " Downloading tqdm-4.67.1-py3-none-any.whl.metadata (57 kB)\n", + " ---------------------------------------- 0.0/57.7 kB ? eta -:--:--\n", + " ---------------------------------------- 57.7/57.7 kB 1.5 MB/s eta 0:00:00\n", + "Requirement already satisfied: colorama in c:\\users\\kchheav1\\appdata\\local\\packages\\pythonsoftwarefoundation.python.3.11_qbz5n2kfra8p0\\localcache\\local-packages\\python311\\site-packages (from click->nltk) (0.4.6)\n", + "Using cached nltk-3.9.2-py3-none-any.whl (1.5 MB)\n", + "Downloading regex-2025.11.3-cp311-cp311-win_amd64.whl (277 kB)\n", + " ---------------------------------------- 0.0/277.7 kB ? eta -:--:--\n", + " --------------------------------------- 276.5/277.7 kB 8.6 MB/s eta 0:00:01\n", + " ---------------------------------------- 277.7/277.7 kB 5.7 MB/s eta 0:00:00\n", + "Using cached click-8.3.0-py3-none-any.whl (107 kB)\n", + "Using cached joblib-1.5.2-py3-none-any.whl (308 kB)\n", + "Downloading tqdm-4.67.1-py3-none-any.whl (78 kB)\n", + " ---------------------------------------- 0.0/78.5 kB ? eta -:--:--\n", + " ---------------------------------------- 78.5/78.5 kB 2.1 MB/s eta 0:00:00\n", + "Installing collected packages: tqdm, regex, joblib, click, nltk\n", + "Successfully installed click-8.3.0 joblib-1.5.2 nltk-3.9.2 regex-2025.11.3 tqdm-4.67.1\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n", + "[notice] A new release of pip is available: 24.0 -> 25.3\n", + "[notice] To update, run: C:\\Users\\kchheav1\\AppData\\Local\\Microsoft\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\python.exe -m pip install --upgrade pip\n" + ] + } + ], + "source": [ + "\n", + "pip install nltk\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f8189d74-364c-44c1-a64a-c9dac2083093", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Total Filtered: 14448\n", + "\n", + "Total Original: 26862\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[nltk_data] Downloading package stopwords to\n", + "[nltk_data] C:\\Users\\kchheav1\\AppData\\Roaming\\nltk_data...\n", + "[nltk_data] Package stopwords is already up-to-date!\n" + ] + } + ], + "source": [ + "import nltk\n", + "nltk.download('stopwords')\n", + "from nltk.corpus import stopwords\n", + "# Define the stop words set\n", + "stop_words = set(stopwords.words('english'))\n", + "# Filter out stop words\n", + "filtered_tokens = [word for word in tokens if word.lower() not in stop_words]\n", + "#print(\"Filtered tokens:\", filtered_tokens)\n", + "print(\"\\nTotal Filtered:\", len(filtered_tokens))\n", + "print(\"\\nTotal Original:\", len(tokens))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d78bc2cd-0d2b-492c-8006-b49324b9eb29", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Original text:\n", + " the tragedy of romeo and juliet by william shakesp\n", + "\n", + "Tokens before stopword removal:\n", + " ['the', 'tragedy', 'of', 'romeo', 'and', 'juliet', 'by', 'william', 'shakespeare', 'contents', 'the', 'prologue', 'act', 'i', 'scene', 'i', 'a', 'public', 'place', 'scene', 'ii', 'a', 'street', 'scene', 'iii', 'room', 'in', 'capulet', 's', 'house', 'scene', 'iv', 'a', 'street', 'scene', 'v', 'a', 'hall', 'in', 'capulet', 's', 'house', 'act', 'ii', 'chorus', 'scene', 'i', 'an', 'open', 'place']\n", + "\n", + "Tokens after stopword removal:\n", + " ['tragedy', 'romeo', 'juliet', 'william', 'shakespeare', 'contents', 'prologue', 'act', 'scene', 'public', 'place', 'scene', 'ii', 'street', 'scene', 'iii', 'room', 'capulet', 'house', 'scene', 'iv', 'street', 'scene', 'v', 'hall', 'capulet', 'house', 'act', 'ii', 'chorus', 'scene', 'open', 'place', 'adjoining', 'capulet', 'garden', 'scene', 'ii', 'capulet', 'garden', 'scene', 'iii', 'friar', 'lawrence', 'cell', 'scene', 'iv', 'street', 'scene', 'v']\n", + "\n", + "Cleaned text:\n", + " tragedy romeo juliet william shakespeare contents \n" + ] + } + ], + "source": [ + "# Step 7: (Optional) Rejoin filtered words into cleaned text\n", + "cleaned_text = \" \".join(filtered_tokens)\n", + "\n", + "# Step 8: Print results\n", + "print(\"Original text:\\n\", text[:50])\n", + "print(\"\\nTokens before stopword removal:\\n\", tokens[:50])\n", + "print(\"\\nTokens after stopword removal:\\n\", filtered_tokens[:50])\n", + "print(\"\\nCleaned text:\\n\", cleaned_text[:50])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7b50184b-e37c-43cc-9700-4eb56eb34297", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Original text:\n", + " the tragedy of romeo and juliet by william shakesp\n", + "\n", + "Cleaned text:\n", + " tragedy romeo juliet william shakespeare contents \n", + "\n", + "Tokens before stopword removal:\n", + " ['the', 'tragedy', 'of', 'romeo', 'and', 'juliet', 'by', 'william', 'shakespeare', 'contents', 'the', 'prologue', 'act', 'i', 'scene', 'i', 'a', 'public', 'place', 'scene', 'ii', 'a', 'street', 'scene', 'iii', 'room', 'in', 'capulet', 's', 'house', 'scene', 'iv', 'a', 'street', 'scene', 'v', 'a', 'hall', 'in', 'capulet', 's', 'house', 'act', 'ii', 'chorus', 'scene', 'i', 'an', 'open', 'place']\n", + "\n", + "Tokens after stopword removal:\n", + " ['tragedy', 'romeo', 'juliet', 'william', 'shakespeare', 'contents', 'prologue', 'act', 'scene', 'public', 'place', 'scene', 'ii', 'street', 'scene', 'iii', 'room', 'capulet', 'house', 'scene', 'iv', 'street', 'scene', 'v', 'hall', 'capulet', 'house', 'act', 'ii', 'chorus', 'scene', 'open', 'place', 'adjoining', 'capulet', 'garden', 'scene', 'ii', 'capulet', 'garden', 'scene', 'iii', 'friar', 'lawrence', 'cell', 'scene', 'iv', 'street', 'scene', 'v']\n" + ] + } + ], + "source": [ + "# Step 7: (Optional) Rejoin filtered words into cleaned text\n", + "cleaned_text = \" \".join(filtered_tokens)\n", + "# Step 8: Print results\n", + "print(\"Original text:\\n\", text[:50])\n", + "print(\"\\nCleaned text:\\n\", cleaned_text[:50])\n", + "print(\"\\nTokens before stopword removal:\\n\", tokens[:50])\n", + "print(\"\\nTokens after stopword removal:\\n\", filtered_tokens[:50])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0463edbd-95f4-4fed-a118-06ea911effcf", + "metadata": {}, + "outputs": [], + "source": [ + "word_freq = {}\n", + "for word in filtered_tokens:\n", + " if word in word_freq:\n", + " word_freq[word] += 1\n", + " else:\n", + " word_freq[word] = 1" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c729eedf-875f-4fe7-acdf-2e8de16cc53a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Top 50 most frequent words:\n", + " [('romeo', 316), ('thou', 278), ('juliet', 190), ('thy', 170), ('capulet', 163), ('love', 151), ('nurse', 149), ('thee', 138), ('lady', 117), ('shall', 110), ('friar', 105), ('come', 95), ('mercutio', 88), ('good', 85), ('lawrence', 82), ('enter', 81), ('tybalt', 80), ('benvolio', 79), ('go', 76), ('death', 74), ('night', 73), ('man', 71), ('hath', 64), ('well', 62), ('paris', 61), ('one', 61), ('sir', 57), ('art', 55), ('say', 55), ('would', 55), ('scene', 51), ('let', 50), ('day', 50), ('dead', 49), ('may', 48), ('montague', 47), ('doth', 47), ('give', 47), ('yet', 47), ('fair', 44), ('tell', 44), ('prince', 43), ('upon', 42), ('st', 41), ('take', 40), ('tis', 40), ('must', 40), ('make', 40), ('like', 39), ('know', 38)]\n" + ] + } + ], + "source": [ + "top_words = sorted(word_freq.items(), key=lambda x: x[1], reverse=True)[:50]\n", + "print(\"\\nTop 50 most frequent words:\\n\" , top_words)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "99760c42-3858-47b6-a5de-1ba7cb0786ee", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Average word length: 5.14\n" + ] + } + ], + "source": [ + "total_length = sum(len(word) * count for word, count in word_freq.items())\n", + "total_words = sum(word_freq.values())\n", + "average_word_length = total_length / total_words if total_words > 0 else 0\n", + "print(f\"\\nAverage word length: {average_word_length:.2f}\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9d6bfeca-b427-42c9-bed1-a0197a5d255d", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Vocabulary size: 3450\n" + ] + } + ], + "source": [ + "#Calculate vocabulary size\n", + "vocabulary_size = len(word_freq)\n", + "print(f\"\\nVocabulary size: {vocabulary_size}\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "32877521-aac0-459b-8eaf-8e2e26039331", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Vocabulary richness: 0.2388\n" + ] + } + ], + "source": [ + "#Calculate vocabulary richness\n", + "vocabulary_richness = vocabulary_size / total_words if total_words > 0 else 0\n", + "print(f\"\\nVocabulary richness: {vocabulary_richness:.4f}\")" + ] + }, + { + "cell_type": "markdown", + "id": "2f5e46c8", + "metadata": {}, + "source": [ + "No kernel connected" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Part3LearningProcess.md b/Part3LearningProcess.md new file mode 100644 index 0000000..1ba32f3 --- /dev/null +++ b/Part3LearningProcess.md @@ -0,0 +1,64 @@ +Part 3: Learning with AI +I will talk about two problems I ran into while doing this assignment. The first problem I ran into was how to install nltk. The second problem was learning how to compare two pieces of text from the Gutenburg project. + +Problem one: While I was able to run my code before I forked the repository, +I was not able to rerun the same code after I forked the repositoty. The code +keep saying that no module named nltk was found. + +Crafted prompts 1: It took me three prompts to get to the solution. +I first sent a screenshot of the error message I was getting which says +"no module nltk found", and asked copilot how to fix it. Copilot suggested that I install nltk using pip. I followed the +the suggestion, and piped install nltk in the terminal. However, when +I installed the package, I got a message that said "Requirement already satisfied". +I was very confused, so I sent another prompt asking "what could be wrong?" +if nltk was already installed. Copilot suggested that I checked my python +environment, and make sure that I was using the same environment where nltk was located. +Copilot gave me an option to check my nltk installation by running "pip show nltk" +in the terminal and check the location of the package in jupyter notebook by running +import sysprint(sys.executable) and !{sys.executable} -m pip install nltk. The locations +did not match. I decided to run the "python -m pip install nltk" in the console +instead of the terminal and that fixed the problem. + +Review and verify(1): Copilot gave me different options and +I usually started with the simplest one first, usually the first or +second suggestion. In this case, it takes three prompts to get to the solution. + +The process: Even though installing nltk does not seem hard, +because it only takes one command to install it, not being able to get +it to work was very confusing. Thankfully, copilot was able to guide me, giving +me a different suggestions based on how I responded to the previous suggestions. + +Problem two: When comparing two pieces of texts from the Gutenburg prohect, +I felt like my code was very repetitive and long. I somewhat have an idea on how +to work with one text, but did not know how to extend the code to work with +more than two texts or more without repeating the same code over and over again. + +Crafted prompts #2: +1) I started by sending copilot my existing code that works with one text, +and asked "how do I clean and process two texts at the same time?" +2) While I was normalizing the unicode, I got an error message +saying "an error occurred: invalid normalization form". I did not +understand what I did wrong, so I asked chat how to fix the problem +including the screenshot of the error message. +3) I asked copilot to help me choose a data visualization library +so I compare the two texts visually using bar charts, but without using +matplotlib. +4) After choosing to visualize my data using ASCII bar charts, I also ask +copilot interesting features I could add to my bar chart such as +colors and titles. +5) Another step I was interested in was sentiment analysis, +so I asked copilot how to do a sentiment analysis on Romeo and Juliet in addition to +your guidance on how to install the necessary packages. + +Review and verify(2): +1) Copilot suggested that I could create a function that takes in a text as +input and returns the cleaned and processed text. I know we covered this in +class, so I incorporated the function into my code. It made my code so much more +concise and easier to read. +2) Copilot pointed out that I made a type in the normalization +form, and suggested that I change "NFDK" to "NFKD. After this step, my code works fine. +3) Copilot suggested that I could use seaborn, plotly, or ASCCI bar chart terminal. Looking at the options with the sample code for each one, I decided to go with +ASCII bar chart, since I do not have to install any additional packages and the visualization seems interesting and simple. +4) Copilot suggested I printed the title of the chart above +my bar chart, which I thought was a good idea and it made my visualization look more complete. +5) With the code ChatGPT provided, I tweaked it a little bit by not using the dictionary to store the sentiment scores, but printing them directly. diff --git a/Part4Reflection.md b/Part4Reflection.md new file mode 100644 index 0000000..b7e61dd --- /dev/null +++ b/Part4Reflection.md @@ -0,0 +1,24 @@ +1. Project Overview: The source that I mainly use is Project Gutenberg. Because the texts are already long enough, I choose to compare two long texts from the site Romeo and Juliet and The Comedy of Errors. Through this project, I hope to understand the vocabulary richness, the text's sentiment, and explore some of the most common words that appear in William Shakepeare's work. In order to get to these goals, I first have to clean the texts and process the texs. I use the package unicodedata to normalize the text and remove any unwanted characters such as HTML tags and special characters. Additionally, to remove stopwords so that I can get to the core meaning of the content, I use the package nltk. +2. Implementation: +Through the guidance of AI and what we learned in class in +the past few weeks, I begin to do my project by first, cleaning the text and and making sure that only the core content of the texts should be worth analyzing. Based on professor Li's instruction on how to download and open the url, I was able to pull out two of William Shakepear's texts and analyze them. Copilot provided me a step by step process on how to clean and process the data: for instance, how to normalize the text using unicodedata and how to remove unwanted characters such as HTML tags and special characters. + +Additionally, VS code is very helpful in providing suggestions on what to do next the moment we started writing comments. For instance, after cleaning and processing the data, the analysis section seems very standardized with calculating the top 20 words, comparing common words between one text to the next and analyzing the average word's length in each document. Because I understand the concept of the dictionary, when to use length and set in the code, I mainly choose those codes rather than the alternatives since that is based on what I already learned rather than choosing something that is completely new. For instance, I did not use matplotlib nor seaborn mainly because I have not learned that yet. Even though AI gave good suggestions, I tried to tweak my code based on how long the texts are. Instead of printing the whole dictionary of all the words occured and how frequent they appear, I choose to work in a smaller set; for instance 500 words. If I were to work in another text like an instagram post, I would print the whole dictionary of all the words and their frequency. + +3. Results: Based on the text comparison between Romeo and Juliet and The Comedy of Errors, I find three very interesting insights. First, I look into the top ten words that appear in both texts. The chart below is a good demonstration of the top ten words. It is interesting to see that some of these top ten words are really ancient words that we don't usually use nowadays such as thou, thee, thy. + +Another interesting thing is that common words that appear in both texts. Based on the code, there are 1293 words that are common among the two texts that have the same author. +The biggest surprise for me is the sentiment analysis. Considering that +Romeo and Juliet is a tragedy with two people die, the overall sentiment of the text is actually neutral rather than negative. Similarly, the sentiment +in the text The Comedy of Errors are also neutral when I expect it to be more positive as a comedy implies that the text is funny and lighthighted. Both texts seem to be neutral and are approximately equally negative and positive. + +4. Reflection: +From my point of view, the findings such as computing the average word length, sentiment analysis, finding common words, and the top ten words work very well and are very insightful. I like to see both texts alongside one another. Since, both texts use the same code, I can just copy and paste the first code I did from one text to another. I also enjoyed the data visualization; I got to learn how to use ASCII. + +Something that did not work very well for me is installing the packages. For some reason, I keep getting errors and even if I have already installed it successfully before, if I rerun the code, sometimes it tells me that I do not have the package installed, so I have to reinstall it all over again. Another thing that froze my laptop for awhile is printing the dictionary where I count the frequency of the words in the text and print them one by one. I thought that I won't run into the problem, but since my text has around 25,000 words, printing 25,000 values freezes my laptop, so I had to force the code to stop running and instead only print about 50 words. + + + + + + diff --git a/Untitled.ipynb b/Untitled.ipynb new file mode 100644 index 0000000..5823fdc --- /dev/null +++ b/Untitled.ipynb @@ -0,0 +1,75 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "21ec9335-c33f-43ac-a019-ece3bbe413cd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "C:\\Users\\kchheav1\\.vscode\\cli\\python.exe\n" + ] + } + ], + "source": [ + "import sys\n", + "print(sys.executable)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "a53172d8-bb47-4cfa-88d7-51071780c09c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: nltk in c:\\users\\kchheav1\\.vscode\\cli\\lib\\site-packages (3.9.2)\n", + "Requirement already satisfied: click in c:\\users\\kchheav1\\.vscode\\cli\\lib\\site-packages (from nltk) (8.3.0)\n", + "Requirement already satisfied: joblib in c:\\users\\kchheav1\\.vscode\\cli\\lib\\site-packages (from nltk) (1.5.2)\n", + "Requirement already satisfied: regex>=2021.8.3 in c:\\users\\kchheav1\\.vscode\\cli\\lib\\site-packages (from nltk) (2025.11.3)\n", + "Requirement already satisfied: tqdm in c:\\users\\kchheav1\\.vscode\\cli\\lib\\site-packages (from nltk) (4.67.1)\n", + "Requirement already satisfied: colorama in c:\\users\\kchheav1\\.vscode\\cli\\lib\\site-packages (from click->nltk) (0.4.6)\n" + ] + } + ], + "source": [ + "!{sys.executable} -m pip install nltk" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "959d6f65-c0c1-4e27-bdf2-c8214537b33b", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Untitled1.ipynb b/Untitled1.ipynb new file mode 100644 index 0000000..d9b636f --- /dev/null +++ b/Untitled1.ipynb @@ -0,0 +1,378 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "c01c56c3-89cf-4123-81ea-9d6ff690edca", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Project Gutenberg eBook of Romeo and Juliet\n", + " \n", + "This ebook is for the use of anyone anywhere in the United States and\n", + "most other parts of the world at no cost and with almost no restrictions\n", + "whatsoever. You may copy it, give it away or re-use it under the terms\n", + "of the Project Gutenberg License included with this ebook or online\n", + "at www.gutenberg.org. If you are not located in the United States,\n", + "you will have to check the laws of the country where you are located\n", + "before using this eB\n", + "The Project Gutenberg eBook of The Comedy of Errors\n", + " \n", + "This ebook is for the use of anyone anywhere in the United States and\n", + "most other parts of the world at no cost and with almost no restrictions\n", + "whatsoever. You may copy it, give it away or re-use it under the terms\n", + "of the Project Gutenberg License included with this ebook or online\n", + "at www.gutenberg.org. If you are not located in the United States,\n", + "you will have to check the laws of the country where you are located\n", + "before using thi\n", + "Cleaned Text 1 Preview:\n", + " THE TRAGEDY OF ROMEO AND JULIET\n", + "\n", + "by William Shakespeare\n", + "\n", + "\n", + "\n", + "\n", + "Contents\n", + "\n", + "THE PROLOGUE.\n", + "\n", + "ACT I\n", + "Scene I. A public place.\n", + "Scene II. A Street.\n", + "Scene III. Room in Capulet’s House.\n", + "Scene IV. A Street.\n", + "Scene V. A Hall in Capulet’s House.\n", + "\n", + "ACT II\n", + "CHORUS.\n", + "Scene I. An open place adjoining Capulet’s Garden.\n", + "Scene II. Capulet’s Garden.\n", + "Scene III. Friar Lawrence’s Cell.\n", + "Scene IV. A Street.\n", + "Scene V. Capulet’s Garden.\n", + "Scene VI. Friar Lawrence’s Cell.\n", + "\n", + "ACT III\n", + "Scene I. A public Place.\n", + "\n", + "Cleaned text preview Text 1:\n", + " the tragedy of romeo and juliet by william shakespeare contents the prologue. act i scene i. a public place. scene ii. a street. scene iii. room in capulet s house. scene iv. a street. scene v. a hall in capulet s house. act ii chorus. scene i. an open place adjoining capulet s garden. scene ii. capulet s garden. scene iii. friar lawrence s cell. scene iv. a street. scene v. capulet s garden. scene vi. friar lawrence s cell. act iii scene i. a public place. scene ii. a room in capulet s house. scene iii. friar lawrence s cell. scene iv. a room in capulet s house. scene v. an open gallery to juliet s chamber, overlooking the garden. act iv scene i. friar lawrence s cell. scene ii. hall in capulet s house. scene iii. juliet s chamber. scene iv. hall in capulet s house. scene v. juliet s chamber; juliet on the bed. act v scene i. mantua. a street. scene ii. friar lawrence s cell. scene iii. a churchyard; in it a monument belonging to the capulets. dramatis person escalus, prince of verona. mercutio, kinsman to the prince, and friend to romeo. paris, a young nobleman, kinsman to the prince. page to paris. montague, head of a veronese family at feud with the capulets. lady montague, wife to montague. romeo, son to montague. benvolio, nephew to montague, and friend to romeo. abram, servant to montague. balthasar, servant to romeo. capulet, head of a veronese family at feud with the montagues. lady capulet, wife to capulet. juliet, daughter to capulet. tybalt, nephew to lady capulet. capulet s cousin, an old man. nurse to juliet. peter, servant to juliet s nurse. sampson, servant to capulet. gregory, servant to capulet. servants. friar lawrence, a franciscan. friar john, of the same order. an apothecary. chorus. three musicians. an officer. citizens of verona; several men and women, relations to both houses; maskers, guards, watchmen and attendants. scene. during the greater part of the play in verona; once, in the fifth act, at mantua. the prologue enter chorus. chorus. two households, both alike in dignity, in fair verona, where we lay our scene, from ancient grudge break to new mutiny, where civil blood makes civil hands unclean. from forth the fatal loins of these two foes a pair of star-cross d lovers take their life; whose misadventur d piteous overthrows doth with their death bury their parents strife. the fearful passage of their death-mark d love, and the continuance of their parents rage, which, but their children s end, nought could remove, is now the two hours traffic of our stage; the which, if you with patient ears attend, what here shall miss, our toil shall strive to mend. exit. act i scene i. a public place. enter sampson and gregory armed with swords and bucklers. sampson. gregory, on my word, we ll not carry coals. gregory. no, for then we should be colliers. sampson. i mean, if we be in choler, we ll draw. gregory. ay, while you live, draw your neck out o the collar. sampson. i strike quickly, being moved. gregory. but thou art not quickly moved to strike. sampson. a dog of the house of montague moves me. gregory. to move is to stir; and to be valiant is to stand: therefore, if thou art moved, thou runn st away. sampson. a dog of that house shall move me to stand. i will take the wall of any man or maid of montague s. gregory. that shows thee a weak slave, for the weakest goes to the wall. sampson. true, and therefore women, being the weaker vessels, are ever thrust to the wall: therefore i will push montague s men from the wall, and thrust his maids to the wall. gregory. the quarrel is between our masters and us their men. sampson. tis all one, i will show myself a tyrant: when i have fought with the men i will be civil with the maids, i will cut off their heads. gregory. the heads of the maids? sampson. ay, the heads of the maids, or their maidenheads; take it in what sense thou wilt. gregory. they must take it in sense that feel it. sampson. me they shall feel while i am able to stand: and tis known i am a pretty piece of flesh. gregory. tis well thou art not fish; if thou hadst, thou hadst been poor john. draw thy tool; here comes of the house of montagues. enter abram and balthasar. sampson. my naked weapon is out: quarrel, i will back thee. gregory. how? turn thy back and run? sampson. fear me not. gregory. no, marry; i fear thee! sampson. let us take the law of our sides; let them begin. gregory. i will frown as i pass by, and let them take it as they list. sampson. nay, as they dare. i will bite my thumb at them, which is disgrace to them if they bear it. abram. do you bite your thumb at us, sir? sampson. i do bite my thumb, sir. abram. do you bite your thumb at us, sir? sampson. is the law of our side if i say ay? gregory. no. sampson. no sir, i do not bite my thumb at you, sir; but i bite my thumb, sir. gregory. do you quarrel, sir? abram. quarrel, sir? no, sir. sampson. but if you do, sir, i am for you. i serve as good a man as you. abram. no better. sampson. well, sir. enter benvolio. gregory. say better; here comes one of my master s kinsmen. sampson. yes, better, sir. abram. you lie. sampson. draw, if you be men. gregory, remember thy washing blow. they fight. benvolio. part, fools! put up your swords, you know not what you do. beats down their swords. enter tybalt. tybalt. what, art thou drawn among these heartless hinds? turn thee benvolio, look upon thy death. benvolio. i do but keep the peace, put up thy sword, or manage it to part these men with me. tybalt. what, drawn, and talk of peace? i hate the word as i hate hell, all montagues, and thee: have at thee, coward. they fight. enter three or four citizens with clubs. first citizen. clubs, bills and partisans! strike! beat them down! down with the capulets! down with the montagues! enter capulet in his gown, and lady capulet. capulet. what noise is this? give me my long sword, ho! lady capulet. a crutch, a crutch! why call you for a sword? capulet. my sword, i say! old montague is come, and flourishes his blade in spite of me. enter montague and his lady montague. montague. thou villain capulet! hold me not, let me go. lady montague. thou shalt not stir one foot to seek a foe. enter prince escalus, with attendants. prince. rebellious subjects, enemies to peace, profaners of this neighbour-stained steel, will they not hear? what, ho! you men, you beasts, that quench the fire of your pernicious rage with purple fountains issuing from your veins, on pain of torture, from those bloody hands throw your mistemper d weapons to the ground and hear the sentence of your moved prince. three civil brawls, bred of an airy word, by thee, old capulet, and montague, have thrice disturb d the quiet of our streets, and made verona s ancient citizens cast by their grave beseeming ornaments, to wield old partisans, in hands as old, canker d with peace, to part your canker d hate. if ever you disturb our streets again, your lives shall pay the forfeit of the peace. for this time all the rest depart away: you, capulet, shall go along with me, and montague, come you this afternoon, to know our farther pleasure in this case, to old free-town, our common judgement-place. once more, on pain of death, all men depart. exeunt prince and attendants; capulet, lady capulet, tybalt, citizens and servants. montague. who set this ancient quarrel new abroach? speak, nephew, were you by when it began? benvolio. here were the servants of your adversary and yours, close fighting ere i did approach. i drew to part them, in the instant came the fiery tybalt, with his sword prepar d, which, as he breath d defiance to my ears, he swung about his head, and cut the winds, who nothing hurt withal, hiss d him in scorn. while we were interchanging thrusts and blows came more and more, and fought on part and part, till the prince came, who parted either part. lady montague. o where is romeo, saw you him today? right glad i am he was not at this fray. benvolio. madam, an hour before the worshipp d sun peer d forth the golden window of the east, a troubled mind drave me to walk abroad, where underneath the grove of sycamore that westward rooteth from this city side, so early walking did i see your son. towards him i made, but he was ware of me, and stole into the covert of the wood. i, measuring his affections by my own, which then most sought where most might not be found, being one too many by my weary self, pursu d my humour, not pursuing his, and gladly shunn d who gladly fled from me. montague. many a morning hath he there been seen, with tears augmenting the fresh morning s dew, adding to clouds more clouds with his deep sighs; but all so soon as the all-cheering sun should in the farthest east begin to draw the shady curtains from aurora s bed, away from light steals home my heavy son, and private in his chamber pens himself, shuts up his windows, locks fair daylight out and makes himself an artificial night. black and portentous must this humour prove, unless good counsel may the cause remove. benvolio. my noble uncle, do you know the cause? montague. i neither know it nor can learn of him. benvolio. have you importun d him by any means? montague. both by myself and many other friends; but he, his own affections counsellor, is to himself i will not say how true but to himself so secret and so close, so far from sounding and discovery, as is the bud bit with an envious worm ere he can spread his sweet leaves to the air, or dedicate his beauty to the sun. could we but learn from whence his sorrows grow, we would as willingly give cure as know. enter romeo. benvolio. see, where he comes. so please you step aside; i ll know his grievance or be much denied. montague. i would thou wert so happy by thy stay to hear true shrift. come, madam, let s away, exeunt montague and lady montague. benvolio. good morrow, cousin. romeo. is the day so young? benvolio. but new struck nine. romeo. ay me, sad hours seem long. was that my father that went hence so fast? benvolio. it was. what sadness lengthens romeo s hours? romeo. not having that which, having, makes them short. benvolio. in love? romeo. out. benvolio. of love? romeo. out of her favour where i am in love. benvolio. alas that love so gentle in his view, should be so tyrannous and rough in proof. romeo. alas that love, whose view is muffled still, should, without eyes, see pathways to his will! where shall we dine? o me! what fray was here? yet tell me not, for i have heard it all. here s much to do with hate, but more with love: why, then, o brawling love! o loving hate! o anything, of nothing first create! o heavy lightness! serious vanity! misshapen chaos of well-seeming forms! feather of lead, bright smoke, cold fire, sick health! still-waking sleep, that is not what it is! this love feel i, that feel no love in this. dost thou not laugh? benvolio. no coz, i rather weep. romeo. good heart, at what? benvolio. at thy good heart s oppression. romeo. why such is love s transgression. griefs of mine own lie heavy in my breast, which thou wilt propagate to have it prest with more of thine. this love that thou hast shown doth add more grief to too much of mine own. love is a smoke made with the fume of sighs; being purg d, a fire sparkling in lovers eyes; being vex d, a sea nourish d with lovers tears: what is it else? a madness most discreet, a choking gall, and a preserving sweet. farewell, my coz. going. benvolio. soft! i will go along: and if you leave me so, you do me wrong. romeo. tut! i have lost myself; i am not here. this is not romeo, he s some other where. benvolio. tell me in sadness who is that you love? romeo. what, shall i groan and tell thee? benvolio. groan! why, no; but sadly tell me who. romeo. bid a sick man in sadness make his will, a word ill urg d to one that is so ill. in sadness, cousin, i do love a woman. benvolio. i aim d so near when i suppos d you lov d. romeo. a right good markman, and she s fair i love. benvolio. a right fair mark, fair coz, is soonest hit. romeo. well, in that hit you miss: she ll not be hit with cupid s arrow, she hath dian s wit; and in strong proof of chastity well arm d, from love s weak childish bow she lives uncharm d. she will not stay the siege of loving terms nor bide th encounter of assailing eyes, nor ope her lap to saint-seducing gold: o she s rich in beauty, only poor that when she dies, with beauty dies her store. benvolio. then she hath sworn that she will still live chaste? romeo. she hath, and in that sparing makes huge waste; for beauty starv d with her severity, cuts beauty off from all posterity. she is too fair, too wise; wisely too fair, to merit bliss by making me despair. she hath forsworn to love, and in that vow do i live dead, that live to tell it now. benvolio. be rul d by me, forget to think of her. romeo. o teach me how i should forget to think. benvolio. by giving liberty unto thine eyes; examine other beauties. romeo. tis the way to call hers, exquisite, in question more. these happy masks that kiss fair ladies brows, being black, puts us in mind they hide the fair; he that is strucken blind cannot forget the precious treasure of his eyesight lost. show me a mistress that is passing fair, what doth her beauty serve but as a note where i may read who pass d that passing fair? farewell, thou canst not teach me to forget. benvolio. i ll pay that doctrine, or else die in debt. exeunt. scene ii. a street. enter capulet, paris and servant. capulet. but montague is bound as well as i, in penalty alike; and tis not hard, i think, for men so old as we to keep the peace. paris. of honourable reckoning are you both, and pity tis you liv d at odds so long. but now my lord, what say you to my suit? capulet. but saying o er what i have said before. my child is yet a stranger in the world, she hath not seen the change of fourteen years; let two more summers wither in their pride ere we may think her ripe to be a bride. paris. younger than she are happy mothers made. capulet. and too soon marr d are those so early made. the earth hath swallowed all my hopes but she, she is the hopeful lady of my earth: but woo her, gentle paris, get her heart, my will to her consent is but a part; and she agree, within her scope of choice lies my consent and fair according voice. this night i hold an old accustom d feast, whereto i have invited many a guest, such as i love, and you among the store, one more, most welcome, makes my number more. at my poor house look to behold this night earth-treading stars that make dark heaven light: such comfort as do lusty young men feel when well apparell d april on the heel of limping winter treads, even such delight among fresh female buds shall you this night inherit at my house. hear all, all see, and like her most whose merit most shall be: which, on more view of many, mine, being one, may stand in number, though in reckoning none. come, go with me. go, sirrah, trudge about through fair verona; find those persons out whose names are written there, gives a paper and to them say, my house and welcome on their pleasure stay. exeunt capulet and paris. servant. find them out whose names are written here! it is written that the shoemaker should meddle with his yard and the tailor with his last, the fisher with his pencil, and the painter with his nets; but i am sent to find those persons whose names are here writ, and can never find what names the writing person hath here writ. i must to the learned. in good time! enter benvolio and romeo. benvolio. tut, man, one fire burns out another s burning, one pain is lessen d by another s anguish; turn giddy, and be holp by backward turning; one desperate grief cures with another s languish: take thou some new infection to thy eye, and the rank poison of the old will die. romeo. your plantain leaf is excellent for that. benvolio. for what, i pray thee? romeo. for your broken shin. benvolio. why, romeo, art thou mad? romeo. not mad, but bound more than a madman is: shut up in prison, kept without my food, whipp d and tormented and god-den, good fellow. servant. god gi go-den. i pray, sir, can you read? romeo. ay, mine own fortune in my misery. servant. perhaps you have learned it without book. but i pray, can you read anything you see? romeo. ay, if i know the letters and the language. servant. ye say honestly, rest you merry! romeo. stay, fellow; i can read. he reads the letter. signior martino and his wife and daughters; county anselmo and his beauteous sisters; the lady widow of utruvio; signior placentio and his lovely nieces; mercutio and his brother valentine; mine uncle capulet, his wife, and daughters; my fair niece rosaline and livia; signior valentio and his cousin tybalt; lucio and the lively helena. a fair assembly. gives back the paper whither should they come? servant. up. romeo. whither to supper? servant. to our house. romeo. whose house? servant. my master s. romeo. indeed i should have ask d you that before. servant. now i ll tell you without asking. my master is the great rich capulet, and if you be not of the house of montagues, i pray come and crush a cup of wine. rest you merry. exit. benvolio. at this same ancient feast of capulet s sups the fair rosaline whom thou so lov st; with all the admired beauties of verona. go thither and with unattainted eye, compare her face with some that i shall show, and i will make thee think thy swan a crow. romeo. when the devout religion of mine eye maintains such falsehood, then turn tears to fire; and these who, often drown d, could never die, transparent heretics, be burnt for liars. one fairer than my love? the all-seeing sun ne er saw her match since first the world begun. benvolio. tut, you saw her fair, none else being by, herself pois d with herself in either eye: but in that crystal scales let there be weigh d your lady s love against some other maid that i will show you shining at this feast, and she shall scant show well that now shows best. romeo. i ll go along, no such sight to be shown, but to rejoice in splendour of my own. exeunt. scene iii. room in capulet s house. enter lady capulet and nurse. lady capulet. nurse, where s my daughter? call her forth to me. nurse. now, by my maidenhead, at twelve year old, i bade her come. what, lamb! what ladybird! god forbid! where s this girl? what, juliet! enter juliet. juliet. how now, who calls? nurse. your mother. juliet. madam, i am here. what is your will? lady capulet. this is the matter. nurse, give leave awhile, we must talk in secret. nurse, come back again, i have remember d me, thou s hear our counsel. thou knowest my daughter s of a pretty age. nurse. faith, i can tell her age unto an hour. lady capulet. she s not fourteen. nurse. i ll lay fourteen of my teeth, and yet, to my teen be it spoken, i have but four, she is not fourteen. how long is it now to lammas-tide? lady capulet. a fortnight and odd days. nurse. even or odd, of all days in the year, come lammas eve at night shall she be fourteen. susan and she, god rest all christian souls! were of an age. well, susan is with god; she was too good for me. but as i said, on lammas eve at night shall she be fourteen; that shall she, marry; i remember it well. tis since the earthquake now eleven years; and she was wean d, i never shall forget it , of all the days of the year, upon that day: for i had then laid wormwood to my dug, sitting in the sun under the dovehouse wall; my lord and you were then at mantua: nay, i do bear a brain. but as i said, when it did taste the wormwood on the nipple of my dug and felt it bitter, pretty fool, to see it tetchy, and fall out with the dug! shake, quoth the dovehouse: twas no need, i trow, to bid me trudge. and since that time it is eleven years; for then she could stand alone; nay, by th rood she could have run and waddled all about; for even the day before she broke her brow, and then my husband, god be with his soul! a was a merry man, took up the child: yea, quoth he, dost thou fall upon thy face? thou wilt fall backward when thou hast more wit; wilt thou not, jule? and, by my holidame, the pretty wretch left crying, and said ay . to see now how a jest shall come about. i warrant, and i should live a thousand years, i never should forget it. wilt thou not, jule? quoth he; and, pretty fool, it stinted, and said ay. lady capulet. enough of this; i pray thee hold thy peace. nurse. yes, madam, yet i cannot choose but laugh, to think it should leave crying, and say ay ; and yet i warrant it had upon it brow a bump as big as a young cockerel s stone; a perilous knock, and it cried bitterly. yea, quoth my husband, fall st upon thy face? thou wilt fall backward when thou comest to age; wilt thou not, jule? it stinted, and said ay . juliet. and stint thou too, i pray thee, nurse, say i. nurse. peace, i have done. god mark thee to his grace thou wast the prettiest babe that e er i nurs d: and i might live to see thee married once, i have my wish. lady capulet. marry, that marry is the very theme i came to talk of. tell me, daughter juliet, how stands your disposition to be married? juliet. it is an honour that i dream not of. nurse. an honour! were not i thine only nurse, i would say thou hadst suck d wisdom from thy teat. lady capulet. well, think of marriage now: younger than you, here in verona, ladies of esteem, are made already mothers. by my count i was your mother much upon these years that you are now a maid. thus, then, in brief; the valiant paris seeks you for his love. nurse. a man, young lady! lady, such a man as all the world why he s a man of wax. lady capulet. verona s summer hath not such a flower. nurse. nay, he s a flower, in faith a very flower. lady capulet. what say you, can you love the gentleman? this night you shall behold him at our feast; read o er the volume of young paris face, and find delight writ there with beauty s pen. examine every married lineament, and see how one another lends content; and what obscur d in this fair volume lies, find written in the margent of his eyes. this precious book of love, this unbound lover, to beautify him, only lacks a cover: the fish lives in the sea; and tis much pride for fair without the fair within to hide. that book in many s eyes doth share the glory, that in gold clasps locks in the golden story; so shall you share all that he doth possess, by having him, making yourself no less. nurse. no less, nay bigger. women grow by men. lady capulet. speak briefly, can you like of paris love? juliet. i ll look to like, if looking liking move: but no more deep will i endart mine eye than your consent gives strength to make it fly. enter a servant. servant. madam, the guests are come, supper served up, you called, my young lady asked for, the nurse cursed in the pantry, and everything in extremity. i must hence to wait, i beseech you follow straight. lady capulet. we follow thee. exit servant. juliet, the county stays. nurse. go, girl, seek happy nights to happy days. exeunt. scene iv. a street. enter romeo, mercutio, benvolio, with five or six maskers; torch-bearers and others. romeo. what, shall this speech be spoke for our excuse? or shall we on without apology? benvolio. the date is out of such prolixity: we ll have no cupid hoodwink d with a scarf, bearing a tartar s painted bow of lath, scaring the ladies like a crow-keeper; nor no without-book prologue, faintly spoke after the prompter, for our entrance: but let them measure us by what they will, we ll measure them a measure, and be gone. romeo. give me a torch, i am not for this ambling; being but heavy i will bear the light. mercutio. nay, gentle romeo, we must have you dance. romeo. not i, believe me, you have dancing shoes, with nimble soles, i have a soul of lead so stakes me to the ground i cannot move. mercutio. you are a lover, borrow cupid s wings, and soar with them above a common bound. romeo. i am too sore enpierced with his shaft to soar with his light feathers, and so bound, i cannot bound a pitch above dull woe. under love s heavy burden do i sink. mercutio. and, to sink in it, should you burden love; too great oppression for a tender thing. romeo. is love a tender thing? it is too rough, too rude, too boisterous; and it pricks like thorn. mercutio. if love be rough with you, be rough with love; prick love for pricking, and you beat love down. give me a case to put my visage in: putting on a mask. a visor for a visor. what care i what curious eye doth quote deformities? here are the beetle-brows shall blush for me. benvolio. come, knock and enter; and no sooner in but every man betake him to his legs. romeo. a torch for me: let wantons, light of heart, tickle the senseless rushes with their heels; for i am proverb d with a grandsire phrase, i ll be a candle-holder and look on, the game was ne er so fair, and i am done. mercutio. tut, dun s the mouse, the constable s own word: if thou art dun, we ll draw thee from the mire or save your reverence love, wherein thou stickest up to the ears. come, we burn daylight, ho. romeo. nay, that s not so. mercutio. i mean sir, in delay we waste our lights in vain, light lights by day. take our good meaning, for our judgment sits five times in that ere once in our five wits. romeo. and we mean well in going to this mask; but tis no wit to go. mercutio. why, may one ask? romeo. i dreamt a dream tonight. mercutio. and so did i. romeo. well what was yours? mercutio. that dreamers often lie. romeo. in bed asleep, while they do dream things true. mercutio. o, then, i see queen mab hath been with you. she is the fairies midwife, and she comes in shape no bigger than an agate-stone on the fore-finger of an alderman, drawn with a team of little atomies over men s noses as they lie asleep: her waggon-spokes made of long spinners legs; the cover, of the wings of grasshoppers; her traces, of the smallest spider s web; the collars, of the moonshine s watery beams; her whip of cricket s bone; the lash, of film; her waggoner, a small grey-coated gnat, not half so big as a round little worm prick d from the lazy finger of a maid: her chariot is an empty hazelnut, made by the joiner squirrel or old grub, time out o mind the fairies coachmakers. and in this state she gallops night by night through lovers brains, and then they dream of love; o er courtiers knees, that dream on curtsies straight; o er lawyers fingers, who straight dream on fees; o er ladies lips, who straight on kisses dream, which oft the angry mab with blisters plagues, because their breaths with sweetmeats tainted are: sometime she gallops o er a courtier s nose, and then dreams he of smelling out a suit; and sometime comes she with a tithe-pig s tail, tickling a parson s nose as a lies asleep, then dreams he of another benefice: sometime she driveth o er a soldier s neck, and then dreams he of cutting foreign throats, of breaches, ambuscados, spanish blades, of healths five fathom deep; and then anon drums in his ear, at which he starts and wakes; and, being thus frighted, swears a prayer or two, and sleeps again. this is that very mab that plats the manes of horses in the night; and bakes the elf-locks in foul sluttish hairs, which, once untangled, much misfortune bodes: this is the hag, when maids lie on their backs, that presses them, and learns them first to bear, making them women of good carriage: this is she, romeo. peace, peace, mercutio, peace, thou talk st of nothing. mercutio. true, i talk of dreams, which are the children of an idle brain, begot of nothing but vain fantasy, which is as thin of substance as the air, and more inconstant than the wind, who woos even now the frozen bosom of the north, and, being anger d, puffs away from thence, turning his side to the dew-dropping south. benvolio. this wind you talk of blows us from ourselves: supper is done, and we shall come too late. romeo. i fear too early: for my mind misgives some consequence yet hanging in the stars, shall bitterly begin his fearful date with this night s revels; and expire the term of a despised life, clos d in my breast by some vile forfeit of untimely death. but he that hath the steerage of my course direct my suit. on, lusty gentlemen! benvolio. strike, drum. exeunt. scene v. a hall in capulet s house. musicians waiting. enter servants. first servant. where s potpan, that he helps not to take away? he shift a trencher! he scrape a trencher! second servant. when good manners shall lie all in one or two men s hands, and they unwash d too, tis a foul thing. first servant. away with the join-stools, remove the court-cupboard, look to the plate. good thou, save me a piece of marchpane; and as thou loves me, let the porter let in susan grindstone and nell. antony and potpan! second servant. ay, boy, ready. first servant. you are looked for and called for, asked for and sought for, in the great chamber. second servant. we cannot be here and there too. cheerly, boys. be brisk awhile, and the longer liver take all. exeunt. enter capulet, c. with the guests and gentlewomen to the maskers. capulet. welcome, gentlemen, ladies that have their toes unplagu d with corns will have a bout with you. ah my mistresses, which of you all will now deny to dance? she that makes dainty, she i ll swear hath corns. am i come near ye now? welcome, gentlemen! i have seen the day that i have worn a visor, and could tell a whispering tale in a fair lady s ear, such as would please; tis gone, tis gone, tis gone, you are welcome, gentlemen! come, musicians, play. a hall, a hall, give room! and foot it, girls. music plays, and they dance. more light, you knaves; and turn the tables up, and quench the fire, the room is grown too hot. ah sirrah, this unlook d-for sport comes well. nay sit, nay sit, good cousin capulet, for you and i are past our dancing days; how long is t now since last yourself and i were in a mask? capulet s cousin. by r lady, thirty years. capulet. what, man, tis not so much, tis not so much: tis since the nuptial of lucentio, come pentecost as quickly as it will, some five and twenty years; and then we mask d. capulet s cousin. tis more, tis more, his son is elder, sir; his son is thirty. capulet. will you tell me that? his son was but a ward two years ago. romeo. what lady is that, which doth enrich the hand of yonder knight? servant. i know not, sir. romeo. o, she doth teach the torches to burn bright! it seems she hangs upon the cheek of night as a rich jewel in an ethiop s ear; beauty too rich for use, for earth too dear! so shows a snowy dove trooping with crows as yonder lady o er her fellows shows. the measure done, i ll watch her place of stand, and touching hers, make blessed my rude hand. did my heart love till now? forswear it, sight! for i ne er saw true beauty till this night. tybalt. this by his voice, should be a montague. fetch me my rapier, boy. what, dares the slave come hither, cover d with an antic face, to fleer and scorn at our solemnity? now by the stock and honour of my kin, to strike him dead i hold it not a sin. capulet. why how now, kinsman! wherefore storm you so? tybalt. uncle, this is a montague, our foe; a villain that is hither come in spite, to scorn at our solemnity this night. capulet. young romeo, is it? tybalt. tis he, that villain romeo. capulet. content thee, gentle coz, let him alone, a bears him like a portly gentleman; and, to say truth, verona brags of him to be a virtuous and well-govern d youth. i would not for the wealth of all the town here in my house do him disparagement. therefore be patient, take no note of him, it is my will; the which if thou respect, show a fair presence and put off these frowns, an ill-beseeming semblance for a feast. tybalt. it fits when such a villain is a guest: i ll not endure him. capulet. he shall be endur d. what, goodman boy! i say he shall, go to; am i the master here, or you? go to. you ll not endure him! god shall mend my soul, you ll make a mutiny among my guests! you will set cock-a-hoop, you ll be the man! tybalt. why, uncle, tis a shame. capulet. go to, go to! you are a saucy boy. is t so, indeed? this trick may chance to scathe you, i know what. you must contrary me! marry, tis time. well said, my hearts! you are a princox; go: be quiet, or more light, more light! for shame! i ll make you quiet. what, cheerly, my hearts. tybalt. patience perforce with wilful choler meeting makes my flesh tremble in their different greeting. i will withdraw: but this intrusion shall, now seeming sweet, convert to bitter gall. exit. romeo. to juliet. if i profane with my unworthiest hand this holy shrine, the gentle sin is this, my lips, two blushing pilgrims, ready stand to smooth that rough touch with a tender kiss. juliet. good pilgrim, you do wrong your hand too much, which mannerly devotion shows in this; for saints have hands that pilgrims hands do touch, and palm to palm is holy palmers kiss. romeo. have not saints lips, and holy palmers too? juliet. ay, pilgrim, lips that they must use in prayer. romeo. o, then, dear saint, let lips do what hands do: they pray, grant thou, lest faith turn to despair. juliet. saints do not move, though grant for prayers sake. romeo. then move not while my prayer s effect i take. thus from my lips, by thine my sin is purg d. kissing her. juliet. then have my lips the sin that they have took. romeo. sin from my lips? o trespass sweetly urg d! give me my sin again. juliet. you kiss by the book. nurse. madam, your mother craves a word with you. romeo. what is her mother? nurse. marry, bachelor, her mother is the lady of the house, and a good lady, and a wise and virtuous. i nurs d her daughter that you talk d withal. i tell you, he that can lay hold of her shall have the chinks. romeo. is she a capulet? o dear account! my life is my foe s debt. benvolio. away, be gone; the sport is at the best. romeo. ay, so i fear; the more is my unrest. capulet. nay, gentlemen, prepare not to be gone, we have a trifling foolish banquet towards. is it e en so? why then, i thank you all; i thank you, honest gentlemen; good night. more torches here! come on then, let s to bed. ah, sirrah, by my fay, it waxes late, i ll to my rest. exeunt all but juliet and nurse. juliet. come hither, nurse. what is yond gentleman? nurse. the son and heir of old tiberio. juliet. what s he that now is going out of door? nurse. marry, that i think be young petruchio. juliet. what s he that follows here, that would not dance? nurse. i know not. juliet. go ask his name. if he be married, my grave is like to be my wedding bed. nurse. his name is romeo, and a montague, the only son of your great enemy. juliet. my only love sprung from my only hate! too early seen unknown, and known too late! prodigious birth of love it is to me, that i must love a loathed enemy. nurse. what s this? what s this? juliet. a rhyme i learn d even now of one i danc d withal. one calls within, juliet . nurse. anon, anon! come let s away, the strangers all are gone. exeunt. act ii enter chorus. chorus. now old desire doth in his deathbed lie, and young affection gapes to be his heir; that fair for which love groan d for and would die, with tender juliet match d, is now not fair. now romeo is belov d, and loves again, alike bewitched by the charm of looks; but to his foe suppos d he must complain, and she steal love s sweet bait from fearful hooks: being held a foe, he may not have access to breathe such vows as lovers use to swear; and she as much in love, her means much less to meet her new beloved anywhere. but passion lends them power, time means, to meet, tempering extremities with extreme sweet. exit. scene i. an open place adjoining capulet s garden. enter romeo. romeo. can i go forward when my heart is here? turn back, dull earth, and find thy centre out. he climbs the wall and leaps down within it. enter benvolio and mercutio. benvolio. romeo! my cousin romeo! romeo! mercutio. he is wise, and on my life hath stol n him home to bed. benvolio. he ran this way, and leap d this orchard wall: call, good mercutio. mercutio. nay, i ll conjure too. romeo! humours! madman! passion! lover! appear thou in the likeness of a sigh, speak but one rhyme, and i am satisfied; cry but ah me! pronounce but love and dove; speak to my gossip venus one fair word, one nickname for her purblind son and heir, young abraham cupid, he that shot so trim when king cophetua lov d the beggar-maid. he heareth not, he stirreth not, he moveth not; the ape is dead, and i must conjure him. i conjure thee by rosaline s bright eyes, by her high forehead and her scarlet lip, by her fine foot, straight leg, and quivering thigh, and the demesnes that there adjacent lie, that in thy likeness thou appear to us. benvolio. an if he hear thee, thou wilt anger him. mercutio. this cannot anger him. twould anger him to raise a spirit in his mistress circle, of some strange nature, letting it there stand till she had laid it, and conjur d it down; that were some spite. my invocation is fair and honest, and, in his mistress name, i conjure only but to raise up him. benvolio. come, he hath hid himself among these trees to be consorted with the humorous night. blind is his love, and best befits the dark. mercutio. if love be blind, love cannot hit the mark. now will he sit under a medlar tree, and wish his mistress were that kind of fruit as maids call medlars when they laugh alone. o romeo, that she were, o that she were an open-arse and thou a poperin pear! romeo, good night. i ll to my truckle-bed. this field-bed is too cold for me to sleep. come, shall we go? benvolio. go then; for tis in vain to seek him here that means not to be found. exeunt. scene ii. capulet s garden. enter romeo. romeo. he jests at scars that never felt a wound. juliet appears above at a window. but soft, what light through yonder window breaks? it is the east, and juliet is the sun! arise fair sun and kill the envious moon, who is already sick and pale with grief, that thou her maid art far more fair than she. be not her maid since she is envious; her vestal livery is but sick and green, and none but fools do wear it; cast it off. it is my lady, o it is my love! o, that she knew she were! she speaks, yet she says nothing. what of that? her eye discourses, i will answer it. i am too bold, tis not to me she speaks. two of the fairest stars in all the heaven, having some business, do entreat her eyes to twinkle in their spheres till they return. what if her eyes were there, they in her head? the brightness of her cheek would shame those stars, as daylight doth a lamp; her eyes in heaven would through the airy region stream so bright that birds would sing and think it were not night. see how she leans her cheek upon her hand. o that i were a glove upon that hand, that i might touch that cheek. juliet. ay me. romeo. she speaks. o speak again bright angel, for thou art as glorious to this night, being o er my head, as is a winged messenger of heaven unto the white-upturned wondering eyes of mortals that fall back to gaze on him when he bestrides the lazy-puffing clouds and sails upon the bosom of the air. juliet. o romeo, romeo, wherefore art thou romeo? deny thy father and refuse thy name. or if thou wilt not, be but sworn my love, and i ll no longer be a capulet. romeo. aside. shall i hear more, or shall i speak at this? juliet. tis but thy name that is my enemy; thou art thyself, though not a montague. what s montague? it is nor hand nor foot, nor arm, nor face, nor any other part belonging to a man. o be some other name. what s in a name? that which we call a rose by any other name would smell as sweet; so romeo would, were he not romeo call d, retain that dear perfection which he owes without that title. romeo, doff thy name, and for thy name, which is no part of thee, take all myself. romeo. i take thee at thy word. call me but love, and i ll be new baptis d; henceforth i never will be romeo. juliet. what man art thou that, thus bescreen d in night so stumblest on my counsel? romeo. by a name i know not how to tell thee who i am: my name, dear saint, is hateful to myself, because it is an enemy to thee. had i it written, i would tear the word. juliet. my ears have yet not drunk a hundred words of thy tongue s utterance, yet i know the sound. art thou not romeo, and a montague? romeo. neither, fair maid, if either thee dislike. juliet. how cam st thou hither, tell me, and wherefore? the orchard walls are high and hard to climb, and the place death, considering who thou art, if any of my kinsmen find thee here. romeo. with love s light wings did i o erperch these walls, for stony limits cannot hold love out, and what love can do, that dares love attempt: therefore thy kinsmen are no stop to me. juliet. if they do see thee, they will murder thee. romeo. alack, there lies more peril in thine eye than twenty of their swords. look thou but sweet, and i am proof against their enmity. juliet. i would not for the world they saw thee here. romeo. i have night s cloak to hide me from their eyes, and but thou love me, let them find me here. my life were better ended by their hate than death prorogued, wanting of thy love. juliet. by whose direction found st thou out this place? romeo. by love, that first did prompt me to enquire; he lent me counsel, and i lent him eyes. i am no pilot; yet wert thou as far as that vast shore wash d with the farthest sea, i should adventure for such merchandise. juliet. thou knowest the mask of night is on my face, else would a maiden blush bepaint my cheek for that which thou hast heard me speak tonight. fain would i dwell on form, fain, fain deny what i have spoke; but farewell compliment. dost thou love me? i know thou wilt say ay, and i will take thy word. yet, if thou swear st, thou mayst prove false. at lovers perjuries, they say jove laughs. o gentle romeo, if thou dost love, pronounce it faithfully. or if thou thinkest i am too quickly won, i ll frown and be perverse, and say thee nay, so thou wilt woo. but else, not for the world. in truth, fair montague, i am too fond; and therefore thou mayst think my haviour light: but trust me, gentleman, i ll prove more true than those that have more cunning to be strange. i should have been more strange, i must confess, but that thou overheard st, ere i was ware, my true-love passion; therefore pardon me, and not impute this yielding to light love, which the dark night hath so discovered. romeo. lady, by yonder blessed moon i vow, that tips with silver all these fruit-tree tops, juliet. o swear not by the moon, th inconstant moon, that monthly changes in her circled orb, lest that thy love prove likewise variable. romeo. what shall i swear by? juliet. do not swear at all. or if thou wilt, swear by thy gracious self, which is the god of my idolatry, and i ll believe thee. romeo. if my heart s dear love, juliet. well, do not swear. although i joy in thee, i have no joy of this contract tonight; it is too rash, too unadvis d, too sudden, too like the lightning, which doth cease to be ere one can say it lightens. sweet, good night. this bud of love, by summer s ripening breath, may prove a beauteous flower when next we meet. good night, good night. as sweet repose and rest come to thy heart as that within my breast. romeo. o wilt thou leave me so unsatisfied? juliet. what satisfaction canst thou have tonight? romeo. th exchange of thy love s faithful vow for mine. juliet. i gave thee mine before thou didst request it; and yet i would it were to give again. romeo. would st thou withdraw it? for what purpose, love? juliet. but to be frank and give it thee again. and yet i wish but for the thing i have; my bounty is as boundless as the sea, my love as deep; the more i give to thee, the more i have, for both are infinite. i hear some noise within. dear love, adieu. nurse calls within. anon, good nurse! sweet montague be true. stay but a little, i will come again. exit. romeo. o blessed, blessed night. i am afeard, being in night, all this is but a dream, too flattering sweet to be substantial. enter juliet above. juliet. three words, dear romeo, and good night indeed. if that thy bent of love be honourable, thy purpose marriage, send me word tomorrow, by one that i ll procure to come to thee, where and what time thou wilt perform the rite, and all my fortunes at thy foot i ll lay and follow thee my lord throughout the world. nurse. within. madam. juliet. i come, anon. but if thou meanest not well, i do beseech thee, nurse. within. madam. juliet. by and by i come to cease thy strife and leave me to my grief. tomorrow will i send. romeo. so thrive my soul, juliet. a thousand times good night. exit. romeo. a thousand times the worse, to want thy light. love goes toward love as schoolboys from their books, but love from love, towards school with heavy looks. retiring slowly. re-enter juliet, above. juliet. hist! romeo, hist! o for a falconer s voice to lure this tassel-gentle back again. bondage is hoarse and may not speak aloud, else would i tear the cave where echo lies, and make her airy tongue more hoarse than mine with repetition of my romeo s name. romeo. it is my soul that calls upon my name. how silver-sweet sound lovers tongues by night, like softest music to attending ears. juliet. romeo. romeo. my dear? juliet. what o clock tomorrow shall i send to thee? romeo. by the hour of nine. juliet. i will not fail. tis twenty years till then. i have forgot why i did call thee back. romeo. let me stand here till thou remember it. juliet. i shall forget, to have thee still stand there, remembering how i love thy company. romeo. and i ll still stay, to have thee still forget, forgetting any other home but this. juliet. tis almost morning; i would have thee gone, and yet no farther than a wanton s bird, that lets it hop a little from her hand, like a poor prisoner in his twisted gyves, and with a silk thread plucks it back again, so loving-jealous of his liberty. romeo. i would i were thy bird. juliet. sweet, so would i: yet i should kill thee with much cherishing. good night, good night. parting is such sweet sorrow that i shall say good night till it be morrow. exit. romeo. sleep dwell upon thine eyes, peace in thy breast. would i were sleep and peace, so sweet to rest. hence will i to my ghostly sire s cell, his help to crave and my dear hap to tell. exit. scene iii. friar lawrence s cell. enter friar lawrence with a basket. friar lawrence. the grey-ey d morn smiles on the frowning night, chequering the eastern clouds with streaks of light; and fleckled darkness like a drunkard reels from forth day s pathway, made by titan s fiery wheels now, ere the sun advance his burning eye, the day to cheer, and night s dank dew to dry, i must upfill this osier cage of ours with baleful weeds and precious-juiced flowers. the earth that s nature s mother, is her tomb; what is her burying grave, that is her womb: and from her womb children of divers kind we sucking on her natural bosom find. many for many virtues excellent, none but for some, and yet all different. o, mickle is the powerful grace that lies in plants, herbs, stones, and their true qualities. for naught so vile that on the earth doth live but to the earth some special good doth give; nor aught so good but, strain d from that fair use, revolts from true birth, stumbling on abuse. virtue itself turns vice being misapplied, and vice sometime s by action dignified. enter romeo. within the infant rind of this weak flower poison hath residence, and medicine power: for this, being smelt, with that part cheers each part; being tasted, slays all senses with the heart. two such opposed kings encamp them still in man as well as herbs, grace and rude will; and where the worser is predominant, full soon the canker death eats up that plant. romeo. good morrow, father. friar lawrence. benedicite! what early tongue so sweet saluteth me? young son, it argues a distemper d head so soon to bid good morrow to thy bed. care keeps his watch in every old man s eye, and where care lodges sleep will never lie; but where unbruised youth with unstuff d brain doth couch his limbs, there golden sleep doth reign. therefore thy earliness doth me assure thou art uprous d with some distemperature; or if not so, then here i hit it right, our romeo hath not been in bed tonight. romeo. that last is true; the sweeter rest was mine. friar lawrence. god pardon sin. wast thou with rosaline? romeo. with rosaline, my ghostly father? no. i have forgot that name, and that name s woe. friar lawrence. that s my good son. but where hast thou been then? romeo. i ll tell thee ere thou ask it me again. i have been feasting with mine enemy, where on a sudden one hath wounded me that s by me wounded. both our remedies within thy help and holy physic lies. i bear no hatred, blessed man; for lo, my intercession likewise steads my foe. friar lawrence. be plain, good son, and homely in thy drift; riddling confession finds but riddling shrift. romeo. then plainly know my heart s dear love is set on the fair daughter of rich capulet. as mine on hers, so hers is set on mine; and all combin d, save what thou must combine by holy marriage. when, and where, and how we met, we woo d, and made exchange of vow, i ll tell thee as we pass; but this i pray, that thou consent to marry us today. friar lawrence. holy saint francis! what a change is here! is rosaline, that thou didst love so dear, so soon forsaken? young men s love then lies not truly in their hearts, but in their eyes. jesu maria, what a deal of brine hath wash d thy sallow cheeks for rosaline! how much salt water thrown away in waste, to season love, that of it doth not taste. the sun not yet thy sighs from heaven clears, thy old groans yet ring in mine ancient ears. lo here upon thy cheek the stain doth sit of an old tear that is not wash d off yet. if ere thou wast thyself, and these woes thine, thou and these woes were all for rosaline, and art thou chang d? pronounce this sentence then, women may fall, when there s no strength in men. romeo. thou chidd st me oft for loving rosaline. friar lawrence. for doting, not for loving, pupil mine. romeo. and bad st me bury love. friar lawrence. not in a grave to lay one in, another out to have. romeo. i pray thee chide me not, her i love now doth grace for grace and love for love allow. the other did not so. friar lawrence. o, she knew well thy love did read by rote, that could not spell. but come young waverer, come go with me, in one respect i ll thy assistant be; for this alliance may so happy prove, to turn your households rancour to pure love. romeo. o let us hence; i stand on sudden haste. friar lawrence. wisely and slow; they stumble that run fast. exeunt. scene iv. a street. enter benvolio and mercutio. mercutio. where the devil should this romeo be? came he not home tonight? benvolio. not to his father s; i spoke with his man. mercutio. why, that same pale hard-hearted wench, that rosaline, torments him so that he will sure run mad. benvolio. tybalt, the kinsman to old capulet, hath sent a letter to his father s house. mercutio. a challenge, on my life. benvolio. romeo will answer it. mercutio. any man that can write may answer a letter. benvolio. nay, he will answer the letter s master, how he dares, being dared. mercutio. alas poor romeo, he is already dead, stabbed with a white wench s black eye; run through the ear with a love song, the very pin of his heart cleft with the blind bow-boy s butt-shaft. and is he a man to encounter tybalt? benvolio. why, what is tybalt? mercutio. more than prince of cats. o, he s the courageous captain of compliments. he fights as you sing prick-song, keeps time, distance, and proportion. he rests his minim rest, one, two, and the third in your bosom: the very butcher of a silk button, a duellist, a duellist; a gentleman of the very first house, of the first and second cause. ah, the immortal passado, the punto reverso, the hay. benvolio. the what? mercutio. the pox of such antic lisping, affecting phantasies; these new tuners of accent. by jesu, a very good blade, a very tall man, a very good whore. why, is not this a lamentable thing, grandsire, that we should be thus afflicted with these strange flies, these fashion-mongers, these pardon-me s, who stand so much on the new form that they cannot sit at ease on the old bench? o their bones, their bones! enter romeo. benvolio. here comes romeo, here comes romeo! mercutio. without his roe, like a dried herring. o flesh, flesh, how art thou fishified! now is he for the numbers that petrarch flowed in. laura, to his lady, was but a kitchen wench, marry, she had a better love to berhyme her: dido a dowdy; cleopatra a gypsy; helen and hero hildings and harlots; thisbe a grey eye or so, but not to the purpose. signior romeo, bonjour! there s a french salutation to your french slop. you gave us the counterfeit fairly last night. romeo. good morrow to you both. what counterfeit did i give you? mercutio. the slip sir, the slip; can you not conceive? romeo. pardon, good mercutio, my business was great, and in such a case as mine a man may strain courtesy. mercutio. that s as much as to say, such a case as yours constrains a man to bow in the hams. romeo. meaning, to curtsy. mercutio. thou hast most kindly hit it. romeo. a most courteous exposition. mercutio. nay, i am the very pink of courtesy. romeo. pink for flower. mercutio. right. romeo. why, then is my pump well flowered. mercutio. sure wit, follow me this jest now, till thou hast worn out thy pump, that when the single sole of it is worn, the jest may remain after the wearing, solely singular. romeo. o single-soled jest, solely singular for the singleness! mercutio. come between us, good benvolio; my wits faint. romeo. swits and spurs, swits and spurs; or i ll cry a match. mercutio. nay, if thy wits run the wild-goose chase, i am done. for thou hast more of the wild-goose in one of thy wits, than i am sure, i have in my whole five. was i with you there for the goose? romeo. thou wast never with me for anything, when thou wast not there for the goose. mercutio. i will bite thee by the ear for that jest. romeo. nay, good goose, bite not. mercutio. thy wit is a very bitter sweeting, it is a most sharp sauce. romeo. and is it not then well served in to a sweet goose? mercutio. o here s a wit of cheveril, that stretches from an inch narrow to an ell broad. romeo. i stretch it out for that word broad, which added to the goose, proves thee far and wide a broad goose. mercutio. why, is not this better now than groaning for love? now art thou sociable, now art thou romeo; now art thou what thou art, by art as well as by nature. for this drivelling love is like a great natural, that runs lolling up and down to hide his bauble in a hole. benvolio. stop there, stop there. mercutio. thou desirest me to stop in my tale against the hair. benvolio. thou wouldst else have made thy tale large. mercutio. o, thou art deceived; i would have made it short, for i was come to the whole depth of my tale, and meant indeed to occupy the argument no longer. enter nurse and peter. romeo. here s goodly gear! a sail, a sail! mercutio. two, two; a shirt and a smock. nurse. peter! peter. anon. nurse. my fan, peter. mercutio. good peter, to hide her face; for her fan s the fairer face. nurse. god ye good morrow, gentlemen. mercutio. god ye good-den, fair gentlewoman. nurse. is it good-den? mercutio. tis no less, i tell ye; for the bawdy hand of the dial is now upon the prick of noon. nurse. out upon you! what a man are you? romeo. one, gentlewoman, that god hath made for himself to mar. nurse. by my troth, it is well said; for himself to mar, quoth a? gentlemen, can any of you tell me where i may find the young romeo? romeo. i can tell you: but young romeo will be older when you have found him than he was when you sought him. i am the youngest of that name, for fault of a worse. nurse. you say well. mercutio. yea, is the worst well? very well took, i faith; wisely, wisely. nurse. if you be he, sir, i desire some confidence with you. benvolio. she will endite him to some supper. mercutio. a bawd, a bawd, a bawd! so ho! romeo. what hast thou found? mercutio. no hare, sir; unless a hare, sir, in a lenten pie, that is something stale and hoar ere it be spent. sings. an old hare hoar, and an old hare hoar, is very good meat in lent; but a hare that is hoar is too much for a score when it hoars ere it be spent. romeo, will you come to your father s? we ll to dinner thither. romeo. i will follow you. mercutio. farewell, ancient lady; farewell, lady, lady, lady. exeunt mercutio and benvolio. nurse. i pray you, sir, what saucy merchant was this that was so full of his ropery? romeo. a gentleman, nurse, that loves to hear himself talk, and will speak more in a minute than he will stand to in a month. nurse. and a speak anything against me, i ll take him down, and a were lustier than he is, and twenty such jacks. and if i cannot, i ll find those that shall. scurvy knave! i am none of his flirt-gills; i am none of his skains-mates. and thou must stand by too and suffer every knave to use me at his pleasure! peter. i saw no man use you at his pleasure; if i had, my weapon should quickly have been out. i warrant you, i dare draw as soon as another man, if i see occasion in a good quarrel, and the law on my side. nurse. now, afore god, i am so vexed that every part about me quivers. scurvy knave. pray you, sir, a word: and as i told you, my young lady bid me enquire you out; what she bade me say, i will keep to myself. but first let me tell ye, if ye should lead her in a fool s paradise, as they say, it were a very gross kind of behaviour, as they say; for the gentlewoman is young. and therefore, if you should deal double with her, truly it were an ill thing to be offered to any gentlewoman, and very weak dealing. romeo. nurse, commend me to thy lady and mistress. i protest unto thee, nurse. good heart, and i faith i will tell her as much. lord, lord, she will be a joyful woman. romeo. what wilt thou tell her, nurse? thou dost not mark me. nurse. i will tell her, sir, that you do protest, which, as i take it, is a gentlemanlike offer. romeo. bid her devise some means to come to shrift this afternoon, and there she shall at friar lawrence cell be shriv d and married. here is for thy pains. nurse. no truly, sir; not a penny. romeo. go to; i say you shall. nurse. this afternoon, sir? well, she shall be there. romeo. and stay, good nurse, behind the abbey wall. within this hour my man shall be with thee, and bring thee cords made like a tackled stair, which to the high topgallant of my joy must be my convoy in the secret night. farewell, be trusty, and i ll quit thy pains; farewell; commend me to thy mistress. nurse. now god in heaven bless thee. hark you, sir. romeo. what say st thou, my dear nurse? nurse. is your man secret? did you ne er hear say, two may keep counsel, putting one away? romeo. i warrant thee my man s as true as steel. nurse. well, sir, my mistress is the sweetest lady. lord, lord! when twas a little prating thing, o, there is a nobleman in town, one paris, that would fain lay knife aboard; but she, good soul, had as lief see a toad, a very toad, as see him. i anger her sometimes, and tell her that paris is the properer man, but i ll warrant you, when i say so, she looks as pale as any clout in the versal world. doth not rosemary and romeo begin both with a letter? romeo. ay, nurse; what of that? both with an r. nurse. ah, mocker! that s the dog s name. r is for the no, i know it begins with some other letter, and she hath the prettiest sententious of it, of you and rosemary, that it would do you good to hear it. romeo. commend me to thy lady. nurse. ay, a thousand times. peter! exit romeo. peter. anon. nurse. before and apace. exeunt. scene v. capulet s garden. enter juliet. juliet. the clock struck nine when i did send the nurse, in half an hour she promised to return. perchance she cannot meet him. that s not so. o, she is lame. love s heralds should be thoughts, which ten times faster glides than the sun s beams, driving back shadows over lowering hills: therefore do nimble-pinion d doves draw love, and therefore hath the wind-swift cupid wings. now is the sun upon the highmost hill of this day s journey, and from nine till twelve is three long hours, yet she is not come. had she affections and warm youthful blood, she d be as swift in motion as a ball; my words would bandy her to my sweet love, and his to me. but old folks, many feign as they were dead; unwieldy, slow, heavy and pale as lead. enter nurse and peter. o god, she comes. o honey nurse, what news? hast thou met with him? send thy man away. nurse. peter, stay at the gate. exit peter. juliet. now, good sweet nurse, o lord, why look st thou sad? though news be sad, yet tell them merrily; if good, thou sham st the music of sweet news by playing it to me with so sour a face. nurse. i am aweary, give me leave awhile; fie, how my bones ache! what a jaunt have i had! juliet. i would thou hadst my bones, and i thy news: nay come, i pray thee speak; good, good nurse, speak. nurse. jesu, what haste? can you not stay a while? do you not see that i am out of breath? juliet. how art thou out of breath, when thou hast breath to say to me that thou art out of breath? the excuse that thou dost make in this delay is longer than the tale thou dost excuse. is thy news good or bad? answer to that; say either, and i ll stay the circumstance. let me be satisfied, is t good or bad? nurse. well, you have made a simple choice; you know not how to choose a man. romeo? no, not he. though his face be better than any man s, yet his leg excels all men s, and for a hand and a foot, and a body, though they be not to be talked on, yet they are past compare. he is not the flower of courtesy, but i ll warrant him as gentle as a lamb. go thy ways, wench, serve god. what, have you dined at home? juliet. no, no. but all this did i know before. what says he of our marriage? what of that? nurse. lord, how my head aches! what a head have i! it beats as it would fall in twenty pieces. my back o t other side, o my back, my back! beshrew your heart for sending me about to catch my death with jauncing up and down. juliet. i faith, i am sorry that thou art not well. sweet, sweet, sweet nurse, tell me, what says my love? nurse. your love says like an honest gentleman, and a courteous, and a kind, and a handsome, and i warrant a virtuous, where is your mother? juliet. where is my mother? why, she is within. where should she be? how oddly thou repliest. your love says, like an honest gentleman, where is your mother? nurse. o god s lady dear, are you so hot? marry, come up, i trow. is this the poultice for my aching bones? henceforward do your messages yourself. juliet. here s such a coil. come, what says romeo? nurse. have you got leave to go to shrift today? juliet. i have. nurse. then hie you hence to friar lawrence cell; there stays a husband to make you a wife. now comes the wanton blood up in your cheeks, they ll be in scarlet straight at any news. hie you to church. i must another way, to fetch a ladder by the which your love must climb a bird s nest soon when it is dark. i am the drudge, and toil in your delight; but you shall bear the burden soon at night. go. i ll to dinner; hie you to the cell. juliet. hie to high fortune! honest nurse, farewell. exeunt. scene vi. friar lawrence s cell. enter friar lawrence and romeo. friar lawrence. so smile the heavens upon this holy act that after-hours with sorrow chide us not. romeo. amen, amen, but come what sorrow can, it cannot countervail the exchange of joy that one short minute gives me in her sight. do thou but close our hands with holy words, then love-devouring death do what he dare, it is enough i may but call her mine. friar lawrence. these violent delights have violent ends, and in their triumph die; like fire and powder, which as they kiss consume. the sweetest honey is loathsome in his own deliciousness, and in the taste confounds the appetite. therefore love moderately: long love doth so; too swift arrives as tardy as too slow. enter juliet. here comes the lady. o, so light a foot will ne er wear out the everlasting flint. a lover may bestride the gossamers that idles in the wanton summer air and yet not fall; so light is vanity. juliet. good even to my ghostly confessor. friar lawrence. romeo shall thank thee, daughter, for us both. juliet. as much to him, else is his thanks too much. romeo. ah, juliet, if the measure of thy joy be heap d like mine, and that thy skill be more to blazon it, then sweeten with thy breath this neighbour air, and let rich music s tongue unfold the imagin d happiness that both receive in either by this dear encounter. juliet. conceit more rich in matter than in words, brags of his substance, not of ornament. they are but beggars that can count their worth; but my true love is grown to such excess, i cannot sum up sum of half my wealth. friar lawrence. come, come with me, and we will make short work, for, by your leaves, you shall not stay alone till holy church incorporate two in one. exeunt. act iii scene i. a public place. enter mercutio, benvolio, page and servants. benvolio. i pray thee, good mercutio, let s retire: the day is hot, the capulets abroad, and if we meet, we shall not scape a brawl, for now these hot days, is the mad blood stirring. mercutio. thou art like one of these fellows that, when he enters the confines of a tavern, claps me his sword upon the table, and says god send me no need of thee! and by the operation of the second cup draws him on the drawer, when indeed there is no need. benvolio. am i like such a fellow? mercutio. come, come, thou art as hot a jack in thy mood as any in italy; and as soon moved to be moody, and as soon moody to be moved. benvolio. and what to? mercutio. nay, an there were two such, we should have none shortly, for one would kill the other. thou? why, thou wilt quarrel with a man that hath a hair more or a hair less in his beard than thou hast. thou wilt quarrel with a man for cracking nuts, having no other reason but because thou hast hazel eyes. what eye but such an eye would spy out such a quarrel? thy head is as full of quarrels as an egg is full of meat, and yet thy head hath been beaten as addle as an egg for quarrelling. thou hast quarrelled with a man for coughing in the street, because he hath wakened thy dog that hath lain asleep in the sun. didst thou not fall out with a tailor for wearing his new doublet before easter? with another for tying his new shoes with an old riband? and yet thou wilt tutor me from quarrelling! benvolio. and i were so apt to quarrel as thou art, any man should buy the fee simple of my life for an hour and a quarter. mercutio. the fee simple! o simple! enter tybalt and others. benvolio. by my head, here comes the capulets. mercutio. by my heel, i care not. tybalt. follow me close, for i will speak to them. gentlemen, good-den: a word with one of you. mercutio. and but one word with one of us? couple it with something; make it a word and a blow. tybalt. you shall find me apt enough to that, sir, and you will give me occasion. mercutio. could you not take some occasion without giving? tybalt. mercutio, thou consortest with romeo. mercutio. consort? what, dost thou make us minstrels? and thou make minstrels of us, look to hear nothing but discords. here s my fiddlestick, here s that shall make you dance. zounds, consort! benvolio. we talk here in the public haunt of men. either withdraw unto some private place, and reason coldly of your grievances, or else depart; here all eyes gaze on us. mercutio. men s eyes were made to look, and let them gaze. i will not budge for no man s pleasure, i. enter romeo. tybalt. well, peace be with you, sir, here comes my man. mercutio. but i ll be hanged, sir, if he wear your livery. marry, go before to field, he ll be your follower; your worship in that sense may call him man. tybalt. romeo, the love i bear thee can afford no better term than this: thou art a villain. romeo. tybalt, the reason that i have to love thee doth much excuse the appertaining rage to such a greeting. villain am i none; therefore farewell; i see thou know st me not. tybalt. boy, this shall not excuse the injuries that thou hast done me, therefore turn and draw. romeo. i do protest i never injur d thee, but love thee better than thou canst devise till thou shalt know the reason of my love. and so good capulet, which name i tender as dearly as mine own, be satisfied. mercutio. o calm, dishonourable, vile submission! draws. alla stoccata carries it away. tybalt, you rat-catcher, will you walk? tybalt. what wouldst thou have with me? mercutio. good king of cats, nothing but one of your nine lives; that i mean to make bold withal, and, as you shall use me hereafter, dry-beat the rest of the eight. will you pluck your sword out of his pilcher by the ears? make haste, lest mine be about your ears ere it be out. tybalt. drawing. i am for you. romeo. gentle mercutio, put thy rapier up. mercutio. come, sir, your passado. they fight. romeo. draw, benvolio; beat down their weapons. gentlemen, for shame, forbear this outrage, tybalt, mercutio, the prince expressly hath forbid this bandying in verona streets. hold, tybalt! good mercutio! exeunt tybalt with his partizans. mercutio. i am hurt. a plague o both your houses. i am sped. is he gone, and hath nothing? benvolio. what, art thou hurt? mercutio. ay, ay, a scratch, a scratch. marry, tis enough. where is my page? go villain, fetch a surgeon. exit page. romeo. courage, man; the hurt cannot be much. mercutio. no, tis not so deep as a well, nor so wide as a church door, but tis enough, twill serve. ask for me tomorrow, and you shall find me a grave man. i am peppered, i warrant, for this world. a plague o both your houses. zounds, a dog, a rat, a mouse, a cat, to scratch a man to death. a braggart, a rogue, a villain, that fights by the book of arithmetic! why the devil came you between us? i was hurt under your arm. romeo. i thought all for the best. mercutio. help me into some house, benvolio, or i shall faint. a plague o both your houses. they have made worms meat of me. i have it, and soundly too. your houses! exeunt mercutio and benvolio. romeo. this gentleman, the prince s near ally, my very friend, hath got his mortal hurt in my behalf; my reputation stain d with tybalt s slander, tybalt, that an hour hath been my cousin. o sweet juliet, thy beauty hath made me effeminate and in my temper soften d valour s steel. re-enter benvolio. benvolio. o romeo, romeo, brave mercutio s dead, that gallant spirit hath aspir d the clouds, which too untimely here did scorn the earth. romeo. this day s black fate on mo days doth depend; this but begins the woe others must end. re-enter tybalt. benvolio. here comes the furious tybalt back again. romeo. again in triumph, and mercutio slain? away to heaven respective lenity, and fire-ey d fury be my conduct now! now, tybalt, take the villain back again that late thou gav st me, for mercutio s soul is but a little way above our heads, staying for thine to keep him company. either thou or i, or both, must go with him. tybalt. thou wretched boy, that didst consort him here, shalt with him hence. romeo. this shall determine that. they fight; tybalt falls. benvolio. romeo, away, be gone! the citizens are up, and tybalt slain. stand not amaz d. the prince will doom thee death if thou art taken. hence, be gone, away! romeo. o, i am fortune s fool! benvolio. why dost thou stay? exit romeo. enter citizens. first citizen. which way ran he that kill d mercutio? tybalt, that murderer, which way ran he? benvolio. there lies that tybalt. first citizen. up, sir, go with me. i charge thee in the prince s name obey. enter prince, attended; montague, capulet, their wives and others. prince. where are the vile beginners of this fray? benvolio. o noble prince, i can discover all the unlucky manage of this fatal brawl. there lies the man, slain by young romeo, that slew thy kinsman, brave mercutio. lady capulet. tybalt, my cousin! o my brother s child! o prince! o husband! o, the blood is spill d of my dear kinsman! prince, as thou art true, for blood of ours shed blood of montague. o cousin, cousin. prince. benvolio, who began this bloody fray? benvolio. tybalt, here slain, whom romeo s hand did slay; romeo, that spoke him fair, bid him bethink how nice the quarrel was, and urg d withal your high displeasure. all this uttered with gentle breath, calm look, knees humbly bow d could not take truce with the unruly spleen of tybalt, deaf to peace, but that he tilts with piercing steel at bold mercutio s breast, who, all as hot, turns deadly point to point, and, with a martial scorn, with one hand beats cold death aside, and with the other sends it back to tybalt, whose dexterity retorts it. romeo he cries aloud, hold, friends! friends, part! and swifter than his tongue, his agile arm beats down their fatal points, and twixt them rushes; underneath whose arm an envious thrust from tybalt hit the life of stout mercutio, and then tybalt fled. but by and by comes back to romeo, who had but newly entertain d revenge, and to t they go like lightning; for, ere i could draw to part them was stout tybalt slain; and as he fell did romeo turn and fly. this is the truth, or let benvolio die. lady capulet. he is a kinsman to the montague. affection makes him false, he speaks not true. some twenty of them fought in this black strife, and all those twenty could but kill one life. i beg for justice, which thou, prince, must give; romeo slew tybalt, romeo must not live. prince. romeo slew him, he slew mercutio. who now the price of his dear blood doth owe? montague. not romeo, prince, he was mercutio s friend; his fault concludes but what the law should end, the life of tybalt. prince. and for that offence immediately we do exile him hence. i have an interest in your hate s proceeding, my blood for your rude brawls doth lie a-bleeding. but i ll amerce you with so strong a fine that you shall all repent the loss of mine. i will be deaf to pleading and excuses; nor tears nor prayers shall purchase out abuses. therefore use none. let romeo hence in haste, else, when he is found, that hour is his last. bear hence this body, and attend our will. mercy but murders, pardoning those that kill. exeunt. scene ii. a room in capulet s house. enter juliet. juliet. gallop apace, you fiery-footed steeds, towards phoebus lodging. such a waggoner as phaeton would whip you to the west and bring in cloudy night immediately. spread thy close curtain, love-performing night, that runaway s eyes may wink, and romeo leap to these arms, untalk d of and unseen. lovers can see to do their amorous rites by their own beauties: or, if love be blind, it best agrees with night. come, civil night, thou sober-suited matron, all in black, and learn me how to lose a winning match, play d for a pair of stainless maidenhoods. hood my unmann d blood, bating in my cheeks, with thy black mantle, till strange love, grow bold, think true love acted simple modesty. come, night, come romeo; come, thou day in night; for thou wilt lie upon the wings of night whiter than new snow upon a raven s back. come gentle night, come loving black-brow d night, give me my romeo, and when i shall die, take him and cut him out in little stars, and he will make the face of heaven so fine that all the world will be in love with night, and pay no worship to the garish sun. o, i have bought the mansion of a love, but not possess d it; and though i am sold, not yet enjoy d. so tedious is this day as is the night before some festival to an impatient child that hath new robes and may not wear them. o, here comes my nurse, and she brings news, and every tongue that speaks but romeo s name speaks heavenly eloquence. enter nurse, with cords. now, nurse, what news? what hast thou there? the cords that romeo bid thee fetch? nurse. ay, ay, the cords. throws them down. juliet. ay me, what news? why dost thou wring thy hands? nurse. ah, well-a-day, he s dead, he s dead, he s dead! we are undone, lady, we are undone. alack the day, he s gone, he s kill d, he s dead. juliet. can heaven be so envious? nurse. romeo can, though heaven cannot. o romeo, romeo. who ever would have thought it? romeo! juliet. what devil art thou, that dost torment me thus? this torture should be roar d in dismal hell. hath romeo slain himself? say thou but ay, and that bare vowel i shall poison more than the death-darting eye of cockatrice. i am not i if there be such an i; or those eyes shut that make thee answer ay. if he be slain, say ay; or if not, no. brief sounds determine of my weal or woe. nurse. i saw the wound, i saw it with mine eyes, god save the mark! here on his manly breast. a piteous corse, a bloody piteous corse; pale, pale as ashes, all bedaub d in blood, all in gore-blood. i swounded at the sight. juliet. o, break, my heart. poor bankrout, break at once. to prison, eyes; ne er look on liberty. vile earth to earth resign; end motion here, and thou and romeo press one heavy bier. nurse. o tybalt, tybalt, the best friend i had. o courteous tybalt, honest gentleman! that ever i should live to see thee dead. juliet. what storm is this that blows so contrary? is romeo slaughter d and is tybalt dead? my dearest cousin, and my dearer lord? then dreadful trumpet sound the general doom, for who is living, if those two are gone? nurse. tybalt is gone, and romeo banished, romeo that kill d him, he is banished. juliet. o god! did romeo s hand shed tybalt s blood? nurse. it did, it did; alas the day, it did. juliet. o serpent heart, hid with a flowering face! did ever dragon keep so fair a cave? beautiful tyrant, fiend angelical, dove-feather d raven, wolvish-ravening lamb! despised substance of divinest show! just opposite to what thou justly seem st, a damned saint, an honourable villain! o nature, what hadst thou to do in hell when thou didst bower the spirit of a fiend in mortal paradise of such sweet flesh? was ever book containing such vile matter so fairly bound? o, that deceit should dwell in such a gorgeous palace. nurse. there s no trust, no faith, no honesty in men. all perjur d, all forsworn, all naught, all dissemblers. ah, where s my man? give me some aqua vitae. these griefs, these woes, these sorrows make me old. shame come to romeo. juliet. blister d be thy tongue for such a wish! he was not born to shame. upon his brow shame is asham d to sit; for tis a throne where honour may be crown d sole monarch of the universal earth. o, what a beast was i to chide at him! nurse. will you speak well of him that kill d your cousin? juliet. shall i speak ill of him that is my husband? ah, poor my lord, what tongue shall smooth thy name, when i thy three-hours wife have mangled it? but wherefore, villain, didst thou kill my cousin? that villain cousin would have kill d my husband. back, foolish tears, back to your native spring, your tributary drops belong to woe, which you mistaking offer up to joy. my husband lives, that tybalt would have slain, and tybalt s dead, that would have slain my husband. all this is comfort; wherefore weep i then? some word there was, worser than tybalt s death, that murder d me. i would forget it fain, but o, it presses to my memory like damned guilty deeds to sinners minds. tybalt is dead, and romeo banished. that banished, that one word banished, hath slain ten thousand tybalts. tybalt s death was woe enough, if it had ended there. or if sour woe delights in fellowship, and needly will be rank d with other griefs, why follow d not, when she said tybalt s dead, thy father or thy mother, nay or both, which modern lamentation might have mov d? but with a rear-ward following tybalt s death, romeo is banished to speak that word is father, mother, tybalt, romeo, juliet, all slain, all dead. romeo is banished, there is no end, no limit, measure, bound, in that word s death, no words can that woe sound. where is my father and my mother, nurse? nurse. weeping and wailing over tybalt s corse. will you go to them? i will bring you thither. juliet. wash they his wounds with tears. mine shall be spent, when theirs are dry, for romeo s banishment. take up those cords. poor ropes, you are beguil d, both you and i; for romeo is exil d. he made you for a highway to my bed, but i, a maid, die maiden-widowed. come cords, come nurse, i ll to my wedding bed, and death, not romeo, take my maidenhead. nurse. hie to your chamber. i ll find romeo to comfort you. i wot well where he is. hark ye, your romeo will be here at night. i ll to him, he is hid at lawrence cell. juliet. o find him, give this ring to my true knight, and bid him come to take his last farewell. exeunt. scene iii. friar lawrence s cell. enter friar lawrence. friar lawrence. romeo, come forth; come forth, thou fearful man. affliction is enanmour d of thy parts and thou art wedded to calamity. enter romeo. romeo. father, what news? what is the prince s doom? what sorrow craves acquaintance at my hand, that i yet know not? friar lawrence. too familiar is my dear son with such sour company. i bring thee tidings of the prince s doom. romeo. what less than doomsday is the prince s doom? friar lawrence. a gentler judgment vanish d from his lips, not body s death, but body s banishment. romeo. ha, banishment? be merciful, say death; for exile hath more terror in his look, much more than death. do not say banishment. friar lawrence. hence from verona art thou banished. be patient, for the world is broad and wide. romeo. there is no world without verona walls, but purgatory, torture, hell itself. hence banished is banish d from the world, and world s exile is death. then banished is death misterm d. calling death banished, thou cutt st my head off with a golden axe, and smilest upon the stroke that murders me. friar lawrence. o deadly sin, o rude unthankfulness! thy fault our law calls death, but the kind prince, taking thy part, hath brush d aside the law, and turn d that black word death to banishment. this is dear mercy, and thou see st it not. romeo. tis torture, and not mercy. heaven is here where juliet lives, and every cat and dog, and little mouse, every unworthy thing, live here in heaven and may look on her, but romeo may not. more validity, more honourable state, more courtship lives in carrion flies than romeo. they may seize on the white wonder of dear juliet s hand, and steal immortal blessing from her lips, who, even in pure and vestal modesty still blush, as thinking their own kisses sin. but romeo may not, he is banished. this may flies do, when i from this must fly. they are free men but i am banished. and say st thou yet that exile is not death? hadst thou no poison mix d, no sharp-ground knife, no sudden mean of death, though ne er so mean, but banished to kill me? banished? o friar, the damned use that word in hell. howling attends it. how hast thou the heart, being a divine, a ghostly confessor, a sin-absolver, and my friend profess d, to mangle me with that word banished? friar lawrence. thou fond mad man, hear me speak a little, romeo. o, thou wilt speak again of banishment. friar lawrence. i ll give thee armour to keep off that word, adversity s sweet milk, philosophy, to comfort thee, though thou art banished. romeo. yet banished? hang up philosophy. unless philosophy can make a juliet, displant a town, reverse a prince s doom, it helps not, it prevails not, talk no more. friar lawrence. o, then i see that mad men have no ears. romeo. how should they, when that wise men have no eyes? friar lawrence. let me dispute with thee of thy estate. romeo. thou canst not speak of that thou dost not feel. wert thou as young as i, juliet thy love, an hour but married, tybalt murdered, doting like me, and like me banished, then mightst thou speak, then mightst thou tear thy hair, and fall upon the ground as i do now, taking the measure of an unmade grave. knocking within. friar lawrence. arise; one knocks. good romeo, hide thyself. romeo. not i, unless the breath of heartsick groans mist-like infold me from the search of eyes. knocking. friar lawrence. hark, how they knock! who s there? romeo, arise, thou wilt be taken. stay awhile. stand up. knocking. run to my study. by-and-by. god s will, what simpleness is this. i come, i come. knocking. who knocks so hard? whence come you, what s your will? nurse. within. let me come in, and you shall know my errand. i come from lady juliet. friar lawrence. welcome then. enter nurse. nurse. o holy friar, o, tell me, holy friar, where is my lady s lord, where s romeo? friar lawrence. there on the ground, with his own tears made drunk. nurse. o, he is even in my mistress case. just in her case! o woeful sympathy! piteous predicament. even so lies she, blubbering and weeping, weeping and blubbering. stand up, stand up; stand, and you be a man. for juliet s sake, for her sake, rise and stand. why should you fall into so deep an o? romeo. nurse. nurse. ah sir, ah sir, death s the end of all. romeo. spakest thou of juliet? how is it with her? doth not she think me an old murderer, now i have stain d the childhood of our joy with blood remov d but little from her own? where is she? and how doth she? and what says my conceal d lady to our cancell d love? nurse. o, she says nothing, sir, but weeps and weeps; and now falls on her bed, and then starts up, and tybalt calls, and then on romeo cries, and then down falls again. romeo. as if that name, shot from the deadly level of a gun, did murder her, as that name s cursed hand murder d her kinsman. o, tell me, friar, tell me, in what vile part of this anatomy doth my name lodge? tell me, that i may sack the hateful mansion. drawing his sword. friar lawrence. hold thy desperate hand. art thou a man? thy form cries out thou art. thy tears are womanish, thy wild acts denote the unreasonable fury of a beast. unseemly woman in a seeming man, and ill-beseeming beast in seeming both! thou hast amaz d me. by my holy order, i thought thy disposition better temper d. hast thou slain tybalt? wilt thou slay thyself? and slay thy lady, that in thy life lives, by doing damned hate upon thyself? why rail st thou on thy birth, the heaven and earth? since birth, and heaven and earth, all three do meet in thee at once; which thou at once wouldst lose. fie, fie, thou sham st thy shape, thy love, thy wit, which, like a usurer, abound st in all, and usest none in that true use indeed which should bedeck thy shape, thy love, thy wit. thy noble shape is but a form of wax, digressing from the valour of a man; thy dear love sworn but hollow perjury, killing that love which thou hast vow d to cherish; thy wit, that ornament to shape and love, misshapen in the conduct of them both, like powder in a skilless soldier s flask, is set afire by thine own ignorance, and thou dismember d with thine own defence. what, rouse thee, man. thy juliet is alive, for whose dear sake thou wast but lately dead. there art thou happy. tybalt would kill thee, but thou slew st tybalt; there art thou happy. the law that threaten d death becomes thy friend, and turns it to exile; there art thou happy. a pack of blessings light upon thy back; happiness courts thee in her best array; but like a misshaped and sullen wench, thou putt st up thy fortune and thy love. take heed, take heed, for such die miserable. go, get thee to thy love as was decreed, ascend her chamber, hence and comfort her. but look thou stay not till the watch be set, for then thou canst not pass to mantua; where thou shalt live till we can find a time to blaze your marriage, reconcile your friends, beg pardon of the prince, and call thee back with twenty hundred thousand times more joy than thou went st forth in lamentation. go before, nurse. commend me to thy lady, and bid her hasten all the house to bed, which heavy sorrow makes them apt unto. romeo is coming. nurse. o lord, i could have stay d here all the night to hear good counsel. o, what learning is! my lord, i ll tell my lady you will come. romeo. do so, and bid my sweet prepare to chide. nurse. here sir, a ring she bid me give you, sir. hie you, make haste, for it grows very late. exit. romeo. how well my comfort is reviv d by this. friar lawrence. go hence, good night, and here stands all your state: either be gone before the watch be set, or by the break of day disguis d from hence. sojourn in mantua. i ll find out your man, and he shall signify from time to time every good hap to you that chances here. give me thy hand; tis late; farewell; good night. romeo. but that a joy past joy calls out on me, it were a grief so brief to part with thee. farewell. exeunt. scene iv. a room in capulet s house. enter capulet, lady capulet and paris. capulet. things have fallen out, sir, so unluckily that we have had no time to move our daughter. look you, she lov d her kinsman tybalt dearly, and so did i. well, we were born to die. tis very late; she ll not come down tonight. i promise you, but for your company, i would have been abed an hour ago. paris. these times of woe afford no tune to woo. madam, good night. commend me to your daughter. lady capulet. i will, and know her mind early tomorrow; tonight she s mew d up to her heaviness. capulet. sir paris, i will make a desperate tender of my child s love. i think she will be rul d in all respects by me; nay more, i doubt it not. wife, go you to her ere you go to bed, acquaint her here of my son paris love, and bid her, mark you me, on wednesday next, but, soft, what day is this? paris. monday, my lord. capulet. monday! ha, ha! well, wednesday is too soon, a thursday let it be; a thursday, tell her, she shall be married to this noble earl. will you be ready? do you like this haste? we ll keep no great ado, a friend or two, for, hark you, tybalt being slain so late, it may be thought we held him carelessly, being our kinsman, if we revel much. therefore we ll have some half a dozen friends, and there an end. but what say you to thursday? paris. my lord, i would that thursday were tomorrow. capulet. well, get you gone. a thursday be it then. go you to juliet ere you go to bed, prepare her, wife, against this wedding day. farewell, my lord. light to my chamber, ho! afore me, it is so very very late that we may call it early by and by. good night. exeunt. scene v. an open gallery to juliet s chamber, overlooking the garden. enter romeo and juliet. juliet. wilt thou be gone? it is not yet near day. it was the nightingale, and not the lark, that pierc d the fearful hollow of thine ear; nightly she sings on yond pomegranate tree. believe me, love, it was the nightingale. romeo. it was the lark, the herald of the morn, no nightingale. look, love, what envious streaks do lace the severing clouds in yonder east. night s candles are burnt out, and jocund day stands tiptoe on the misty mountain tops. i must be gone and live, or stay and die. juliet. yond light is not daylight, i know it, i. it is some meteor that the sun exhales to be to thee this night a torchbearer and light thee on thy way to mantua. therefore stay yet, thou need st not to be gone. romeo. let me be ta en, let me be put to death, i am content, so thou wilt have it so. i ll say yon grey is not the morning s eye, tis but the pale reflex of cynthia s brow. nor that is not the lark whose notes do beat the vaulty heaven so high above our heads. i have more care to stay than will to go. come, death, and welcome. juliet wills it so. how is t, my soul? let s talk. it is not day. juliet. it is, it is! hie hence, be gone, away. it is the lark that sings so out of tune, straining harsh discords and unpleasing sharps. some say the lark makes sweet division; this doth not so, for she divideth us. some say the lark and loathed toad change eyes. o, now i would they had chang d voices too, since arm from arm that voice doth us affray, hunting thee hence with hunt s-up to the day. o now be gone, more light and light it grows. romeo. more light and light, more dark and dark our woes. enter nurse. nurse. madam. juliet. nurse? nurse. your lady mother is coming to your chamber. the day is broke, be wary, look about. exit. juliet. then, window, let day in, and let life out. romeo. farewell, farewell, one kiss, and i ll descend. descends. juliet. art thou gone so? love, lord, ay husband, friend, i must hear from thee every day in the hour, for in a minute there are many days. o, by this count i shall be much in years ere i again behold my romeo. romeo. farewell! i will omit no opportunity that may convey my greetings, love, to thee. juliet. o thinkest thou we shall ever meet again? romeo. i doubt it not, and all these woes shall serve for sweet discourses in our time to come. juliet. o god! i have an ill-divining soul! methinks i see thee, now thou art so low, as one dead in the bottom of a tomb. either my eyesight fails, or thou look st pale. romeo. and trust me, love, in my eye so do you. dry sorrow drinks our blood. adieu, adieu. exit below. juliet. o fortune, fortune! all men call thee fickle, if thou art fickle, what dost thou with him that is renown d for faith? be fickle, fortune; for then, i hope thou wilt not keep him long but send him back. lady capulet. within. ho, daughter, are you up? juliet. who is t that calls? is it my lady mother? is she not down so late, or up so early? what unaccustom d cause procures her hither? enter lady capulet. lady capulet. why, how now, juliet? juliet. madam, i am not well. lady capulet. evermore weeping for your cousin s death? what, wilt thou wash him from his grave with tears? and if thou couldst, thou couldst not make him live. therefore have done: some grief shows much of love, but much of grief shows still some want of wit. juliet. yet let me weep for such a feeling loss. lady capulet. so shall you feel the loss, but not the friend which you weep for. juliet. feeling so the loss, i cannot choose but ever weep the friend. lady capulet. well, girl, thou weep st not so much for his death as that the villain lives which slaughter d him. juliet. what villain, madam? lady capulet. that same villain romeo. juliet. villain and he be many miles asunder. god pardon him. i do, with all my heart. and yet no man like he doth grieve my heart. lady capulet. that is because the traitor murderer lives. juliet. ay madam, from the reach of these my hands. would none but i might venge my cousin s death. lady capulet. we will have vengeance for it, fear thou not. then weep no more. i ll send to one in mantua, where that same banish d runagate doth live, shall give him such an unaccustom d dram that he shall soon keep tybalt company: and then i hope thou wilt be satisfied. juliet. indeed i never shall be satisfied with romeo till i behold him dead is my poor heart so for a kinsman vex d. madam, if you could find out but a man to bear a poison, i would temper it, that romeo should upon receipt thereof, soon sleep in quiet. o, how my heart abhors to hear him nam d, and cannot come to him, to wreak the love i bore my cousin upon his body that hath slaughter d him. lady capulet. find thou the means, and i ll find such a man. but now i ll tell thee joyful tidings, girl. juliet. and joy comes well in such a needy time. what are they, i beseech your ladyship? lady capulet. well, well, thou hast a careful father, child; one who to put thee from thy heaviness, hath sorted out a sudden day of joy, that thou expects not, nor i look d not for. juliet. madam, in happy time, what day is that? lady capulet. marry, my child, early next thursday morn the gallant, young, and noble gentleman, the county paris, at saint peter s church, shall happily make thee there a joyful bride. juliet. now by saint peter s church, and peter too, he shall not make me there a joyful bride. i wonder at this haste, that i must wed ere he that should be husband comes to woo. i pray you tell my lord and father, madam, i will not marry yet; and when i do, i swear it shall be romeo, whom you know i hate, rather than paris. these are news indeed. lady capulet. here comes your father, tell him so yourself, and see how he will take it at your hands. enter capulet and nurse. capulet. when the sun sets, the air doth drizzle dew; but for the sunset of my brother s son it rains downright. how now? a conduit, girl? what, still in tears? evermore showering? in one little body thou counterfeits a bark, a sea, a wind. for still thy eyes, which i may call the sea, do ebb and flow with tears; the bark thy body is, sailing in this salt flood, the winds, thy sighs, who raging with thy tears and they with them, without a sudden calm will overset thy tempest-tossed body. how now, wife? have you deliver d to her our decree? lady capulet. ay, sir; but she will none, she gives you thanks. i would the fool were married to her grave. capulet. soft. take me with you, take me with you, wife. how, will she none? doth she not give us thanks? is she not proud? doth she not count her blest, unworthy as she is, that we have wrought so worthy a gentleman to be her bridegroom? juliet. not proud you have, but thankful that you have. proud can i never be of what i hate; but thankful even for hate that is meant love. capulet. how now, how now, chopp d logic? what is this? proud, and, i thank you, and i thank you not; and yet not proud. mistress minion you, thank me no thankings, nor proud me no prouds, but fettle your fine joints gainst thursday next to go with paris to saint peter s church, or i will drag thee on a hurdle thither. out, you green-sickness carrion! out, you baggage! you tallow-face! lady capulet. fie, fie! what, are you mad? juliet. good father, i beseech you on my knees, hear me with patience but to speak a word. capulet. hang thee young baggage, disobedient wretch! i tell thee what, get thee to church a thursday, or never after look me in the face. speak not, reply not, do not answer me. my fingers itch. wife, we scarce thought us blest that god had lent us but this only child; but now i see this one is one too much, and that we have a curse in having her. out on her, hilding. nurse. god in heaven bless her. you are to blame, my lord, to rate her so. capulet. and why, my lady wisdom? hold your tongue, good prudence; smatter with your gossips, go. nurse. i speak no treason. capulet. o god ye good-en! nurse. may not one speak? capulet. peace, you mumbling fool! utter your gravity o er a gossip s bowl, for here we need it not. lady capulet. you are too hot. capulet. god s bread, it makes me mad! day, night, hour, ride, time, work, play, alone, in company, still my care hath been to have her match d, and having now provided a gentleman of noble parentage, of fair demesnes, youthful, and nobly allied, stuff d, as they say, with honourable parts, proportion d as one s thought would wish a man, and then to have a wretched puling fool, a whining mammet, in her fortune s tender, to answer, i ll not wed, i cannot love, i am too young, i pray you pardon me. but, and you will not wed, i ll pardon you. graze where you will, you shall not house with me. look to t, think on t, i do not use to jest. thursday is near; lay hand on heart, advise. and you be mine, i ll give you to my friend; and you be not, hang, beg, starve, die in the streets, for by my soul, i ll ne er acknowledge thee, nor what is mine shall never do thee good. trust to t, bethink you, i ll not be forsworn. exit. juliet. is there no pity sitting in the clouds, that sees into the bottom of my grief? o sweet my mother, cast me not away, delay this marriage for a month, a week, or, if you do not, make the bridal bed in that dim monument where tybalt lies. lady capulet. talk not to me, for i ll not speak a word. do as thou wilt, for i have done with thee. exit. juliet. o god! o nurse, how shall this be prevented? my husband is on earth, my faith in heaven. how shall that faith return again to earth, unless that husband send it me from heaven by leaving earth? comfort me, counsel me. alack, alack, that heaven should practise stratagems upon so soft a subject as myself. what say st thou? hast thou not a word of joy? some comfort, nurse. nurse. faith, here it is. romeo is banished; and all the world to nothing that he dares ne er come back to challenge you. or if he do, it needs must be by stealth. then, since the case so stands as now it doth, i think it best you married with the county. o, he s a lovely gentleman. romeo s a dishclout to him. an eagle, madam, hath not so green, so quick, so fair an eye as paris hath. beshrew my very heart, i think you are happy in this second match, for it excels your first: or if it did not, your first is dead, or twere as good he were, as living here and you no use of him. juliet. speakest thou from thy heart? nurse. and from my soul too, or else beshrew them both. juliet. amen. nurse. what? juliet. well, thou hast comforted me marvellous much. go in, and tell my lady i am gone, having displeas d my father, to lawrence cell, to make confession and to be absolv d. nurse. marry, i will; and this is wisely done. exit. juliet. ancient damnation! o most wicked fiend! is it more sin to wish me thus forsworn, or to dispraise my lord with that same tongue which she hath prais d him with above compare so many thousand times? go, counsellor. thou and my bosom henceforth shall be twain. i ll to the friar to know his remedy. if all else fail, myself have power to die. exit. act iv scene i. friar lawrence s cell. enter friar lawrence and paris. friar lawrence. on thursday, sir? the time is very short. paris. my father capulet will have it so; and i am nothing slow to slack his haste. friar lawrence. you say you do not know the lady s mind. uneven is the course; i like it not. paris. immoderately she weeps for tybalt s death, and therefore have i little talk d of love; for venus smiles not in a house of tears. now, sir, her father counts it dangerous that she do give her sorrow so much sway; and in his wisdom, hastes our marriage, to stop the inundation of her tears, which, too much minded by herself alone, may be put from her by society. now do you know the reason of this haste. friar lawrence. aside. i would i knew not why it should be slow d. look, sir, here comes the lady toward my cell. enter juliet. paris. happily met, my lady and my wife! juliet. that may be, sir, when i may be a wife. paris. that may be, must be, love, on thursday next. juliet. what must be shall be. friar lawrence. that s a certain text. paris. come you to make confession to this father? juliet. to answer that, i should confess to you. paris. do not deny to him that you love me. juliet. i will confess to you that i love him. paris. so will ye, i am sure, that you love me. juliet. if i do so, it will be of more price, being spoke behind your back than to your face. paris. poor soul, thy face is much abus d with tears. juliet. the tears have got small victory by that; for it was bad enough before their spite. paris. thou wrong st it more than tears with that report. juliet. that is no slander, sir, which is a truth, and what i spake, i spake it to my face. paris. thy face is mine, and thou hast slander d it. juliet. it may be so, for it is not mine own. are you at leisure, holy father, now, or shall i come to you at evening mass? friar lawrence. my leisure serves me, pensive daughter, now. my lord, we must entreat the time alone. paris. god shield i should disturb devotion! juliet, on thursday early will i rouse ye, till then, adieu; and keep this holy kiss. exit. juliet. o shut the door, and when thou hast done so, come weep with me, past hope, past cure, past help! friar lawrence. o juliet, i already know thy grief; it strains me past the compass of my wits. i hear thou must, and nothing may prorogue it, on thursday next be married to this county. juliet. tell me not, friar, that thou hear st of this, unless thou tell me how i may prevent it. if in thy wisdom, thou canst give no help, do thou but call my resolution wise, and with this knife i ll help it presently. god join d my heart and romeo s, thou our hands; and ere this hand, by thee to romeo s seal d, shall be the label to another deed, or my true heart with treacherous revolt turn to another, this shall slay them both. therefore, out of thy long-experienc d time, give me some present counsel, or behold twixt my extremes and me this bloody knife shall play the empire, arbitrating that which the commission of thy years and art could to no issue of true honour bring. be not so long to speak. i long to die, if what thou speak st speak not of remedy. friar lawrence. hold, daughter. i do spy a kind of hope, which craves as desperate an execution as that is desperate which we would prevent. if, rather than to marry county paris thou hast the strength of will to slay thyself, then is it likely thou wilt undertake a thing like death to chide away this shame, that cop st with death himself to scape from it. and if thou dar st, i ll give thee remedy. juliet. o, bid me leap, rather than marry paris, from off the battlements of yonder tower, or walk in thievish ways, or bid me lurk where serpents are. chain me with roaring bears; or hide me nightly in a charnel-house, o er-cover d quite with dead men s rattling bones, with reeky shanks and yellow chapless skulls. or bid me go into a new-made grave, and hide me with a dead man in his shroud; things that, to hear them told, have made me tremble, and i will do it without fear or doubt, to live an unstain d wife to my sweet love. friar lawrence. hold then. go home, be merry, give consent to marry paris. wednesday is tomorrow; tomorrow night look that thou lie alone, let not thy nurse lie with thee in thy chamber. take thou this vial, being then in bed, and this distilled liquor drink thou off, when presently through all thy veins shall run a cold and drowsy humour; for no pulse shall keep his native progress, but surcease. no warmth, no breath shall testify thou livest, the roses in thy lips and cheeks shall fade to paly ashes; thy eyes windows fall, like death when he shuts up the day of life. each part depriv d of supple government, shall stiff and stark and cold appear like death. and in this borrow d likeness of shrunk death thou shalt continue two and forty hours, and then awake as from a pleasant sleep. now when the bridegroom in the morning comes to rouse thee from thy bed, there art thou dead. then as the manner of our country is, in thy best robes, uncover d, on the bier, thou shalt be borne to that same ancient vault where all the kindred of the capulets lie. in the meantime, against thou shalt awake, shall romeo by my letters know our drift, and hither shall he come, and he and i will watch thy waking, and that very night shall romeo bear thee hence to mantua. and this shall free thee from this present shame, if no inconstant toy nor womanish fear abate thy valour in the acting it. juliet. give me, give me! o tell not me of fear! friar lawrence. hold; get you gone, be strong and prosperous in this resolve. i ll send a friar with speed to mantua, with my letters to thy lord. juliet. love give me strength, and strength shall help afford. farewell, dear father. exeunt. scene ii. hall in capulet s house. enter capulet, lady capulet, nurse and servants. capulet. so many guests invite as here are writ. exit first servant. sirrah, go hire me twenty cunning cooks. second servant. you shall have none ill, sir; for i ll try if they can lick their fingers. capulet. how canst thou try them so? second servant. marry, sir, tis an ill cook that cannot lick his own fingers; therefore he that cannot lick his fingers goes not with me. capulet. go, begone. exit second servant. we shall be much unfurnish d for this time. what, is my daughter gone to friar lawrence? nurse. ay, forsooth. capulet. well, he may chance to do some good on her. a peevish self-will d harlotry it is. enter juliet. nurse. see where she comes from shrift with merry look. capulet. how now, my headstrong. where have you been gadding? juliet. where i have learnt me to repent the sin of disobedient opposition to you and your behests; and am enjoin d by holy lawrence to fall prostrate here, to beg your pardon. pardon, i beseech you. henceforward i am ever rul d by you. capulet. send for the county, go tell him of this. i ll have this knot knit up tomorrow morning. juliet. i met the youthful lord at lawrence cell, and gave him what becomed love i might, not stepping o er the bounds of modesty. capulet. why, i am glad on t. this is well. stand up. this is as t should be. let me see the county. ay, marry. go, i say, and fetch him hither. now afore god, this reverend holy friar, all our whole city is much bound to him. juliet. nurse, will you go with me into my closet, to help me sort such needful ornaments as you think fit to furnish me tomorrow? lady capulet. no, not till thursday. there is time enough. capulet. go, nurse, go with her. we ll to church tomorrow. exeunt juliet and nurse. lady capulet. we shall be short in our provision, tis now near night. capulet. tush, i will stir about, and all things shall be well, i warrant thee, wife. go thou to juliet, help to deck up her. i ll not to bed tonight, let me alone. i ll play the housewife for this once. what, ho! they are all forth: well, i will walk myself to county paris, to prepare him up against tomorrow. my heart is wondrous light since this same wayward girl is so reclaim d. exeunt. scene iii. juliet s chamber. enter juliet and nurse. juliet. ay, those attires are best. but, gentle nurse, i pray thee leave me to myself tonight; for i have need of many orisons to move the heavens to smile upon my state, which, well thou know st, is cross and full of sin. enter lady capulet. lady capulet. what, are you busy, ho? need you my help? juliet. no, madam; we have cull d such necessaries as are behoveful for our state tomorrow. so please you, let me now be left alone, and let the nurse this night sit up with you, for i am sure you have your hands full all in this so sudden business. lady capulet. good night. get thee to bed and rest, for thou hast need. exeunt lady capulet and nurse. juliet. farewell. god knows when we shall meet again. i have a faint cold fear thrills through my veins that almost freezes up the heat of life. i ll call them back again to comfort me. nurse! what should she do here? my dismal scene i needs must act alone. come, vial. what if this mixture do not work at all? shall i be married then tomorrow morning? no, no! this shall forbid it. lie thou there. laying down her dagger. what if it be a poison, which the friar subtly hath minister d to have me dead, lest in this marriage he should be dishonour d, because he married me before to romeo? i fear it is. and yet methinks it should not, for he hath still been tried a holy man. how if, when i am laid into the tomb, i wake before the time that romeo come to redeem me? there s a fearful point! shall i not then be stifled in the vault, to whose foul mouth no healthsome air breathes in, and there die strangled ere my romeo comes? or, if i live, is it not very like, the horrible conceit of death and night, together with the terror of the place, as in a vault, an ancient receptacle, where for this many hundred years the bones of all my buried ancestors are pack d, where bloody tybalt, yet but green in earth, lies festering in his shroud; where, as they say, at some hours in the night spirits resort alack, alack, is it not like that i, so early waking, what with loathsome smells, and shrieks like mandrakes torn out of the earth, that living mortals, hearing them, run mad. o, if i wake, shall i not be distraught, environed with all these hideous fears, and madly play with my forefathers joints? and pluck the mangled tybalt from his shroud? and, in this rage, with some great kinsman s bone, as with a club, dash out my desperate brains? o look, methinks i see my cousin s ghost seeking out romeo that did spit his body upon a rapier s point. stay, tybalt, stay! romeo, romeo, romeo, here s drink! i drink to thee. throws herself on the bed. scene iv. hall in capulet s house. enter lady capulet and nurse. lady capulet. hold, take these keys and fetch more spices, nurse. nurse. they call for dates and quinces in the pastry. enter capulet. capulet. come, stir, stir, stir! the second cock hath crow d, the curfew bell hath rung, tis three o clock. look to the bak d meats, good angelica; spare not for cost. nurse. go, you cot-quean, go, get you to bed; faith, you ll be sick tomorrow for this night s watching. capulet. no, not a whit. what! i have watch d ere now all night for lesser cause, and ne er been sick. lady capulet. ay, you have been a mouse-hunt in your time; but i will watch you from such watching now. exeunt lady capulet and nurse. capulet. a jealous-hood, a jealous-hood! enter servants, with spits, logs and baskets. now, fellow, what s there? first servant. things for the cook, sir; but i know not what. capulet. make haste, make haste. exit first servant. sirrah, fetch drier logs. call peter, he will show thee where they are. second servant. i have a head, sir, that will find out logs and never trouble peter for the matter. exit. capulet. mass and well said; a merry whoreson, ha. thou shalt be loggerhead. good faith, tis day. the county will be here with music straight, for so he said he would. i hear him near. play music. nurse! wife! what, ho! what, nurse, i say! re-enter nurse. go waken juliet, go and trim her up. i ll go and chat with paris. hie, make haste, make haste; the bridegroom he is come already. make haste i say. exeunt. scene v. juliet s chamber; juliet on the bed. enter nurse. nurse. mistress! what, mistress! juliet! fast, i warrant her, she. why, lamb, why, lady, fie, you slug-abed! why, love, i say! madam! sweetheart! why, bride! what, not a word? you take your pennyworths now. sleep for a week; for the next night, i warrant, the county paris hath set up his rest that you shall rest but little. god forgive me! marry and amen. how sound is she asleep! i needs must wake her. madam, madam, madam! ay, let the county take you in your bed, he ll fright you up, i faith. will it not be? what, dress d, and in your clothes, and down again? i must needs wake you. lady! lady! lady! alas, alas! help, help! my lady s dead! o, well-a-day that ever i was born. some aqua vitae, ho! my lord! my lady! enter lady capulet. lady capulet. what noise is here? nurse. o lamentable day! lady capulet. what is the matter? nurse. look, look! o heavy day! lady capulet. o me, o me! my child, my only life. revive, look up, or i will die with thee. help, help! call help. enter capulet. capulet. for shame, bring juliet forth, her lord is come. nurse. she s dead, deceas d, she s dead; alack the day! lady capulet. alack the day, she s dead, she s dead, she s dead! capulet. ha! let me see her. out alas! she s cold, her blood is settled and her joints are stiff. life and these lips have long been separated. death lies on her like an untimely frost upon the sweetest flower of all the field. nurse. o lamentable day! lady capulet. o woful time! capulet. death, that hath ta en her hence to make me wail, ties up my tongue and will not let me speak. enter friar lawrence and paris with musicians. friar lawrence. come, is the bride ready to go to church? capulet. ready to go, but never to return. o son, the night before thy wedding day hath death lain with thy bride. there she lies, flower as she was, deflowered by him. death is my son-in-law, death is my heir; my daughter he hath wedded. i will die and leave him all; life, living, all is death s. paris. have i thought long to see this morning s face, and doth it give me such a sight as this? lady capulet. accurs d, unhappy, wretched, hateful day. most miserable hour that e er time saw in lasting labour of his pilgrimage. but one, poor one, one poor and loving child, but one thing to rejoice and solace in, and cruel death hath catch d it from my sight. nurse. o woe! o woeful, woeful, woeful day. most lamentable day, most woeful day that ever, ever, i did yet behold! o day, o day, o day, o hateful day. never was seen so black a day as this. o woeful day, o woeful day. paris. beguil d, divorced, wronged, spited, slain. most detestable death, by thee beguil d, by cruel, cruel thee quite overthrown. o love! o life! not life, but love in death! capulet. despis d, distressed, hated, martyr d, kill d. uncomfortable time, why cam st thou now to murder, murder our solemnity? o child! o child! my soul, and not my child, dead art thou. alack, my child is dead, and with my child my joys are buried. friar lawrence. peace, ho, for shame. confusion s cure lives not in these confusions. heaven and yourself had part in this fair maid, now heaven hath all, and all the better is it for the maid. your part in her you could not keep from death, but heaven keeps his part in eternal life. the most you sought was her promotion, for twas your heaven she should be advanc d, and weep ye now, seeing she is advanc d above the clouds, as high as heaven itself? o, in this love, you love your child so ill that you run mad, seeing that she is well. she s not well married that lives married long, but she s best married that dies married young. dry up your tears, and stick your rosemary on this fair corse, and, as the custom is, and in her best array bear her to church; for though fond nature bids us all lament, yet nature s tears are reason s merriment. capulet. all things that we ordained festival turn from their office to black funeral: our instruments to melancholy bells, our wedding cheer to a sad burial feast; our solemn hymns to sullen dirges change; our bridal flowers serve for a buried corse, and all things change them to the contrary. friar lawrence. sir, go you in, and, madam, go with him, and go, sir paris, everyone prepare to follow this fair corse unto her grave. the heavens do lower upon you for some ill; move them no more by crossing their high will. exeunt capulet, lady capulet, paris and friar. first musician. faith, we may put up our pipes and be gone. nurse. honest good fellows, ah, put up, put up, for well you know this is a pitiful case. first musician. ay, by my troth, the case may be amended. exit nurse. enter peter. peter. musicians, o, musicians, heart s ease, heart s ease , o, and you will have me live, play heart s ease. first musician. why heart s ease ? peter. o musicians, because my heart itself plays my heart is full . o play me some merry dump to comfort me. first musician. not a dump we, tis no time to play now. peter. you will not then? first musician. no. peter. i will then give it you soundly. first musician. what will you give us? peter. no money, on my faith, but the gleek! i will give you the minstrel. first musician. then will i give you the serving-creature. peter. then will i lay the serving-creature s dagger on your pate. i will carry no crotchets. i ll re you, i ll fa you. do you note me? first musician. and you re us and fa us, you note us. second musician. pray you put up your dagger, and put out your wit. peter. then have at you with my wit. i will dry-beat you with an iron wit, and put up my iron dagger. answer me like men. when griping griefs the heart doth wound, and doleful dumps the mind oppress, then music with her silver sound why silver sound ? why music with her silver sound ? what say you, simon catling? first musician. marry, sir, because silver hath a sweet sound. peter. prates. what say you, hugh rebeck? second musician. i say silver sound because musicians sound for silver. peter. prates too! what say you, james soundpost? third musician. faith, i know not what to say. peter. o, i cry you mercy, you are the singer. i will say for you. it is music with her silver sound because musicians have no gold for sounding. then music with her silver sound with speedy help doth lend redress. exit. first musician. what a pestilent knave is this same! second musician. hang him, jack. come, we ll in here, tarry for the mourners, and stay dinner. exeunt. act v scene i. mantua. a street. enter romeo. romeo. if i may trust the flattering eye of sleep, my dreams presage some joyful news at hand. my bosom s lord sits lightly in his throne; and all this day an unaccustom d spirit lifts me above the ground with cheerful thoughts. i dreamt my lady came and found me dead, strange dream, that gives a dead man leave to think! and breath d such life with kisses in my lips, that i reviv d, and was an emperor. ah me, how sweet is love itself possess d, when but love s shadows are so rich in joy. enter balthasar. news from verona! how now, balthasar? dost thou not bring me letters from the friar? how doth my lady? is my father well? how fares my juliet? that i ask again; for nothing can be ill if she be well. balthasar. then she is well, and nothing can be ill. her body sleeps in capel s monument, and her immortal part with angels lives. i saw her laid low in her kindred s vault, and presently took post to tell it you. o pardon me for bringing these ill news, since you did leave it for my office, sir. romeo. is it even so? then i defy you, stars! thou know st my lodging. get me ink and paper, and hire post-horses. i will hence tonight. balthasar. i do beseech you sir, have patience. your looks are pale and wild, and do import some misadventure. romeo. tush, thou art deceiv d. leave me, and do the thing i bid thee do. hast thou no letters to me from the friar? balthasar. no, my good lord. romeo. no matter. get thee gone, and hire those horses. i ll be with thee straight. exit balthasar. well, juliet, i will lie with thee tonight. let s see for means. o mischief thou art swift to enter in the thoughts of desperate men. i do remember an apothecary, and hereabouts he dwells, which late i noted in tatter d weeds, with overwhelming brows, culling of simples, meagre were his looks, sharp misery had worn him to the bones; and in his needy shop a tortoise hung, an alligator stuff d, and other skins of ill-shaped fishes; and about his shelves a beggarly account of empty boxes, green earthen pots, bladders, and musty seeds, remnants of packthread, and old cakes of roses were thinly scatter d, to make up a show. noting this penury, to myself i said, and if a man did need a poison now, whose sale is present death in mantua, here lives a caitiff wretch would sell it him. o, this same thought did but forerun my need, and this same needy man must sell it me. as i remember, this should be the house. being holiday, the beggar s shop is shut. what, ho! apothecary! enter apothecary. apothecary. who calls so loud? romeo. come hither, man. i see that thou art poor. hold, there is forty ducats. let me have a dram of poison, such soon-speeding gear as will disperse itself through all the veins, that the life-weary taker may fall dead, and that the trunk may be discharg d of breath as violently as hasty powder fir d doth hurry from the fatal cannon s womb. apothecary. such mortal drugs i have, but mantua s law is death to any he that utters them. romeo. art thou so bare and full of wretchedness, and fear st to die? famine is in thy cheeks, need and oppression starveth in thine eyes, contempt and beggary hangs upon thy back. the world is not thy friend, nor the world s law; the world affords no law to make thee rich; then be not poor, but break it and take this. apothecary. my poverty, but not my will consents. romeo. i pay thy poverty, and not thy will. apothecary. put this in any liquid thing you will and drink it off; and, if you had the strength of twenty men, it would despatch you straight. romeo. there is thy gold, worse poison to men s souls, doing more murder in this loathsome world than these poor compounds that thou mayst not sell. i sell thee poison, thou hast sold me none. farewell, buy food, and get thyself in flesh. come, cordial and not poison, go with me to juliet s grave, for there must i use thee. exeunt. scene ii. friar lawrence s cell. enter friar john. friar john. holy franciscan friar! brother, ho! enter friar lawrence. friar lawrence. this same should be the voice of friar john. welcome from mantua. what says romeo? or, if his mind be writ, give me his letter. friar john. going to find a barefoot brother out, one of our order, to associate me, here in this city visiting the sick, and finding him, the searchers of the town, suspecting that we both were in a house where the infectious pestilence did reign, seal d up the doors, and would not let us forth, so that my speed to mantua there was stay d. friar lawrence. who bare my letter then to romeo? friar john. i could not send it, here it is again, nor get a messenger to bring it thee, so fearful were they of infection. friar lawrence. unhappy fortune! by my brotherhood, the letter was not nice, but full of charge, of dear import, and the neglecting it may do much danger. friar john, go hence, get me an iron crow and bring it straight unto my cell. friar john. brother, i ll go and bring it thee. exit. friar lawrence. now must i to the monument alone. within this three hours will fair juliet wake. she will beshrew me much that romeo hath had no notice of these accidents; but i will write again to mantua, and keep her at my cell till romeo come. poor living corse, clos d in a dead man s tomb. exit. scene iii. a churchyard; in it a monument belonging to the capulets. enter paris, and his page bearing flowers and a torch. paris. give me thy torch, boy. hence and stand aloof. yet put it out, for i would not be seen. under yond yew tree lay thee all along, holding thy ear close to the hollow ground; so shall no foot upon the churchyard tread, being loose, unfirm, with digging up of graves, but thou shalt hear it. whistle then to me, as signal that thou hear st something approach. give me those flowers. do as i bid thee, go. page. aside. i am almost afraid to stand alone here in the churchyard; yet i will adventure. retires. paris. sweet flower, with flowers thy bridal bed i strew. o woe, thy canopy is dust and stones, which with sweet water nightly i will dew, or wanting that, with tears distill d by moans. the obsequies that i for thee will keep, nightly shall be to strew thy grave and weep. the page whistles. the boy gives warning something doth approach. what cursed foot wanders this way tonight, to cross my obsequies and true love s rite? what, with a torch! muffle me, night, awhile. retires. enter romeo and balthasar with a torch, mattock, c. romeo. give me that mattock and the wrenching iron. hold, take this letter; early in the morning see thou deliver it to my lord and father. give me the light; upon thy life i charge thee, whate er thou hear st or seest, stand all aloof and do not interrupt me in my course. why i descend into this bed of death is partly to behold my lady s face, but chiefly to take thence from her dead finger a precious ring, a ring that i must use in dear employment. therefore hence, be gone. but if thou jealous dost return to pry in what i further shall intend to do, by heaven i will tear thee joint by joint, and strew this hungry churchyard with thy limbs. the time and my intents are savage-wild; more fierce and more inexorable far than empty tigers or the roaring sea. balthasar. i will be gone, sir, and not trouble you. romeo. so shalt thou show me friendship. take thou that. live, and be prosperous, and farewell, good fellow. balthasar. for all this same, i ll hide me hereabout. his looks i fear, and his intents i doubt. retires romeo. thou detestable maw, thou womb of death, gorg d with the dearest morsel of the earth, thus i enforce thy rotten jaws to open, breaking open the door of the monument. and in despite, i ll cram thee with more food. paris. this is that banish d haughty montague that murder d my love s cousin, with which grief, it is supposed, the fair creature died, and here is come to do some villainous shame to the dead bodies. i will apprehend him. advances. stop thy unhallow d toil, vile montague. can vengeance be pursu d further than death? condemned villain, i do apprehend thee. obey, and go with me, for thou must die. romeo. i must indeed; and therefore came i hither. good gentle youth, tempt not a desperate man. fly hence and leave me. think upon these gone; let them affright thee. i beseech thee, youth, put not another sin upon my head by urging me to fury. o be gone. by heaven i love thee better than myself; for i come hither arm d against myself. stay not, be gone, live, and hereafter say, a madman s mercy bid thee run away. paris. i do defy thy conjuration, and apprehend thee for a felon here. romeo. wilt thou provoke me? then have at thee, boy! they fight. page. o lord, they fight! i will go call the watch. exit. paris. o, i am slain! falls. if thou be merciful, open the tomb, lay me with juliet. dies. romeo. in faith, i will. let me peruse this face. mercutio s kinsman, noble county paris! what said my man, when my betossed soul did not attend him as we rode? i think he told me paris should have married juliet. said he not so? or did i dream it so? or am i mad, hearing him talk of juliet, to think it was so? o, give me thy hand, one writ with me in sour misfortune s book. i ll bury thee in a triumphant grave. a grave? o no, a lantern, slaught red youth, for here lies juliet, and her beauty makes this vault a feasting presence full of light. death, lie thou there, by a dead man interr d. laying paris in the monument. how oft when men are at the point of death have they been merry! which their keepers call a lightning before death. o, how may i call this a lightning? o my love, my wife, death that hath suck d the honey of thy breath, hath had no power yet upon thy beauty. thou art not conquer d. beauty s ensign yet is crimson in thy lips and in thy cheeks, and death s pale flag is not advanced there. tybalt, liest thou there in thy bloody sheet? o, what more favour can i do to thee than with that hand that cut thy youth in twain to sunder his that was thine enemy? forgive me, cousin. ah, dear juliet, why art thou yet so fair? shall i believe that unsubstantial death is amorous; and that the lean abhorred monster keeps thee here in dark to be his paramour? for fear of that i still will stay with thee, and never from this palace of dim night depart again. here, here will i remain with worms that are thy chambermaids. o, here will i set up my everlasting rest; and shake the yoke of inauspicious stars from this world-wearied flesh. eyes, look your last. arms, take your last embrace! and, lips, o you the doors of breath, seal with a righteous kiss a dateless bargain to engrossing death. come, bitter conduct, come, unsavoury guide. thou desperate pilot, now at once run on the dashing rocks thy sea-sick weary bark. here s to my love! drinks. o true apothecary! thy drugs are quick. thus with a kiss i die. dies. enter, at the other end of the churchyard, friar lawrence, with a lantern, crow, and spade. friar lawrence. saint francis be my speed. how oft tonight have my old feet stumbled at graves? who s there? who is it that consorts, so late, the dead? balthasar. here s one, a friend, and one that knows you well. friar lawrence. bliss be upon you. tell me, good my friend, what torch is yond that vainly lends his light to grubs and eyeless skulls? as i discern, it burneth in the capels monument. balthasar. it doth so, holy sir, and there s my master, one that you love. friar lawrence. who is it? balthasar. romeo. friar lawrence. how long hath he been there? balthasar. full half an hour. friar lawrence. go with me to the vault. balthasar. i dare not, sir; my master knows not but i am gone hence, and fearfully did menace me with death if i did stay to look on his intents. friar lawrence. stay then, i ll go alone. fear comes upon me. o, much i fear some ill unlucky thing. balthasar. as i did sleep under this yew tree here, i dreamt my master and another fought, and that my master slew him. friar lawrence. romeo! advances. alack, alack, what blood is this which stains the stony entrance of this sepulchre? what mean these masterless and gory swords to lie discolour d by this place of peace? enters the monument. romeo! o, pale! who else? what, paris too? and steep d in blood? ah what an unkind hour is guilty of this lamentable chance? the lady stirs. juliet wakes and stirs. juliet. o comfortable friar, where is my lord? i do remember well where i should be, and there i am. where is my romeo? noise within. friar lawrence. i hear some noise. lady, come from that nest of death, contagion, and unnatural sleep. a greater power than we can contradict hath thwarted our intents. come, come away. thy husband in thy bosom there lies dead; and paris too. come, i ll dispose of thee among a sisterhood of holy nuns. stay not to question, for the watch is coming. come, go, good juliet. i dare no longer stay. juliet. go, get thee hence, for i will not away. exit friar lawrence. what s here? a cup clos d in my true love s hand? poison, i see, hath been his timeless end. o churl. drink all, and left no friendly drop to help me after? i will kiss thy lips. haply some poison yet doth hang on them, to make me die with a restorative. kisses him. thy lips are warm! first watch. within. lead, boy. which way? juliet. yea, noise? then i ll be brief. o happy dagger. snatching romeo s dagger. this is thy sheath. stabs herself there rest, and let me die. falls on romeo s body and dies. enter watch with the page of paris. page. this is the place. there, where the torch doth burn. first watch. the ground is bloody. search about the churchyard. go, some of you, whoe er you find attach. exeunt some of the watch. pitiful sight! here lies the county slain, and juliet bleeding, warm, and newly dead, who here hath lain this two days buried. go tell the prince; run to the capulets. raise up the montagues, some others search. exeunt others of the watch. we see the ground whereon these woes do lie, but the true ground of all these piteous woes we cannot without circumstance descry. re-enter some of the watch with balthasar. second watch. here s romeo s man. we found him in the churchyard. first watch. hold him in safety till the prince come hither. re-enter others of the watch with friar lawrence. third watch. here is a friar that trembles, sighs, and weeps. we took this mattock and this spade from him as he was coming from this churchyard side. first watch. a great suspicion. stay the friar too. enter the prince and attendants. prince. what misadventure is so early up, that calls our person from our morning s rest? enter capulet, lady capulet and others. capulet. what should it be that they so shriek abroad? lady capulet. o the people in the street cry romeo, some juliet, and some paris, and all run with open outcry toward our monument. prince. what fear is this which startles in our ears? first watch. sovereign, here lies the county paris slain, and romeo dead, and juliet, dead before, warm and new kill d. prince. search, seek, and know how this foul murder comes. first watch. here is a friar, and slaughter d romeo s man, with instruments upon them fit to open these dead men s tombs. capulet. o heaven! o wife, look how our daughter bleeds! this dagger hath mista en, for lo, his house is empty on the back of montague, and it mis-sheathed in my daughter s bosom. lady capulet. o me! this sight of death is as a bell that warns my old age to a sepulchre. enter montague and others. prince. come, montague, for thou art early up, to see thy son and heir more early down. montague. alas, my liege, my wife is dead tonight. grief of my son s exile hath stopp d her breath. what further woe conspires against mine age? prince. look, and thou shalt see. montague. o thou untaught! what manners is in this, to press before thy father to a grave? prince. seal up the mouth of outrage for a while, till we can clear these ambiguities, and know their spring, their head, their true descent, and then will i be general of your woes, and lead you even to death. meantime forbear, and let mischance be slave to patience. bring forth the parties of suspicion. friar lawrence. i am the greatest, able to do least, yet most suspected, as the time and place doth make against me, of this direful murder. and here i stand, both to impeach and purge myself condemned and myself excus d. prince. then say at once what thou dost know in this. friar lawrence. i will be brief, for my short date of breath is not so long as is a tedious tale. romeo, there dead, was husband to that juliet, and she, there dead, that romeo s faithful wife. i married them; and their stol n marriage day was tybalt s doomsday, whose untimely death banish d the new-made bridegroom from this city; for whom, and not for tybalt, juliet pin d. you, to remove that siege of grief from her, betroth d, and would have married her perforce to county paris. then comes she to me, and with wild looks, bid me devise some means to rid her from this second marriage, or in my cell there would she kill herself. then gave i her, so tutored by my art, a sleeping potion, which so took effect as i intended, for it wrought on her the form of death. meantime i writ to romeo that he should hither come as this dire night to help to take her from her borrow d grave, being the time the potion s force should cease. but he which bore my letter, friar john, was stay d by accident; and yesternight return d my letter back. then all alone at the prefixed hour of her waking came i to take her from her kindred s vault, meaning to keep her closely at my cell till i conveniently could send to romeo. but when i came, some minute ere the time of her awaking, here untimely lay the noble paris and true romeo dead. she wakes; and i entreated her come forth and bear this work of heaven with patience. but then a noise did scare me from the tomb; and she, too desperate, would not go with me, but, as it seems, did violence on herself. all this i know; and to the marriage her nurse is privy. and if ought in this miscarried by my fault, let my old life be sacrific d, some hour before his time, unto the rigour of severest law. prince. we still have known thee for a holy man. where s romeo s man? what can he say to this? balthasar. i brought my master news of juliet s death, and then in post he came from mantua to this same place, to this same monument. this letter he early bid me give his father, and threaten d me with death, going in the vault, if i departed not, and left him there. prince. give me the letter, i will look on it. where is the county s page that rais d the watch? sirrah, what made your master in this place? page. he came with flowers to strew his lady s grave, and bid me stand aloof, and so i did. anon comes one with light to ope the tomb, and by and by my master drew on him, and then i ran away to call the watch. prince. this letter doth make good the friar s words, their course of love, the tidings of her death. and here he writes that he did buy a poison of a poor pothecary, and therewithal came to this vault to die, and lie with juliet. where be these enemies? capulet, montague, see what a scourge is laid upon your hate, that heaven finds means to kill your joys with love! and i, for winking at your discords too, have lost a brace of kinsmen. all are punish d. capulet. o brother montague, give me thy hand. this is my daughter s jointure, for no more can i demand. montague. but i can give thee more, for i will raise her statue in pure gold, that whiles verona by that name is known, there shall no figure at such rate be set as that of true and faithful juliet. capulet. as rich shall romeo s by his lady s lie, poor sacrifices of our enmity. prince. a glooming peace this morning with it brings; the sun for sorrow will not show his head. go hence, to have more talk of these sad things. some shall be pardon d, and some punished, for never was a story of more woe than this of juliet and her romeo. exeunt.\n", + "Cleaned text preview Text 2:\n", + " transcriber s note: this text of the comedy of errors is from volume i of the nine-volume 1863 cambridge edition of shakespeare. the preface e-text 23041 and the other plays from this volume are each available as separate e-texts. general notes are in their original location at the end of the play. text-critical notes are grouped at the end of each scene. all line numbers are from the original text; line breaks in dialogue--including prose passages--are unchanged. brackets are also unchanged; to avoid ambiguity, footnotes and linenotes are given without added brackets. in the notes, numerals printed as subscripts are shown inline as f1, f2, q1... texts cited in the notes are listed at the end of the e-text. the works of william shakespeare edited by william george clark, m.a. fellow and tutor of trinity college, and public orator in the university of cambridge; and john glover, m.a. librarian of trinity college, cambridge. volume i. cambridge and london: macmillan and co. 1863. the comedy of errors. dramatis person 1 . solinus 2 , duke of ephesus. geon, a merchant of syracuse. antipholus 3 of ephesus, twin brothers, and sons to antipholus of syracuse, geon and milia. dromio of ephesus, twin brothers, and attendants on dromio of syracuse, the two antipholuses. balthazar, a merchant. angelo, a goldsmith. first merchant, friend to antipholus of syracuse. second merchant, to whom angelo is a debtor. pinch, a schoolmaster. milia, wife to geon, an abbess at ephesus. adriana, wife to antipholus of ephesus. luciana, her sister. luce, servant to adriana. a courtezan. gaoler, officers, and other attendants. scene--ephesus. footnotes: 1: dramatis person first given by rowe. 2: solinus see note i . 3: antipholus see note i . the comedy of errors. act i. scene i. a hall in the duke s palace. enter duke, geon, gaoler , officers , and other attendants . ge. proceed, solinus, to procure my fall, and by the doom of death end woes and all. duke. merchant of syracusa, plead no more; i am not partial to infringe our laws: the enmity and discord which of late 5 sprung from the rancorous outrage of your duke to merchants, our well-dealing countrymen, who, wanting guilders to redeem their lives, have seal d his rigorous statutes with their bloods, excludes all pity from our threatening looks. 10 for, since the mortal and intestine jars twixt thy seditious countrymen and us, it hath in solemn synods been decreed, both by the syracusians and ourselves, to admit no traffic to our adverse towns: 15 nay, more, if any born at ephesus be seen at any syracusian marts and fairs; again: if any syracusian born come to the bay of ephesus, he dies, 20 his goods confiscate to the duke s dispose; unless a thousand marks be levied, to quit the penalty and to ransom him. thy substance, valued at the highest rate, cannot amount unto a hundred marks; 25 therefore by law thou art condemn d to die. ge. yet this my comfort: when your words are done, my woes end likewise with the evening sun. duke. well, syracusian, say, in brief, the cause why thou departed st from thy native home, 30 and for what cause thou camest to ephesus. ge. a heavier task could not have been imposed than i to speak my griefs unspeakable: yet, that the world may witness that my end was wrought by nature, not by vile offence, 35 i ll utter what my sorrow gives me leave. in syracusa was i born; and wed unto a woman, happy but for me, and by me, had not our hap been bad. with her i lived in joy; our wealth increased 40 by prosperous voyages i often made to epidamnum; till my factor s death, and the great care of goods at random left, drew me from kind embracements of my spouse: from whom my absence was not six months old, 45 before herself, almost at fainting under the pleasing punishment that women bear, had made provision for her following me, and soon and safe arrived where i was. there had she not been long but she became 50 a joyful mother of two goodly sons; and, which was strange, the one so like the other as could not be distinguish d but by names. that very hour, and in the self-same inn, a meaner woman was delivered 55 of such a burden, male twins, both alike: those, for their parents were exceeding poor, i bought, and brought up to attend my sons. my wife, not meanly proud of two such boys, made daily motions for our home return: 60 unwilling i agreed; alas! too soon we came aboard. a league from epidamnum had we sail d, before the always-wind-obeying deep gave any tragic instance of our harm: 65 but longer did we not retain much hope; for what obscured light the heavens did grant did but convey unto our fearful minds a doubtful warrant of immediate death; which though myself would gladly have embraced, 70 yet the incessant weepings of my wife, weeping before for what she saw must come, and piteous plainings of the pretty babes, that mourn d for fashion, ignorant what to fear, forced me to seek delays for them and me. 75 and this it was, for other means was none: the sailors sought for safety by our boat, and left the ship, then sinking-ripe, to us: my wife, more careful for the latter-born, had fasten d him unto a small spare mast, 80 such as seafaring men provide for storms; to him one of the other twins was bound, whilst i had been like heedful of the other: the children thus disposed, my wife and i, fixing our eyes on whom our care was fix d, 85 fasten d ourselves at either end the mast; and floating straight, obedient to the stream, was carried towards corinth, as we thought. at length the sun, gazing upon the earth, dispersed those vapours that offended us; 90 and, by the benefit of his wished light, the seas wax d calm, and we discovered two ships from far making amain to us, of corinth that, of epidaurus this: but ere they came,--o, let me say no more! 95 gather the sequel by that went before. duke. nay, forward, old man; do not break off so; for we may pity, though not pardon thee. ge. o, had the gods done so, i had not now worthily term d them merciless to us! 100 for, ere the ships could meet by twice five leagues, we were encounter d by a mighty rock; which being violently borne upon, our helpful ship was splitted in the midst; so that, in this unjust divorce of us, 105 fortune had left to both of us alike what to delight in, what to sorrow for. her part, poor soul! seeming as burdened with lesser weight, but not with lesser woe, was carried with more speed before the wind; 110 and in our sight they three were taken up by fishermen of corinth, as we thought. at length, another ship had seized on us; and, knowing whom it was their hap to save, gave healthful welcome to their shipwreck d guests; 115 and would have reft the fishers of their prey, had not their bark been very slow of sail; and therefore homeward did they bend their course. thus have you heard me sever d from my bliss; that by misfortunes was my life prolong d, 120 to tell sad stories of my own mishaps. duke. and, for the sake of them thou sorrowest for, do me the favour to dilate at full what hath befall n of them and thee till now. ge. my youngest boy, and yet my eldest care, 125 at eighteen years became inquisitive after his brother: and importuned me that his attendant--so his case was like, reft of his brother, but retain d his name-- might bear him company in the quest of him: 130 whom whilst i labour d of a love to see, i hazarded the loss of whom i loved. five summers have i spent in furthest greece, roaming clean through the bounds of asia, and, coasting homeward, came to ephesus; 135 hopeless to find, yet loath to leave unsought or that, or any place that harbours men. but here must end the story of my life; and happy were i in my timely death, could all my travels warrant me they live. 140 duke. hapless geon, whom the fates have mark d to bear the extremity of dire mishap! now, trust me, were it not against our laws, against my crown, my oath, my dignity, which princes, would they, may not disannul, 145 my soul should sue as advocate for thee. but, though thou art adjudged to the death, and passed sentence may not be recall d but to our honour s great disparagement, yet will i favour thee in what i can. 150 therefore, merchant, i ll limit thee this day to seek thy help by beneficial help: try all the friends thou hast in ephesus; beg thou, or borrow, to make up the sum, and live; if no, then thou art doom d to die. 155 gaoler, take him to thy custody. gaol. i will, my lord. ge. hopeless and helpless doth geon wend, but to procrastinate his lifeless end. exeunt. notes: i, 1. a hall ... palace. malone. the duke s palace. theobald. a publick place. capell. geon, rowe. with the merchant of siracusa, ff. officers, capell. officer, staunton. om. ff. 1: solinus f1. salinus f2 f3 f4. 10: looks books anon. conj. 14: syracusians f4. siracusians f1 f2 f3. syracusans pope. see note i . 16, 17, 18: nay more if ... seen at any malone. nay, more, if ... ephesus be seen at any ff. 18: any om. pope. 23: to ransom f1. ransom f2 f3 f4. 27: this tis hanmer. 33: griefs f1. griefe f2. grief f3 f4. 35: nature fortune collier ms. 39: by me f1. by me too f2 f3 f4. 42: epidamnum pope. epidamium ff. epidamnium rowe. see note i . 43: the then edd. conj. the ... care ... left theobald. he ... care ... left f1. he ... store ... leaving f2 f3 f4. heed ... caves ... left jackson conj. random f3 f4. randone f1 f2. 50: had she ff. she had rowe. 55: meaner delius s. walker conj. . meane f1. poor meane f2. poor mean f3 f4. 56: burden, male twins burthen male, twins f1. 61, 62: so pope. one line in ff. 61: soon soon! pope. soon. capell. 70: gladly gently collier ms. 71: weepings f1. weeping f2 f3 f4. 76: this thus collier ms. 79: latter- elder- rowe. 86: either end the mast th end of either mast hanmer. 87, 88: and ... was ff. and ... were rowe. which ... was capell. 91: wished f1. wish d f2 f3 f4. 92: seas wax d seas waxt f1. seas waxe f2. seas wax f3. seas was f4. sea was rowe. 94: epidaurus epidarus f1. epidamnus theobald conj. 103: upon pope. up f1 up upon f2 f3 f4. 104: helpful helpless rowe. 113: another the other hanmer. 115: healthful f1. helpful f2 f3 f4. 117: bark backe f1. 120: that thus hanmer. yet anon. conj. 122: sake f1. sakes f2 f3 f4. 124: hath ... thee have ... they f1. of om. f4. 128: so f1. for f2 f3 f4. 130: the om. pope. 131: i labour d of a he labour d of all collier ms. 144, 145: these lines inverted by hanmer. 145: princes, would they, may hanmer. princes would they may f1. princes would, they may f2 f3 f4. 151: therefore, merchant, i ll ff. therefore merchant, i rowe. i, therefore, merchant pope. i ll, therefore, merchant capell. 152: help ... help ff. life ... help pope. help ... means steevens conj. hope ... help collier. fine ... help singer. by thy jackson conj. 155: no not rowe. 156: gaoler, jailor, now hanmer. so, jailer, capell. 159: lifeless warburton. liveless ff. scene ii. the mart. enter antipholus of syracuse , dromio of syracuse , and first merchant . first mer. therefore give out you are of epidamnum, lest that your goods too soon be confiscate. this very day a syracusian merchant is apprehended for arrival here; and, not being able to buy out his life, 5 according to the statute of the town, dies ere the weary sun set in the west. there is your money that i had to keep. ant. s. go bear it to the centaur, where we host, and stay there, dromio, till i come to thee. 10 within this hour it will be dinner-time: till that. i ll view the manners of the town, peruse the traders, gaze upon the buildings, and then return, and sleep within mine inn; for with long travel i am stiff and weary. 15 get thee away. dro. s. many a man would take you at your word, and go indeed, having so good a mean. exit. ant. s. a trusty villain, sir; that very oft, when i am dull with care and melancholy, 20 lightens my humour with his merry jests. what, will you walk with me about the town, and then go to my inn, and dine with me? first mer. i am invited, sir, to certain merchants, of whom i hope to make much benefit; 25 i crave your pardon. soon at five o clock, please you, i ll meet with you upon the mart, and afterward consort you till bed-time: my present business calls me from you now. ant. s. farewell till then: i will go lose myself, 30 and wander up and down to view the city. first mer. sir, i commend you to your own content. exit. ant. s. he that commends me to mine own content commends me to the thing i cannot get. i to the world am like a drop of water, 35 that in the ocean seeks another drop; who, falling there to find his fellow forth, unseen, inquisitive, confounds himself: so i, to find a mother and a brother, in quest of them, unhappy, lose myself. 40 enter dromio of ephesus . here comes the almanac of my true date. what now? how chance thou art return d so soon? dro. e. return d so soon! rather approach d too late: the capon burns, the pig falls from the spit; the clock hath strucken twelve upon the bell; 45 my mistress made it one upon my cheek: she is so hot, because the meat is cold; the meat is cold, because you come not home; you come not home, because you have no stomach; you have no stomach, having broke your fast; 50 but we, that know what tis to fast and pray, are penitent for your default to-day. ant. s. stop in your wind, sir: tell me this, i pray: where have you left the money that i gave you? dro. e. o,--sixpence, that i had o wednesday last 55 to pay the saddler for my mistress crupper? the saddler had it, sir; i kept it not. ant. s. i am not in a sportive humour now: tell me, and dally not, where is the money? we being strangers here, how darest thou trust 60 so great a charge from thine own custody? dro. e. i pray you, jest, sir, as you sit at dinner: i from my mistress come to you in post; if i return, i shall be post indeed, for she will score your fault upon my pate. 65 methinks your maw, like mine, should be your clock, and strike you home without a messenger. ant. s. come, dromio, come, these jests are out of season; reserve them till a merrier hour than this. where is the gold i gave in charge to thee? 70 dro. e. to me, sir? why, you gave no gold to me. ant. s. come on, sir knave, have done your foolishness, and tell me how thou hast disposed thy charge. dro. e. my charge was but to fetch you from the mart home to your house, the ph nix, sir, to dinner: 75 my mistress and her sister stays for you. ant. s. now, as i am a christian, answer me, in what safe place you have bestow d my money; or i shall break that merry sconce of yours, that stands on tricks when i am undisposed: 80 where is the thousand marks thou hadst of me? dro. e. i have some marks of yours upon my pate, some of my mistress marks upon my shoulders; but not a thousand marks between you both. if i should pay your worship those again, 85 perchance you will not bear them patiently. ant. s. thy mistress marks? what mistress, slave, hast thou? dro. e. your worship s wife, my mistress at the ph nix; she that doth fast till you come home to dinner, and prays that you will hie you home to dinner. 90 ant. s. what, wilt thou flout me thus unto my face, being forbid? there, take you that, sir knave. dro. e. what mean you, sir? for god s sake, hold your hands! nay, an you will not, sir, i ll take my heels. exit. ant. s. upon my life, by some device or other 95 the villain is o er-raught of all my money. they say this town is full of cozenage; as, nimble jugglers that deceive the eye, dark-working sorcerers that change the mind. soul-killing witches that deform the body, 100 disguised cheaters, prating mountebanks, and many such-like liberties of sin: if it prove so, i will be gone the sooner. i ll to the centaur, to go seek this slave: i greatly fear my money is not safe. exit. 105 notes: i, 2. scene ii. pope. no division in ff. the mart. edd. a public place. capell. the street. pope. see note ii . enter ... enter antipholis erotes, a marchant, and dromio. ff. 4: arrival a rivall f1. 10: till tell f2. 11, 12: the order of these lines is inverted by f2 f3 f4. 12: that then collier ms. 18: mean f1. means f2 f3 f4. 23: my f1. the f2 f3 f4. 28: consort consort with malone conj. 30: myself f1. my life f2 f3 f4. 33: scene iii. pope. mine f1. my f2 f3 f4. 37: falling failing barron field conj. 37, 38: fellow forth, unseen, fellow, for th unseen anon. conj. 38: unseen, in search spedding conj. unseen, inquisitive, unseen inquisitive! staunton. 40: them f1. him f2 f3 f4. unhappy , f2 f3 f4. unhappie a f1. unhappier , edd. conj. 65: score rowe. scoure f1 f2 f3. scour f4. 66: your clock pope. your cooke f1. you cooke f2. your cook f3 f4. 76: stays stay rowe. 86: will would collier ms. 93: god s hanmer. god ff. 96: o er-raught hanmer. ore-wrought ff. 99: dark-working drug-working warburton. 99, 100: dark-working ... soul-killing soul-killing ... dark-working johnson conj. 100: soul-killing soul-selling hanmer. 102: liberties libertines hanmer. act ii. scene i. the house of antipholus of ephesus . enter adriana and luciana. adr. neither my husband nor the slave return d, that in such haste i sent to seek his master! sure, luciana, it is two o clock. luc. perhaps some merchant hath invited him, and from the mart he s somewhere gone to dinner. 5 good sister, let us dine, and never fret: a man is master of his liberty: time is their master; and when they see time, they ll go or come: if so, be patient, sister. adr. why should their liberty than ours be more? 10 luc. because their business still lies out o door. adr. look, when i serve him so, he takes it ill. luc. o, know he is the bridle of your will. adr. there s none but asses will be bridled so. luc. why, headstrong liberty is lash d with woe. 15 there s nothing situate under heaven s eye but hath his bound, in earth, in sea, in sky: the beasts, the fishes, and the winged fowls, are their males subjects and at their controls: men, more divine, the masters of all these, 20 lords of the wide world and wild watery seas, indued with intellectual sense and souls, of more pre-eminence than fish and fowls, are masters to their females, and their lords: then let your will attend on their accords. 25 adr. this servitude makes you to keep unwed. luc. not this, but troubles of the marriage-bed. adr. but, were you wedded, you would bear some sway. luc. ere i learn love, i ll practise to obey. adr. how if your husband start some other where? 30 luc. till he come home again, i would forbear. adr. patience unmoved! no marvel though she pause; they can be meek that have no other cause. a wretched soul, bruised with adversity, we bid be quiet when we hear it cry; 35 but were we burden d with like weight of pain, as much, or more, we should ourselves complain: so thou, that hast no unkind mate to grieve thee, with urging helpless patience wouldst relieve me; but, if thou live to see like right bereft, 40 this fool-begg d patience in thee will be left. luc. well, i will marry one day, but to try. here comes your man; now is your husband nigh. enter dromio of ephesus . adr. say, is your tardy master now at hand? dro. e. nay, he s at two hands with me, and that my 45 two ears can witness. adr. say, didst thou speak with him? know st thou his mind? dro. e. ay, ay, he told his mind upon mine ear: beshrew his hand, i scarce could understand it. luc. spake he so doubtfully, thou couldst not feel his 50 meaning? dro. e. nay, he struck so plainly, i could too well feel his blows; and withal so doubtfully, that i could scarce understand them. adr. but say, i prithee, is he coming home? 55 it seems he hath great care to please his wife. dro. e. why, mistress, sure my master is horn-mad. adr. horn-mad, thou villain! dro. e. i mean not cuckold-mad; but, sure, he is stark mad. when i desired him to come home to dinner, 60 he ask d me for a thousand marks in gold: tis dinner-time, quoth i; my gold! quoth he: your meat doth burn, quoth i; my gold! quoth he: will you come home? quoth i; my gold! quoth he, where is the thousand marks i gave thee, villain? 65 the pig, quoth i, is burn d; my gold! quoth he: my mistress, sir, quoth i; hang up thy mistress! i know not thy mistress; out on thy mistress! luc. quoth who? dro. e. quoth my master: 70 i know, quoth he, no house, no wife, no mistress. so that my errand, due unto my tongue, i thank him, i bare home upon my shoulders; for, in conclusion, he did beat me there. adr. go back again, thou slave, and fetch him home. 75 dro. e. go back again, and be new beaten home? for god s sake, send some other messenger. adr. back, slave, or i will break thy pate across. dro. e. and he will bless that cross with other beating: between you i shall have a holy head. 80 adr. hence, prating peasant! fetch thy master home. dro. e. am i so round with you as you with me, that like a football you do spurn me thus? you spurn me hence, and he will spurn me hither: if i last in this service, you must case me in leather. exit. 85 luc. fie, how impatience lowereth in your face! adr. his company must do his minions grace, whilst i at home starve for a merry look. hath homely age the alluring beauty took from my poor cheek? then he hath wasted it: 90 are my discourses dull? barren my wit? if voluble and sharp discourse be marr d, unkindness blunts it more than marble hard: do their gay vestments his affections bait? that s not my fault; he s master of my state: 95 what ruins are in me that can be found, by him not ruin d? then is he the ground of my defeatures. my decayed fair a sunny look of his would soon repair: but, too unruly deer, he breaks the pale, 100 and feeds from home; poor i am but his stale. luc. self-harming jealousy! fie, beat it hence! adr. unfeeling fools can with such wrongs dispense. i know his eye doth homage otherwhere; or else what lets it but he would be here? 105 sister, you know he promised me a chain; would that alone, alone he would detain, so he would keep fair quarter with his bed! i see the jewel best enamelled will lose his beauty; yet the gold bides still, 110 that others touch, and often touching will wear gold: and no man that hath a name, by falsehood and corruption doth it shame. since that my beauty cannot please his eye, i ll weep what s left away, and weeping die. 115 luc. how many fond fools serve mad jealousy! exeunt. notes: ii, 1. the house ... ephesus. pope. the same i.e. a publick place . capell, and passim. 11: o door capell. adore f1 f2 f3. adoor f4. 12: ill f2 f3 f4. thus f1. 15: lash d leashed a learned lady conj. ap. steevens. lach d or lac d becket conj. 17: bound, ... sky: bound: ... sky, anon. conj. 19: subjects subject capell. 20, 21: men ... masters ... lords hanmer. man ... master ... lord ff. 21: wild watery wilde watry f1. wide watry f2 f3 f4. 22, 23: souls ... fowls f1. soul ... fowl f2 f3 f4. 30: husband start husband s heart s jackson conj. other where other hare johnson conj. see note iii . 31: home om. boswell ed. 1821 . 39: wouldst rowe. would ff. 40: see be hanmer. 41: fool-begg d fool-egg d jackson conj. fool-bagg d staunton conj. fool-badged id. conj. 44: scene ii. pope. now yet capell. 45: nay at hand? nay capell. and om. capell. 45, 46: two ... two too ... two f1. 50-53: doubtfully doubly collier ms. 53: withal therewithal capell. that om. capell, who prints lines 50-54 as four verses ending feel ... i ... therewithal ... them. 59: he is he s pope. om. hanmer. 61: a thousand f4. a hundred f1 a 1000 f2 f3. 64: home hanmer. om. ff. 68: i know not thy mistress thy mistress i know not hanmer. i know not of thy mistress capell. i know thy mistress not seymour conj. out on thy mistress f1 f4. out on my mistress f2 f3. out on thy mistress, quoth he capell. i know no mistress; out upon thy mistress steevens conj. 70: quoth why, quoth hanmer. 71-74: printed as prose in ff. corrected by pope. 73: bare bear steevens. my thy f2. 74: there thence capell conj. 85: i last i m to last anon. conj. exit. f2. 87: scene iii. pope. 93: blunts f1. blots f2 f3 f4. 107: alone, alone f2 f3 f4. alone, a love f1. alone, alas! hanmer. alone, o love, capell conj. alone a lone nicholson conj. 110: yet the ff. and the theobald. and tho hanmer. yet though collier. 111: that others touch the tester s touch anon. fras. mag. conj. the triers touch singer. and ff. yet theobald. an collier. though heath conj. 111, 112: will wear theobald warburton . will, where f1. 112, 113: f2 f3 f4 omit these two lines. see note iv . 112: and no man f1. and so no man theobald. and e en so man capell. and so a man heath conj. 113: by f1. but theobald. 115: what s left away what s left away f1. what s left away f2 f3 f4. scene ii. a public place. enter antipholus of syracuse . ant. s. the gold i gave to dromio is laid up safe at the centaur; and the heedful slave is wander d forth, in care to seek me out by computation and mine host s report. i could not speak with dromio since at first 5 i sent him from the mart. see, here he comes. enter dromio of syracuse . how now, sir! is your merry humour alter d? as you love strokes, so jest with me again. you know no centaur? you receiv d no gold? your mistress sent to have me home to dinner? 10 my house was at the ph nix? wast thou mad, that thus so madly thou didst answer me? dro. s. what answer, sir? when spake i such a word? ant. s. even now, even here, not half an hour since. dro. s. i did not see you since you sent me hence, 15 home to the centaur, with the gold you gave me. ant. s. villain, thou didst deny the gold s receipt, and told st me of a mistress and a dinner; for which, i hope, thou felt st i was displeased. dro. s. i am glad to see you in this merry vein: 20 what means this jest? i pray you, master, tell me. ant. s. yea, dost thou jeer and flout me in the teeth? think st thou i jest? hold, take thou that, and that. beating him. dro. s. hold, sir, for god s sake! now your jest is earnest: upon what bargain do you give it me? 25 ant. s. because that i familiarly sometimes do use you for my fool, and chat with you, your sauciness will jest upon my love, and make a common of my serious hours. when the sun shines let foolish gnats make sport, 30 but creep in crannies when he hides his beams. if you will jest with me, know my aspect, and fashion your demeanour to my looks, or i will beat this method in your sconce. dro. s. sconce call you it? so you would leave battering, 35 i had rather have it a head: an you use these blows long, i must get a sconce for my head, and insconce it too; or else i shall seek my wit in my shoulders. but, i pray, sir, why am i beaten? ant. s. dost thou not know? 40 dro. s. nothing, sir, but that i am beaten. ant. s. shall i tell you why? dro. s. ay, sir, and wherefore; for they say every why hath a wherefore. ant. s. why, first,--for flouting me; and then, wherefore,-- 45 for urging it the second time to me. dro. s. was there ever any man thus beaten out of season, when in the why and the wherefore is neither rhyme nor reason? well, sir, i thank you. ant. s. thank me, sir! for what? 50 dro. s. marry, sir, for this something that you gave me for nothing. ant. s. i ll make you amends next, to give you nothing for something. but say, sir, is it dinner-time? dro. s. no, sir: i think the meat wants that i have. 55 ant. s. in good time, sir; what s that? dro. s. basting. ant. s. well, sir, then twill be dry. dro. s. if it be, sir, i pray you, eat none of it. ant. s. your reason? 60 dro. s. lest it make you choleric, and purchase me another dry basting. ant. s. well, sir, learn to jest in good time: there s a time for all things. dro. s. i durst have denied that, before you were so 65 choleric. ant. s. by what rule, sir? dro. s. marry, sir, by a rule as plain as the plain bald pate of father time himself. ant. s. let s hear it. 70 dro. s. there s no time for a man to recover his hair that grows bald by nature. ant. s. may he not do it by fine and recovery? dro. s. yes, to pay a fine for a periwig, and recover the lost hair of another man. 75 ant. s. why is time such a niggard of hair, being, as it is, so plentiful an excrement? dro. s. because it is a blessing that he bestows on beasts: and what he hath scanted men in hair, he hath given them in wit. 80 ant. s. why, but there s many a man hath more hair than wit. dro. s. not a man of those but he hath the wit to lose his hair. ant. s. why, thou didst conclude hairy men plain 85 dealers without wit. dro. s. the plainer dealer, the sooner lost: yet he loseth it in a kind of jollity. ant. s. for what reason? dro. s. for two; and sound ones too. 90 ant. s. nay, not sound, i pray you. dro. s. sure ones, then. ant. s. nay, not sure, in a thing falsing. dro. s. certain ones, then. ant. s. name them. 95 dro. s. the one, to save the money that he spends in trimming; the other, that at dinner they should not drop in his porridge. ant. s. you would all this time have proved there is no time for all things. 100 dro. s. marry, and did, sir; namely, no time to recover hair lost by nature. ant. s. but your reason was not substantial, why there is no time to recover. dro. s. thus i mend it: time himself is bald, and 105 therefore to the world s end will have bald followers. ant. s. i knew twould be a bald conclusion: but, soft! who wafts us yonder? enter adriana and luciana. adr. ay, ay, antipholus, look strange and frown: some other mistress hath thy sweet aspects; 110 i am not adriana nor thy wife. the time was once when thou unurged wouldst vow that never words were music to thine ear, that never object pleasing in thine eye, that never touch well welcome to thy hand, 115 that never meat sweet-savour d in thy taste, unless i spake, or look d, or touch d, or carved to thee. how comes it now, my husband, o, how comes it, that thou art then estranged from thyself? thyself i call it, being strange to me, 120 that, undividable, incorporate, am better than thy dear self s better part. ah, do not tear away thyself from me! for know, my love, as easy mayst thou fall a drop of water in the breaking gulf, 125 and take unmingled thence that drop again, without addition or diminishing, as take from me thyself, and not me too. how dearly would it touch thee to the quick, shouldst thou but hear i were licentious, 130 and that this body, consecrate to thee, by ruffian lust should be contaminate! wouldst thou not spit at me and spurn at me, and hurl the name of husband in my face, and tear the stain d skin off my harlot-brow, 135 and from my false hand cut the wedding-ring, and break it with a deep-divorcing vow? i know thou canst; and therefore see thou do it. i am possess d with an adulterate blot; my blood is mingled with the crime of lust: 140 for if we two be one, and thou play false, i do digest the poison of thy flesh, being strumpeted by thy contagion. keep, then, fair league and truce with thy true bed; i live distain d, thou undishonoured. 145 ant. s. plead you to me, fair dame? i know you not: in ephesus i am but two hours old, as strange unto your town as to your talk; who, every word by all my wit being scann d, wants wit in all one word to understand. 150 luc. fie, brother! how the world is changed with you! when were you wont to use my sister thus? she sent for you by dromio home to dinner. ant. s. by dromio? dro. s. by me? 155 adr. by thee; and this thou didst return from him, that he did buffet thee, and, in his blows, denied my house for his, me for his wife. ant. s. did you converse, sir, with this gentlewoman? what is the course and drift of your compact? 160 dro. s. i, sir? i never saw her till this time. ant. s. villain, thou liest; for even her very words didst thou deliver to me on the mart. dro. s. i never spake with her in all my life. ant. s. how can she thus, then, call us by our names, 165 unless it be by inspiration. adr. how ill agrees it with your gravity to counterfeit thus grossly with your slave, abetting him to thwart me in my mood! be it my wrong you are from me exempt, 170 but wrong not that wrong with a more contempt. come, i will fasten on this sleeve of thine: thou art an elm, my husband, i a vine, whose weakness, married to thy stronger state, makes me with thy strength to communicate: 175 if aught possess thee from me, it is dross, usurping ivy, brier, or idle moss; who, all for want of pruning, with intrusion infect thy sap, and live on thy confusion. ant. s. to me she speaks; she moves me for her theme: 180 what, was i married to her in my dream? or sleep i now, and think i hear all this? what error drives our eyes and ears amiss? until i know this sure uncertainty, i ll entertain the offer d fallacy. 185 luc. dromio, go bid the servants spread for dinner. dro. s. o, for my beads! i cross me for a sinner. this is the fairy land;--o spite of spites! we talk with goblins, owls, and sprites: if we obey them not, this will ensue, 190 they ll suck our breath, or pinch us black and blue. luc. why pratest thou to thyself, and answer st not? dromio, thou drone, thou snail, thou slug, thou sot! dro. s. i am transformed, master, am i not? ant. s. i think thou art in mind, and so am i. 195 dro. s. nay, master, both in mind and in my shape. ant. s. thou hast thine own form. dro. s. no, i am an ape. luc. if thou art chang d to aught, tis to an ass. dro. s. tis true; she rides me, and i long for grass. tis so, i am an ass; else it could never be 200 but i should know her as well as she knows me. adr. come, come, no longer will i be a fool, to put the finger in the eye and weep, whilst man and master laughs my woes to scorn. come, sir, to dinner. dromio, keep the gate. 205 husband, i ll dine above with you to-day, and shrive you of a thousand idle pranks. sirrah, if any ask you for your master, say he dines forth, and let no creature enter. come, sister. dromio, play the porter well. 210 ant. s. am i in earth, in heaven, or in hell? sleeping or waking? mad or well-advised? known unto these, and to myself disguised! i ll say as they say, and persever so, and in this mist at all adventures go. 215 dro. s. master, shall i be porter at the gate? adr. ay; and let none enter, lest i break your pate. luc. come, come, antipholus, we dine too late. exeunt. notes: ii, 2. scene ii. capell. scene iv. pope. a public place. capell. a street. pope. 3, 4, 5: out by ... report. i f1 f2 f3. out by ... report, i f4. out. by ... report, i rowe. 12: didst did didst f1. 23: beating him beats dro. ff. 28: jest jet dyce. 29: common comedy hanmer. 35-107: pope marks as spurious. 38: else om. capell. 45: why, first first, why capell. 53: next, to next time, capell conj. to and collier ms. 59: none f1. not f2 f3 f4. 76: hair hair to men capell. 79: men pope, ed. 2 theobald . them ff. 91: sound f1. sound ones f2 f3 f4. 93: falsing falling heath conj. 97: trimming rowe. trying ff. tyring pope. tiring collier. 101: no time f2 f3 f4. in no time f1. e en no time collier malone conj. . 110: thy f1. some f2 f3 f4. 111: not ... nor but ... and capell conj. 112: unurged unurg dst pope. 117: or look d, or look d, steevens. to thee om. pope. thee s. walker conj. 119: then thus rowe. 130: but f1. om. f2 f3 f4. 135: off hanmer. of ff. 138: canst wouldst hanmer. 140: crime grime warburton. 142: thy f1. my f2 f3 f4. 143: contagion catagion f4. 145: distain d unstain d hanmer theobald conj. . dis-stain d theobald. distained heath conj. undishonoured dishonoured heath conj. 149, 150: marked as spurious by pope. who, ... wants whose every ..., want becket conj. 150: wants ff. want johnson. 155: by me? pope. by me. ff. 156: this f1, capell. thus f2 f3 f4. 167: your you f2. 174: stronger f4. stranger f1 f2 f3. 180-185: marked aside by capell. 180: moves means collier ms. 183: drives draws collier ms. 184: sure uncertainty sure: uncertainly becket conj. 185: offer d capell. free d ff. favour d pope. proffered collier ms. 187-201: marked as spurious by pope. 189: talk walk and talk anon. conj. goblins ghosts and goblins lettsom conj. owls ouphs theobald. sprites f1. elves sprites f2 f3 f4. elvish sprites rowe ed. 2 . elves and sprites collier ms. 191: or and theobald. 192: and answer st not? f1. om. f2 f3 f4. 193: dromio, thou drone, thou snail theobald. dromio, thou dromio, thou snaile f1. dromio, thou dromio, snaile f2 f3 f4. 194: am i not? ff. am not i? theobald. 203: the eye thy eye f2 f3. 204: laughs ff. laugh pope. 211-215: marked as aside by capell. act iii. scene i. before the house of antipholus of ephesus . enter antipholus of ephesus , dromio of ephesus , angelo, and balthazar. ant. e. good signior angelo, you must excuse us all; my wife is shrewish when i keep not hours: say that i linger d with you at your shop to see the making of her carcanet, and that to-morrow you will bring it home. 5 but here s a villain that would face me down he met me on the mart, and that i beat him, and charged him with a thousand marks in gold, and that i did deny my wife and house. thou drunkard, thou, what didst thou mean by this? 10 dro. e. say what you will, sir, but i know what i know; that you beat me at the mart, i have your hand to show: if the skin were parchment, and the blows you gave were ink, your own handwriting would tell you what i think. ant. e. i think thou art an ass. dro. e. marry, so it doth appear 15 by the wrongs i suffer, and the blows i bear. i should kick, being kick d; and, being at that pass, you would keep from my heels, and beware of an ass. ant. e. you re sad, signior balthazar: pray god our cheer may answer my good will and your good welcome here. 20 bal. i hold your dainties cheap, sir, and your welcome dear. ant. e. o, signior balthazar, either at flesh or fish, a table full of welcome makes scarce one dainty dish. bal. good meat, sir, is common; that every churl affords. ant. e. and welcome more common; for that s nothing but words. 25 bal. small cheer and great welcome makes a merry feast. ant. e. ay to a niggardly host and more sparing guest: but though my cates be mean, take them in good part; better cheer may you have, but not with better heart. but, soft! my door is lock d.--go bid them let us in. 30 dro. e. maud, bridget, marian, cicely, gillian, ginn! dro. s. within mome, malt-horse, capon, coxcomb, idiot, patch! either get thee from the door, or sit down at the hatch. dost thou conjure for wenches, that thou call st for such store, when one is one too many? go get thee from the door, 35 dro. e. what patch is made our porter? my master stays in the street. dro. s. within let him walk from whence he came, lest he catch cold on s feet. ant. e. who talks within there? ho, open the door! dro. s. within right, sir; i ll tell you when, an you ll tell me wherefore. ant. e. wherefore? for my dinner: i have not dined to-day. 40 dro. s. within nor to-day here you must not; come again when you may. ant. e. what art thou that keepest me out from the house i owe? dro. s. within the porter for this time, sir, and my name is dromio. dro. e. o villain, thou hast stolen both mine office and my name! the one ne er got me credit, the other mickle blame. 45 if thou hadst been dromio to-day in my place, thou wouldst have changed thy face for a name, or thy name for an ass. luce. within what a coil is there, dromio? who are those at the gate? dro. e. let my master in, luce. luce. within faith, no; he comes too late; and so tell your master. dro. e. o lord, i must laugh! 50 have at you with a proverb;--shall i set in my staff? luce. within have at you with another; that s, --when? can you tell? dro. s. within if thy name be call d luce, --luce, thou hast answer d him well. ant. e. do you hear, you minion? you ll let us in, i hope? luce. within i thought to have ask d you. dro. s. within and you said no. 55 dro. e. so, come, help:--well struck! there was blow for blow. ant. e. thou baggage, let me in. luce. within can you tell for whose sake? dro. e. master, knock the door hard. luce. within let him knock till it ache. ant. e. you ll cry for this, minion, if i beat the door down. luce. within what needs all that, and a pair of stocks in the town? 60 adr. within who is that at the door that keeps all this noise? dro. s. within by my troth, your town is troubled with unruly boys. ant. e. are you, there, wife? you might have come before. adr. within your wife, sir knave! go get you from the door. dro. e. if you went in pain, master, this knave would go sore. 65 aug. here is neither cheer, sir, nor welcome: we would fain have either. bal. in debating which was best, we shall part with neither. dro. e. they stand at the door, master; bid them welcome hither. ant. e. there is something in the wind, that we cannot get in. dro. e. you would say so, master, if your garments were thin. 70 your cake here is warm within; you stand here in the cold: it would make a man mad as a buck, to be so bought and sold. ant. e. go fetch me something: i ll break ope the gate. dro. s. within break any breaking here, and i ll break your knave s pate. dro. e. a man may break a word with you, sir; and words are but wind; 75 ay, and break it in your face, so he break it not behind. dro. s. within it seems thou want st breaking: out upon thee, hind! dro. e. here s too much out upon thee! i pray thee, let me in. dro. s. within ay, when fowls have no feathers, and fish have no fin. ant. e. well, i ll break in:--go borrow me a crow. 80 dro. e. a crow without feather? master, mean you so? for a fish without a fin, there s a fowl without a feather: if a crow help us in, sirrah, we ll pluck a crow together. ant. e. go get thee gone; fetch me an iron crow. bal. have patience, sir; o, let it not be so! 85 herein you war against your reputation, and draw within the compass of suspect th unviolated honour of your wife. once this,--your long experience of her wisdom, her sober virtue, years, and modesty, 90 plead on her part some cause to you unknown; and doubt not, sir, but she will well excuse why at this time the doors are made against you. be ruled by me: depart in patience, and let us to the tiger all to dinner; 95 and about evening come yourself alone to know the reason of this strange restraint. if by strong hand you offer to break in now in the stirring passage of the day, a vulgar comment will be made of it, 100 and that supposed by the common rout against your yet ungalled estimation, that may with foul intrusion enter in, and dwell upon your grave when you are dead; for slander lives upon succession, 105 for ever housed where it gets possession. ant. e. you have prevail d: i will depart in quiet, and, in despite of mirth, mean to be merry. i know a wench of excellent discourse, pretty and witty; wild, and yet, too, gentle: 110 there will we dine. this woman that i mean, my wife--but, i protest, without desert-- hath oftentimes upbraided me withal: to her will we to dinner. to ang. get you home, and fetch the chain; by this i know tis made: 115 bring it, i pray you, to the porpentine; for there s the house: that chain will i bestow-- be it for nothing but to spite my wife-- upon mine hostess there: good sir, make haste. since mine own doors refuse to entertain me, 120 i ll knock elsewhere, to see if they ll disdain me. ang. i ll meet you at that place some hour hence. ant. e. do so. this jest shall cost me some expense. exeunt. notes: iii, 1. scene i. angelo and balthazar. angelo the goldsmith and balthasar the merchant. ff. 1: all om. pope. 11-14: put in the margin as spurious by pope. 11: say you must say capell. 13: the skin my skin collier ms. 14: own f1. om. f2 f3 f4. you you for certain collier ms. 15: doth dont theobald. 19: you re y are ff. you are capell. 20: here om. pope. 21-29: put in the margin as spurious by pope. 31: ginn om. pope. jen malone. gin collier. jin dyce. 36-60: put in the margin as spurious by pope. 32, sqq.: within rowe. 46: been f1. bid f2 f3 f4. 47: an ass a face collier ms. 48: luce. within rowe. enter luce. ff. there, dromio? who there! dromio, who capell. 54: hope trow theobald. malone supposes a line omitted ending rope . 61: adr. within . rowe. enter adriana. ff. 65-83: put in the margin as spurious by pope. 67: part have part warburton. 71: cake here cake capell. cake there anon. conj. 72: mad f1. as mad f2 f3 f4. as a buck om. capell. 75: you, your f1. 85: so thus pope. 89: once this own this malone conj. this once anon. conj. her rowe. your ff. 91: her rowe. your ff. 93: made barr d pope. 105: slander lasting slander johnson conj. upon upon its own capell conj. 106: housed ... gets collier. hous d ... gets f1. hous d ... once gets f2 f3 f4. hous d where t gets steevens. 108: mirth wrath theobald. 116: porpentine ff. porcupine rowe and passim . 117: will i f1. i will f2 f3 f4. 119: mine f1. my f2 f3 f4. 122: hour f1. hour, sir f2 f3 f4. scene ii. the same. enter luciana and antipholus of syracuse . luc. and may it be that you have quite forgot a husband s office? shall, antipholus, even in the spring of love, thy love-springs rot? shall love, in building, grow so ruinous? if you did wed my sister for her wealth, 5 then for her wealth s sake use her with more kindness: or if you like elsewhere, do it by stealth; muffle your false love with some show of blindness: let not my sister read it in your eye; be not thy tongue thy own shame s orator; 10 look sweet, speak fair, become disloyalty; apparel vice like virtue s harbinger; bear a fair presence, though your heart be tainted; teach sin the carriage of a holy saint; be secret-false: what need she be acquainted? 15 what simple thief brags of his own attaint? tis double wrong, to truant with your bed, and let her read it in thy looks at board: shame hath a bastard fame, well managed; ill deeds are doubled with an evil word. 20 alas, poor women! make us but believe, being compact of credit, that you love us; though others have the arm, show us the sleeve; we in your motion turn, and you may move us. then, gentle brother, get you in again; 25 comfort my sister, cheer her, call her wife: tis holy sport, to be a little vain, when the sweet breath of flattery conquers strife. ant. s. sweet mistress,--what your name is else, i know not, nor by what wonder you do hit of mine,-- 30 less in your knowledge and your grace you show not than our earth s wonder; more than earth divine. teach me, dear creature, how to think and speak; lay open to my earthy-gross conceit, smother d in errors, feeble, shallow, weak, 35 the folded meaning of your words deceit. against my soul s pure truth why labour you to make it wander in an unknown field? are you a god? would you create me new? transform me, then, and to your power i ll yield. 40 but if that i am i, then well i know your weeping sister is no wife of mine, nor to her bed no homage do i owe: far more, far more to you do i decline. o, train me not, sweet mermaid, with thy note, 45 to drown me in thy sister flood of tears: sing, siren, for thyself, and i will dote: spread o er the silver waves thy golden hairs, and as a bed i ll take them, and there lie; and, in that glorious supposition, think 50 he gains by death that hath such means to die: let love, being light, be drowned if she sink! luc. what, are you mad, that you do reason so? ant. s. not mad, but mated; how, i do not know. luc. it is a fault that springeth from your eye. 55 ant. s. for gazing on your beams, fair sun, being by. luc. gaze where you should, and that will clear your sight. ant. s. as good to wink, sweet love, as look on night. luc. why call you me love? call my sister so. ant. s. thy sister s sister. luc. that s my sister. ant. s. no; 60 it is thyself, mine own self s better part, mine eye s clear eye, my dear heart s dearer heart, my food, my fortune, and my sweet hope s aim, my sole earth s heaven, and my heaven s claim. luc. all this my sister is, or else should be. 65 ant. s. call thyself sister, sweet, for i am thee. thee will i love, and with thee lead my life: thou hast no husband yet, nor i no wife. give me thy hand. luc. o, soft, sir! hold you still: i ll fetch my sister, to get her good will. exit. 70 enter dromio of syracuse . ant. s. why, how now, dromio! where runn st thou so fast? dro. s. do you know me, sir? am i dromio? am i your man? am i myself? ant. s. thou art dromio, thou art my man, thou art 75 thyself. dro. s. i am an ass, i am a woman s man, and besides myself. ant. s. what woman s man? and how besides thyself? dro. s. marry, sir, besides myself, i am due to a 80 woman; one that claims me, one that haunts me, one that will have me. ant. s. what claim lays she to thee? dro. s. marry, sir, such claim as you would lay to your horse; and she would have me as a beast: not that, 85 i being a beast, she would have me; but that she, being a very beastly creature, lays claim to me. ant. s. what is she? dro. s. a very reverent body; ay, such a one as a man may not speak of, without he say sir-reverence. i have 90 but lean luck in the match, and yet is she a wondrous fat marriage. ant. s. how dost thou mean a fat marriage? dro. s. marry, sir, she s the kitchen-wench, and all grease; and i know not what use to put her to, but to make 95 a lamp of her, and run from her by her own light. i warrant, her rags, and the tallow in them, will burn a poland winter: if she lives till doomsday, she ll burn a week longer than the whole world. ant. s. what complexion is she of? 100 dro. s. swart, like my shoe, but her face nothing like so clean kept: for why she sweats; a man may go over shoes in the grime of it. ant. s. that s a fault that water will mend. dro. s. no, sir, tis in grain; noah s flood could not 105 do it. ant. s. what s her name? dro. s. nell, sir; but her name and three quarters, that s an ell and three quarters, will not measure her from hip to hip. 110 ant. s. then she bears some breadth? dro. s. no longer from head to foot than from hip to hip: she is spherical, like a globe; i could find out countries in her. ant. s. in what part of her body stands ireland? 115 dro. s. marry, sir, in her buttocks: i found it out by the bogs. ant. s. where scotland? dro. s. i found it by the barrenness; hard in the palm of the hand. 120 ant. s. where france? dro. s. in her forehead; armed and reverted, making war against her heir. ant. s. where england? dro. s. i looked for the chalky cliffs, but i could find 125 no whiteness in them; but i guess it stood in her chin, by the salt rheum that ran between france and it. ant. s. where spain? dro. s. faith, i saw it not; but i felt it hot in her breath. 130 ant. s. where america, the indies? dro. s. oh, sir, upon her nose, all o er embellished with rubies, carbuncles, sapphires, declining their rich aspect to the hot breath of spain; who sent whole armadoes of caracks to be ballast at her nose. 135 ant. s. where stood belgia, the netherlands? dro. s. oh, sir, i did not look so low. to conclude, this drudge, or diviner, laid claim to me; called me dromio; swore i was assured to her; told me what privy marks i had about me, as, the mark of my shoulder, the 140 mole in my neck, the great wart on my left arm, that i, amazed, ran from her as a witch: and, i think, if my breast had not been made of faith, and my heart of steel, she had transform d me to a curtal dog, and made me turn i the wheel. ant. s. go hie thee presently, post to the road:-- 145 an if the wind blow any way from shore, i will not harbour in this town to-night:-- if any bark put forth, come to the mart, where i will walk till thou return to me. if every one knows us, and we know none, 150 tis time, i think, to trudge, pack, and be gone. dro. s. as from a bear a man would run for life, so fly i from her that would be my wife. exit. ant. s. there s none but witches do inhabit here; and therefore tis high time that i were hence. 155 she that doth call me husband, even my soul doth for a wife abhor. but her fair sister, possess d with such a gentle sovereign grace, of such enchanting presence and discourse, hath almost made me traitor to myself: 160 but, lest myself be guilty to self-wrong, i ll stop mine ears against the mermaid s song. enter angelo with the chain. ang. master antipholus,-- ant. s. ay, that s my name. ang. i know it well, sir:--lo, here is the chain. i thought to have ta en you at the porpentine: 165 the chain unfinish d made me stay thus long. ant. s. what is your will that i shall do with this? ang. what please yourself, sir: i have made it for you. ant. s. made it for me, sir! i bespoke it not. ang. not once, nor twice, but twenty times you have. 170 go home with it, and please your wife withal; and soon at supper-time i ll visit you, and then receive my money for the chain. ant. s. i pray you, sir, receive the money now, for fear you ne er see chain nor money more. 175 ang. you are a merry man, sir: fare you well. exit. ant. s. what i should think of this, i cannot tell: but this i think, there s no man is so vain that would refuse so fair an offer d chain. i see a man here needs not live by shifts, 180 when in the streets he meets such golden gifts. i ll to the mart, and there for dromio stay: if any ship put out, then straight away. exit. notes: iii, 2. scene ii. enter luciana f2. enter juliana f1. 1: luc. rowe. julia ff. 2: antipholus antipholis, hate theobald. antipholis, thus id. conj. a nipping hate heath conj. unkind debate collier ms. 4: building theobald. buildings ff. ruinous capell theobald conj. . ruinate ff. 16: attaint rowe. attaine f1 f2 f3. attain f4. 20: are f2 f3 f4. is f1. 21: but theobald. not ff. 26: wife wise f1. 35: shallow f1. shaddow f2 f3. shadow f4. 43: no f1. a f2 f3 f4. 44: decline incline collier ms. 46: sister f1. sister s f2 f3 f4. 49: bed f2 f3 f4. bud f1. bride dyce. them capell edwards conj. . thee ff. 52: she he capell. 57: where pope. when ff. 66: am mean pope. aim capell. 71: scene iii. pope. 93: how what capell. 97: poland lapland warburton. 108: and theobald thirlby conj . is ff. 120: the ff. her rowe. 122: forehead sore head jackson conj. reverted revolted grant white. 123: heir heire f1. haire f2 f3. hair f4. 125: chalky chalkle f1. 135: caracks hanmer. carrects f1. carracts f2 f3 f4. ballast ballasted capell. 138: drudge, or drudge of the devil, this warburton. or diviner this divine one capell conj. 140: mark marke f1. marks f2 f3 f4. 143: faith flint hanmer. 143, 144: printed as prose in ff. as verse first by knight. 144: curtal f4. curtull f1. curtall f2 f3. cur-tail hanmer. 146: an capell. and ff. 150: knows us know us johnson. 154: scene iv. pope. 161: to of pope. 164: here is pope. here s ff. 177: ant. s. ant. f1 f4. dro. f2 f3. 181: streets street capell conj. act iv. scene i. a public place. enter second merchant , angelo, and an officer . sec. mer. you know since pentecost the sum is due, and since i have not much importuned you; nor now i had not, but that i am bound to persia, and want guilders for my voyage: therefore make present satisfaction, 5 or i ll attach you by this officer. ang. even just the sum that i do owe to you is growing to me by antipholus; and in the instant that i met with you he had of me a chain: at five o clock 10 i shall receive the money for the same. pleaseth you walk with me down to his house, i will discharge my bond, and thank you too. enter antipholus of ephesus and dromio of ephesus from the courtezan s. off. that labour may you save: see where he comes. ant. e. while i go to the goldsmith s house, go thou 15 and buy a rope s end: that will i bestow among my wife and her confederates, for locking me out of my doors by day.-- but, soft! i see the goldsmith. get thee gone; buy thou a rope, and bring it home to me. 20 dro. e. i buy a thousand pound a year: i buy a rope. exit. ant. e. a man is well holp up that trusts to you: i promised your presence and the chain; but neither chain nor goldsmith came to me. belike you thought our love would last too long, 25 if it were chain d together, and therefore came not. ang. saving your merry humour, here s the note how much your chain weighs to the utmost carat, the fineness of the gold, and chargeful fashion, which doth amount to three odd ducats more 30 than i stand debted to this gentleman: i pray you, see him presently discharged, for he is bound to sea, and stays but for it. ant. e. i am not furnish d with the present money; besides, i have some business in the town. 35 good signior, take the stranger to my house, and with you take the chain, and bid my wife disburse the sum on the receipt thereof: perchance i will be there as soon as you. ang. then you will bring the chain to her yourself? 40 ant. e. no; bear it with you, lest i come not time enough. ang. well, sir, i will. have you the chain about you? ant. e. an if i have not, sir, i hope you have; or else you may return without your money. ang. nay, come, i pray you, sir, give me the chain: 45 both wind and tide stays for this gentleman, and i, to blame, have held him here too long. ant. e. good lord! you use this dalliance to excuse your breach of promise to the porpentine. i should have chid you for not bringing it, 50 but, like a shrew, you first begin to brawl. sec. mer. the hour steals on; i pray you, sir, dispatch. ang. you hear how he importunes me;--the chain! ant. e. why, give it to my wife, and fetch your money. ang. come, come, you know i gave it you even now. 55 either send the chain, or send me by some token. ant. e. fie, now you run this humour out of breath. come, where s the chain? i pray you, let me see it. sec. mer. my business cannot brook this dalliance. good sir, say whether you ll answer me or no: 60 if not, i ll leave him to the officer. ant. e. i answer you! what should i answer you? ang. the money that you owe me for the chain. ant. e. i owe you none till i receive the chain. ang. you know i gave it you half an hour since. 65 ant. e. you gave me none: you wrong me much to say so. ang. you wrong me more, sir, in denying it: consider how it stands upon my credit. sec. mer. well, officer, arrest him at my suit. off. i do; and charge you in the duke s name to obey me. 70 ang. this touches me in reputation. either consent to pay this sum for me, or i attach you by this officer. ant. e. consent to pay thee that i never had! arrest me, foolish fellow, if thou darest. 75 ang. here is thy fee; arrest him, officer. i would not spare my brother in this case, if he should scorn me so apparently. off. i do arrest you, sir: you hear the suit. ant. e. i do obey thee till i give thee bail. 80 but, sirrah, you shall buy this sport as dear as all the metal in your shop will answer. ang. sir, sir, i shall have law in ephesus, to your notorious shame; i doubt it not. enter dromio of syracuse , from the bay. dro. s. master, there is a bark of epidamnum 85 that stays but till her owner comes aboard, and then, sir, she bears away. our fraughtage, sir, i have convey d aboard; and i have bought the oil, the balsamum, and aqua-vit . the ship is in her trim; the merry wind 90 blows fair from land: they stay for nought at all but for their owner, master, and yourself. ant. e. how now! a madman! why, thou peevish sheep, what ship of epidamnum stays for me? dro. s. a ship you sent me to, to hire waftage. 95 ant. e. thou drunken slave, i sent thee for a rope, and told thee to what purpose and what end. dro. s. you sent me for a rope s end as soon: you sent me to the bay, sir, for a bark. ant. e. i will debate this matter at more leisure, 100 and teach your ears to list me with more heed. to adriana, villain, hie thee straight: give her this key, and tell her, in the desk that s cover d o er with turkish tapestry there is a purse of ducats; let her send it: 105 tell her i am arrested in the street, and that shall bail me: hie thee, slave, be gone! on, officer, to prison till it come. exeunt sec. merchant, angelo, officer, and ant. e. dro. s. to adriana! that is where we dined, where dowsabel did claim me for her husband: 110 she is too big, i hope, for me to compass. thither i must, although against my will, for servants must their masters minds fulfil. exit. notes: iv, 1. 8: growing owing pope. 12: pleaseth you ff. please you but pope. please it you anon. conj. 14: may you f1 f2 f3. you may f4. 17: her rowe. their ff. these collier ms. 26: and om. pope. 28: carat pope. charect f1. raccat f2 f3 f4. caract collier. 29: chargeful charge for anon. conj. 41: time enough in time hanmer. 46: stays stay pope. this f1. the f2 f3 f4. 47: to blame f3. too blame f1 f2 f4. 53: the chain! dyce. the chain, ff. the chain-- johnson. 56: either or pope. me by by me heath conj. 60: whether whe r ff. where rowe. if pope. 62: what f1. why f2 f3 f4. 67: more f1. om. f2 f3 f4. 70: printed as verse by capell. 73: this f1. the f2 f3 f4. 74: thee f1. om. f2 f3 f4. for rowe. 85: scene ii. pope. there is pope. there s ff. 87: and then, sir, f1. then, sir, f2 f3 f4. and then capell. she om. steevens. 88: bought f1. brought f2 f3 f4. 98: you sent me a rope! you sent me capell. you sent me, sir, steevens. scene ii. the house of antipholus of ephesus . enter adriana and luciana. adr. ah, luciana, did he tempt thee so? mightst thou perceive austerely in his eye that he did plead in earnest? yea or no? look d he or red or pale, or sad or merrily? what observation madest thou, in this case, 5 of his heart s meteors tilting in his face? luc. first he denied you had in him no right. adr. he meant he did me none; the more my spite. luc. then swore he that he was a stranger here. adr. and true he swore, though yet forsworn he were. 10 luc. then pleaded i for you. adr. and what said he? luc. that love i begg d for you he begg d of me. adr. with what persuasion did he tempt thy love? luc. with words that in an honest suit might move. first he did praise my beauty, then my speech. 15 adr. didst speak him fair? luc. have patience, i beseech. adr. i cannot, nor i will not, hold me still; my tongue, though not my heart, shall have his will. he is deformed, crooked, old, and sere, ill-faced, worse bodied, shapeless everywhere; 20 vicious, ungentle, foolish, blunt, unkind; stigmatical in making, worse in mind. luc. who would be jealous, then, of such a one? no evil lost is wail d when it is gone. adr. ah, but i think him better than i say, 25 and yet would herein others eyes were worse. far from her nest the lapwing cries away: my heart prays for him, though my tongue do curse. enter dromio of syracuse . dro. s. here! go; the desk, the purse! sweet, now, make haste. luc. how hast thou lost thy breath? dro. s. by running fast. 30 adr. where is thy master, dromio? is he well? dro. s. no, he s in tartar limbo, worse than hell. a devil in an everlasting garment hath him; one whose hard heart is button d up with steel; a fiend, a fury, pitiless and rough; 35 a wolf, nay, worse; a fellow all in buff; a back-friend, a shoulder-clapper, one that countermands the passages of alleys, creeks, and narrow lands; a hound that runs counter, and yet draws dry-foot well; one that, before the judgment, carries poor souls to hell. 40 adr. why, man, what is the matter? dro. s. i do not know the matter: he is rested on the case. adr. what, is he arrested? tell me at whose suit. dro. s. i know not at whose suit he is arrested well; but he s in a suit of buff which rested him, that can i tell. 45 will you send him, mistress, redemption, the money in his desk? adr. go fetch it, sister. exit luciana. this i wonder at, that he, unknown to me, should be in debt. tell me, was he arrested on a band? dro. s. not on a band, but on a stronger thing; 50 a chain, a chain! do you not hear it ring? adr. what, the chain? dro. s. no, no, the bell: tis time that i were gone: it was two ere i left him, and now the clock strikes one. adr. the hours come back! that did i never hear. 55 dro. s. o, yes; if any hour meet a sergeant, a turns back for very fear. adr. as if time were in debt! how fondly dost thou reason! dro. s. time is a very bankrupt, and owes more than he s worth to season. nay, he s a thief too: have you not heard men say, that time comes stealing on by night and day? 60 if time be in debt and theft, and a sergeant in the way, hath he not reason to turn back an hour in a day? re-enter luciana with a purse. adr. go, dromio; there s the money, bear it straight; and bring thy master home immediately. come, sister: i am press d down with conceit,-- 65 conceit, my comfort and my injury. exeunt. notes: iv, 2. scene ii. scene iii. pope. 2: austerely assuredly heath conj. 4: or sad or sad capell. merrily merry collier ms. 6: of f2 f3 f4. oh, f1. 7: you you; you capell. no a rowe. 18: his it s rowe. 22: in mind f1. the mind f2 f3 f4. 26: herein he in hanmer. 29: scene iv. pope. sweet swift collier ms. 33: hath him hath him fell collier ms. hath him by the heel spedding conj. 34: one f2 f3 f4. on f1. after this line collier ms. inserts: who knows no touch of mercy, cannot feel . 35: fury pope, ed. 2 theobald . fairie ff. 37: countermands commands theobald. 38: of and collier ms. alleys allies ff. lands lanes grey conj. see note v . 37, 38: countermands the ... lands his court maintains i the ... lanes becket conj. 42, 45: rested theobald. rested ff. 43: tell well, tell edd. conj. 44: arrested well; f1. arrested, well; f2 f3. arrested: well: f4. 45: but he s f3 f4. but is f1 f2. but a s edd. conj. can i f1 f2. i can f3 f4. 46: mistress, redemption hanmer. mistris redemption f1 f2 f3. mistris redemption f4. see note vi . 48: that thus f1. 49, 50: band bond rowe. 50: but on but pope. 54-62: put in the margin as spurious by pope. 55: hear here f1. 56: a turns it turns pope. he turns capell. 58: bankrupt bankrout ff. to season om. pope. 61: time rowe. i ff. he malone. a staunton. 62: an hour any hour collier ms. scene iii. a public place. enter antipholus of syracuse . ant. s. there s not a man i meet but doth salute me as if i were their well-acquainted friend; and every one doth call me by my name. some tender money to me; some invite me; some other give me thanks for kindnesses; 5 some offer me commodities to buy;-- even now a tailor call d me in his shop, and show d me silks that he had bought for me, and therewithal took measure of my body. sure, these are but imaginary wiles, 10 and lapland sorcerers inhabit here. enter dromio of syracuse . dro. s. master, here s the gold you sent me for.-- what, have you got the picture of old adam new-apparelled? ant. s. what gold is this? what adam dost thou mean? dro. s. not that adam that kept the paradise, but that 15 adam that keeps the prison: he that goes in the calf s skin that was killed for the prodigal; he that came behind you, sir, like an evil angel, and bid you forsake your liberty. ant. s. i understand thee not. dro. s. no? why, tis a plain case: he that went, like a 20 base-viol, in a case of leather; the man, sir, that, when gentlemen are tired, gives them a sob, and rests them; he, sir, that takes pity on decayed men, and gives them suits of durance; he that sets up his rest to do more exploits with his mace than a morris-pike. 25 ant. s. what, thou meanest an officer? dro. s. ay, sir, the sergeant of the band; he that brings any man to answer it that breaks his band; one that thinks a man always going to bed, and says, god give you good rest! 30 ant. s. well, sir, there rest in your foolery. is there any ship puts forth to-night? may we be gone? dro. s. why, sir, i brought you word an hour since, that the bark expedition put forth to-night; and then were you hindered by the sergeant, to tarry for the hoy delay. 35 here are the angels that you sent for to deliver you. ant. s. the fellow is distract, and so am i; and here we wander in illusions: some blessed power deliver us from hence! enter a courtezan . cour. well met, well met, master antipholus. 40 i see, sir, you have found the goldsmith now: is that the chain you promised me to-day? ant. s. satan, avoid! i charge thee, tempt me not. dro. s. master, is this mistress satan? ant. s. it is the devil. 45 dro. s. nay, she is worse, she is the devil s dam; and here she comes in the habit of a light wench: and thereof comes that the wenches say, god damn me; that s as much to say, god make me a light wench. it is written, they appear to men like angels of light: light is an effect of 50 fire, and fire will burn; ergo, light wenches will burn. come not near her. cour. your man and you are marvellous merry, sir. will you go with me? we ll mend our dinner here? dro. s. master, if you do, expect spoon-meat; or bespeak 55 a long spoon. ant. s. why, dromio? dro. s. marry, he must have a long spoon that must eat with the devil. ant. s. avoid then, fiend! what tell st thou me of supping? 60 thou art, as you are all, a sorceress: i conjure thee to leave me and be gone. cour. give me the ring of mine you had at dinner, or, for my diamond, the chain you promised, and i ll be gone, sir, and not trouble you. 65 dro. s. some devils ask but the parings of one s nail, a rush, a hair, a drop of blood, a pin, a nut, a cherry-stone; but she, more covetous, would have a chain. master, be wise: an if you give it her, 70 the devil will shake her chain, and fright us with it. cour. i pray you, sir, my ring, or else the chain: i hope you do not mean to cheat me so. ant. s. avaunt, thou witch! --come, dromio, let us go. dro. s. fly pride, says the peacock: mistress, that you know. exeunt ant. s. and dro. s. 75 cour. now, out of doubt antipholus is mad, else would he never so demean himself. a ring he hath of mine worth forty ducats, and for the same he promised me a chain: both one and other he denies me now. 80 the reason that i gather he is mad,-- besides this present instance of his rage,-- is a mad tale he told to-day at dinner, of his own doors being shut against his entrance. belike his wife, acquainted with his fits, 85 on purpose shut the doors against his way. my way is now to his home to his house, and tell his wife that, being lunatic, he rush d into my house, and took perforce my ring away. this course i fittest choose; 90 for forty ducats is too much to lose. exit. notes: iv, 3. scene iii. scene v. pope. 13: what, have pope. what have ff. got got rid of theobald. not anon. conj. 16: calf s skin calves-skin ff. 22: sob fob rowe. bob hanmer. sop dyce conj. stop grant white. rests warburton. rests ff. 25: morris moris ff. maurice hanmer warburton . 28: band bond rowe. 29: says capell. saies f1. saieth f2. saith f3 f4. 32: ship f2 f3 f4. ships f1. 34: put puts pope. 40: scene vi. pope. 44-62: put in the margin as spurious by pope. 47-49: and ... wench. marked as spurious by capell, ms. 48, 49: as much as much as pope. 54: me? ... here? me, ... here? ff. me? ... here. steevens. 55: if you do, expect f2 f3 f4. if do expect f1. or om. rowe. so capell. either stay away, or malone conj. and ritson conj. oh! anon. conj. 60: then f1 f2 f3. thou f4. thee dyce. 61: are all all are boswell. 66-71: printed as prose by ff, as verse by capell, ending the third line at covetous . 75: put in the margin as spurious by pope. 76: scene vii. pope. 84: doors door johnson. scene iv. a street. enter antipholus of ephesus and the officer . ant. e. fear me not, man; i will not break away: i ll give thee, ere i leave thee, so much money, to warrant thee, as i am rested for. my wife is in a wayward mood to-day, and will not lightly trust the messenger. 5 that i should be attach d in ephesus, i tell you, twill sound harshly in her ears. enter dromio of ephesus with a ropes-end. here comes my man; i think he brings the money. how now, sir! have you that i sent you for? dro. e. here s that, i warrant you, will pay them all. 10 ant. e. but where s the money? dro. e. why, sir, i gave the money for the rope. ant. e. five hundred ducats, villain, for a rope? dro. e. i ll serve you, sir, five hundred at the rate. ant. e. to what end did i bid thee hie thee home? 15 dro. e. to a rope s-end, sir; and to that end am i returned. ant. e. and to that end, sir, i will welcome you. beating him. off. good sir, be patient. dro. e. nay, tis for me to be patient; i am in adversity. 20 off. good, now, hold thy tongue. dro. e. nay, rather persuade him to hold his hands. ant. e. thou whoreson, senseless villain! dro. e. i would i were senseless, sir, that i might not feel your blows. 25 ant. e. thou art sensible in nothing but blows, and so is an ass. dro. e. i am an ass, indeed; you may prove it by my long ears. i have served him from the hour of my nativity to this instant, and have nothing at his hands for my service 30 but blows. when i am cold, he heats me with beating; when i am warm, he cools me with beating: i am waked with it when i sleep; raised with it when i sit; driven out of doors with it when i go from home; welcomed home with it when i return: nay, i bear it on my shoulders, as 35 a beggar wont her brat; and, i think, when he hath lamed me, i shall beg with it from door to door. ant. e. come, go along; my wife is coming yonder. enter adriana, luciana, the courtezan , and pinch. dro. e. mistress, respice finem, respect your end; or rather, the prophecy like the parrot, beware the rope s-end. 40 ant. e. wilt thou still talk? beating him. cour. how say you now? is not your husband mad? adr. his incivility confirms no less. good doctor pinch, you are a conjurer; establish him in his true sense again, 45 and i will please you what you will demand. luc. alas, how fiery and how sharp he looks! cour. mark how he trembles in his ecstasy! pinch. give me your hand, and let me feel your pulse. ant. e. there is my hand, and let it feel your ear. 50 striking him. pinch. i charge thee, satan, housed within this man, to yield possession to my holy prayers, and to thy state of darkness his thee straight: i conjure thee by all the saints in heaven! ant. e. peace, doting wizard, peace! i am not mad. 55 adr. o, that thou wert not, poor distressed soul! ant. e. you minion, you, are these your customers? did this companion with the saffron face revel and feast it at my house to-day, whilst upon me the guilty doors were shut, 60 and i denied to enter in my house? adr. o husband, god doth know you dined at home; where would you had remain d until this time, free from these slanders and this open shame! ant. e. dined at home!--thou villain, what sayest thou? 65 dro. e. sir, sooth to say, you did not dine at home. ant. e. were not my doors lock d up, and i shut out? dro. e. perdie, your doors were lock d, and you shut out. ant. e. and did not she herself revile me there? dro. e. sans fable, she herself reviled you there. 70 ant. e. did not her kitchen-maid rail, taunt, and scorn me? dro. e. certes, she did; the kitchen-vestal scorn d you. ant. e. and did not i in rage depart from thence? dro. e. in verity you did; my bones bear witness, that since have felt the vigour of his rage. 75 adr. is t good to soothe him in these contraries? pinch. it is no shame: the fellow finds his vein, and, yielding to him, humours well his frenzy. ant. e. thou hast suborn d the goldsmith to arrest me. adr. alas, i sent you money to redeem you, 80 by dromio here, who came in haste for it. dro. e. money by me! heart and good-will you might; but surely, master, not a rag of money. ant. e. went st not thou to her for a purse of ducats? adr. he came to me, and i deliver d it. 85 luc. and i am witness with her that she did. dro. e. god and the rope-maker bear me witness that i was sent for nothing but a rope! pinch. mistress, both man and master is possess d; i know it by their pale and deadly looks: 90 they must be bound, and laid in some dark room. ant. e. say, wherefore didst them lock me forth to-day? and why dost thou deny the bag of gold? adr. i did not, gentle husband, lock thee forth. dro. e. and, gentle master, i received no gold; 95 but i confess, sir, that we were lock d out. adr. dissembling villain, them speak st false in both. ant. e. dissembling harlot, them art false in all, and art confederate with a damned pack to make a loathsome abject scorn of me: 100 but with these nails i ll pluck out these false eyes, that would behold in me this shameful sport. enter three or four, and offer to bind him. he strives. adr. o, bind him, bind him! let him not come near me. pinch. more company! the fiend is strong within him. luc. ay me, poor man, how pale and wan he looks! 105 ant. e. what, will you murder me? thou gaoler, thou, i am thy prisoner: wilt thou suffer them to make a rescue? off. masters, let him go: he is my prisoner, and you shall not have him. pinch. go bind this man, for he is frantic too. 110 they offer to bind dro. e. adr. what wilt thou do, thou peevish officer? hast thou delight to see a wretched man do outrage and displeasure to himself? off. he is my prisoner: if i let him go, the debt he owes will be required of me. 115 adr. i will discharge thee ere i go from thee: bear me forthwith unto his creditor, and, knowing how the debt grows, i will pay it. good master doctor, see him safe convey d home to my house. o most unhappy day! 120 ant. e. o most unhappy strumpet! dro. e. master, i am here entered in bond for you. ant. e. out on thee, villain! wherefore dost thou mad me? dro. e. will you be bound for nothing? be mad, good master: cry, the devil! 125 luc. god help, poor souls, how idly do they talk! adr. go bear him hence. sister, go you with me. exeunt all but adriana, luciana, officer and courtezan. say now; whose suit is he arrested at? off. one angelo, a goldsmith: do you know him? adr. i know the man. what is the sum he owes? 130 off. two hundred ducats. adr. say, how grows it due? off. due for a chain your husband had of him. adr. he did bespeak a chain for me, but had it not. cour. when as your husband, all in rage, to-day came to my house, and took away my ring,-- 135 the ring i saw upon his finger now,-- straight after did i meet him with a chain. adr. it may be so, but i did never see it. come, gaoler, bring me where the goldsmith is: i long to know the truth hereof at large. 140 enter antipholus of syracuse with his rapier drawn, and dromio of syracuse . luc. god, for thy mercy! they are loose again. adr. and come with naked swords. let s call more help to have them bound again. off. away! they ll kill us. exeunt all but ant. s. and dro. s. ant. s. i see these witches are afraid of swords. 145 dro. s. she that would be your wife now ran from you. ant. s. come to the centaur; fetch our stuff from thence: i long that we were safe and sound aboard. dro. s. faith, stay here this night; they will surely do us no harm: you saw they speak us fair, give us gold: 150 methinks they are such a gentle nation, that, but for the mountain of mad flesh that claims marriage of me, i could find in my heart to stay here still, and turn witch. ant. s. i will not stay to-night for all the town; therefore away, to get our stuff aboard. exeunt. 155 notes: iv, 4. scene iv. scene viii. pope. and the officer. capell. with a jailor. ff. 5, 6: messenger. that ... ephesus, rowe. messenger, that ... ephesus, f1 f2 f3. messenger; that ... ephesus, f4. messenger, that ... ephesus: capell. 14: dro. e. off. edd. conj. 15: hie high f2. 17: returned come anon. conj. 18: beating him. capell. beats dro. pope. om. ff. 29: ears see note vii . 38: scene ix. pope. the stage direction enter ... pinch, precedes line 38 in ff, and all editions till dyce s. pinch. a schoolmaster, call d pinch. ff. 40: the prophecy the prophesie f1 f2 f3 f4. prophesie rowe. to prophesy dyce. 39-41: or rather ... talk? or rather, prospice funem, beware the rope s end. ant. e. wilt thou still talk like the parrot? edd. conj. 41: beating him. beats dro. ff. 46: what in what hanmer. 65: dined din d i theobald. i din d capell. 72: certes pope. certis ff. 74: bear beares f1. 75: vigour rigour collier ms. his your pope. 83: master mistress dyce conj. rag bag becket conj. 84: not thou thou not capell. 87: bear do bear pope. now bear collier ms. 89: is are rowe. 101: these false ff. those false rowe. 102: flying at his wife. capell. enter ... the stage direction is transferred by dyce to follow 105. 106: me? thou ... thou, rowe. me, thou ... thou? ff. 110: they ... dro. e. edd. om. ff. 117: they bind ant. and dro. rowe. 124: nothing? nothing thus? hanmer, reading as verse. 126: help, poor theobald. help poor ff. idly pope. idlely ff. 127: go stay pope. exeunt all but ... exeunt. manet ... ff after line 128 . 129: scene x. pope. 133: for me om. hanmer. 141: scene xi. pope. 143: runne all out. ff. 144: exeunt ... exeunt omnes, as fast as may be, frighted. ff. 150: saw ... speak us ... give f1. saw ... spake us ... give f2 f3 f4. saw ... spake to us ... give rowe. saw ... spake us ... gave pope. see ... speak us ... give capell. act v. scene i. a street before a priory. enter second merchant and angelo. ang. i am sorry, sir, that i have hinder d you; but, i protest, he had the chain of me, though most dishonestly he doth deny it. sec. mer. how is the man esteem d here in the city? ang. of very reverent reputation, sir, 5 of credit infinite, highly beloved, second to none that lives here in the city: his word might bear my wealth at any time. sec. mer. speak softly: yonder, as i think, he walks. enter antipholus of syracuse and dromio of syracuse . ang. tis so; and that self chain about his neck, 10 which he forswore most monstrously to have. good sir, draw near to me, i ll speak to him; signior antipholus, i wonder much that you would put me to this shame and trouble; and, not without some scandal to yourself, 15 with circumstance and oaths so to deny this chain which now you wear so openly: beside the charge, the shame, imprisonment, you have done wrong to this my honest friend; who, but for staying on our controversy, 20 had hoisted sail and put to sea to-day: this chain you had of me; can you deny it? ant. s. i think i had; i never did deny it. sec. mer. yes, that you did, sir, and forswore it too. ant. s. who heard me to deny it or forswear it? 25 sec. mer. these ears of mine, thou know st, did hear thee. fie on thee, wretch! tis pity that thou livest to walk where any honest men resort. ant. s. thou art a villain to impeach me thus: i ll prove mine honour and mine honesty 30 against thee presently, if thou darest stand. sec. mer. i dare, and do defy thee for a villain. they draw. enter adriana, luciana, the courtezan , and others. adr. hold, hurt him not, for god s sake! he is mad. some get within him, take his sword away: bind dromio too, and bear them to my house. 35 dro. s. run, master, run; for god s sake, take a house! this is some priory.--in, or we are spoil d! exeunt ant. s. and dro. s. to the priory. enter the lady abbess . abb. be quiet, people. wherefore throng you hither? adr. to fetch my poor distracted husband hence. let us come in, that we may bind him fast, 40 and bear him home for his recovery. ang. i knew he was not in his perfect wits. sec. mer. i am sorry now that i did draw on him. abb. how long hath this possession held the man? adr. this week he hath been heavy, sour, sad, 45 and much different from the man he was; but till this afternoon his passion ne er brake into extremity of rage. abb. hath he not lost much wealth by wreck of sea? buried some dear friend? hath not else his eye 50 stray d his affection in unlawful love? a sin prevailing much in youthful men, who give their eyes the liberty of gazing. which of these sorrows is he subject to? adr. to none of these, except it be the last; 55 namely, some love that drew him oft from home. abb. you should for that have reprehended him. adr. why, so i did. abb. ay, but not rough enough. adr. as roughly as my modesty would let me. abb. haply, in private. adr. and in assemblies too. 60 abb. ay, but not enough. adr. it was the copy of our conference: in bed, he slept not for my urging it; at board, he fed not for my urging it; alone, it was the subject of my theme; 65 in company i often glanced it; still did i tell him it was vile and bad. abb. and thereof came it that the man was mad:-- the venom clamours of a jealous woman, poisons more deadly than a mad dog s tooth. 70 it seems his sleeps were hinder d by thy railing: and thereof comes it that his head is light. thou say st his meat was sauced with thy upbraidings: unquiet meals make ill digestions; thereof the raging fire of fever bred; 75 and what s a fever but a fit of madness? thou say st his sports were hinder d by thy brawls: sweet recreation barr d, what doth ensue but moody and dull melancholy, kinsman to grim and comfortless despair; 80 and at her heels a huge infectious troop of pale distemperatures and foes to life? in food, in sport, and life-preserving rest to be disturb d, would mad or man or beast: the consequence is, then, thy jealous fits 85 have scared thy husband from the use of wits. luc. she never reprehended him but mildly, when he demean d himself rough, rude, and wildly. why bear you these rebukes, and answer not? adr. she did betray me to my own reproof. 90 good people, enter, and lay hold on him. abb. no, not a creature enters in my house. adr. then let your servants bring my husband forth. abb. neither: he took this place for sanctuary, and it shall privilege him from your hands 95 till i have brought him to his wits again, or lose my labour in assaying it. adr. i will attend my husband, be his nurse, diet his sickness, for it is my office, and will have no attorney but myself; 100 and therefore let me have him home with me. abb. be patient; for i will not let him stir till i have used the approved means i have, with wholesome syrups, drugs and holy prayers, to make of him a formal man again: 105 it is a branch and parcel of mine oath, a charitable duty of my order. therefore depart, and leave him here with me. adr. i will not hence, and leave my husband here: and ill it doth beseem your holiness 110 to separate the husband and the wife. abb. be quiet, and depart: thou shalt not have him. exit. luc. complain unto the duke of this indignity. adr. come, go: i will fall prostrate at his feet, and never rise until my tears and prayers 115 have won his grace to come in person hither, and take perforce my husband from the abbess. sec. mer. by this, i think, the dial points at five: anon, i m sure, the duke himself in person comes this way to the melancholy vale, 120 the place of death and sorry execution, behind the ditches of the abbey here. ang. upon what cause? sec. mer. to see a reverend syracusian merchant, who put unluckily into this bay 125 against the laws and statutes of this town, beheaded publicly for his offence. ang. see where they come: we will behold his death. luc. kneel to the duke before he pass the abbey. enter duke, attended; geon bareheaded; with the headsman and other officers . duke. yet once again proclaim it publicly, 130 if any friend will pay the sum for him, he shall not die; so much we tender him. adr. justice, most sacred duke, against the abbess! duke. she is a virtuous and a reverend lady: it cannot be that she hath done thee wrong. 135 adr. may it please your grace, antipholus my husband,-- whom i made lord of me and all i had, at your important letters,--this ill day a most outrageous fit of madness took him; that desperately he hurried through the street,-- 140 with him his bondman, all as mad as he,-- doing displeasure to the citizens by rushing in their houses, bearing thence rings, jewels, any thing his rage did like. once did i get him bound, and sent him home, 145 whilst to take order for the wrongs i went, that here and there his fury had committed. anon, i wot not by what strong escape, he broke from those that had the guard of him; and with his mad attendant and himself, 150 each one with ireful passion, with drawn swords, met us again, and, madly bent on us, chased us away; till, raising of more aid, we came again to bind them. then they fled into this abbey, whither we pursued them; 155 and here the abbess shuts the gates on us, and will not suffer us to fetch him out, nor send him forth, that we may bear him hence. therefore, most gracious duke, with thy command let him be brought forth, and borne hence for help. 160 duke. long since thy husband served me in my wars; and i to thee engaged a prince s word, when thou didst make him master of thy bed, to do him all the grace and good i could. go, some of you, knock at the abbey-gate, 165 and bid the lady abbess come to me. i will determine this before i stir. enter a servant . serv. o mistress, mistress, shift and save yourself! my master and his man are both broke loose, beaten the maids a-row, and bound the doctor, 170 whose beard they have singed off with brands of fire; and ever, as it blazed, they threw on him great pails of puddled mire to quench the hair: my master preaches patience to him, and the while his man with scissors nicks him like a fool; 175 and sure, unless you send some present help, between them they will kill the conjurer. adr. peace, fool! thy master and his man are here; and that is false thou dost report to us. serv. mistress, upon my life, i tell you true; 180 i have not breathed almost since i did see it. he cries for you, and vows, if he can take you, to scorch your face and to disfigure you. cry within. hark, hark! i hear him, mistress: fly, be gone! duke. come, stand by me; fear nothing. guard with halberds! 185 adr. ay me, it is my husband! witness you, that he is borne about invisible: even now we housed him in the abbey here; and now he s there, past thought of human reason. enter antipholus of ephesus and dromio of ephesus . ant. e. justice, most gracious duke, o, grant me justice! 190 even for the service that long since i did thee, when i bestrid thee in the wars, and took deep scars to save thy life; even for the blood that then i lost for thee, now grant me justice. ge. unless the fear of death doth make me dote, 195 i see my son antipholus, and dromio. ant. e. justice, sweet prince, against that woman there! she whom thou gavest to me to be my wife, that hath abused and dishonour d me even in the strength and height of injury: 200 beyond imagination is the wrong that she this day hath shameless thrown on me. duke. discover how, and thou shalt find me just. ant. e. this day, great duke, she shut the doors upon me, while she with harlots feasted in my house. 205 duke. a grievous fault! say, woman, didst thou so? adr. no, my good lord: myself, he and my sister to-day did dine together. so befal my soul as this is false he burdens me withal! luc. ne er may i look on day, nor sleep on night, 210 but she tells to your highness simple truth! ang. o perjured woman! they are both forsworn: in this the madman justly chargeth them. ant. e. my liege, i am advised what i say; neither disturbed with the effect of wine, 215 nor heady-rash, provoked with raging ire, albeit my wrongs might make one wiser mad. this woman lock d me out this day from dinner: that goldsmith there, were he not pack d with her, could witness it, for he was with me then; 220 who parted with me to go fetch a chain, promising to bring it to the porpentine, where balthazar and i did dine together. our dinner done, and he not coming thither, i went to seek him: in the street i met him, 225 and in his company that gentleman. there did this perjured goldsmith swear me down that i this day of him received the chain, which, god he knows, i saw not: for the which he did arrest me with an officer. 230 i did obey; and sent my peasant home for certain ducats: he with none return d. then fairly i bespoke the officer to go in person with me to my house. by the way we met my wife, her sister, and a rabble more 235 of vile confederates. along with them they brought one pinch, a hungry lean-faced villain, a mere anatomy, a mountebank, a threadbare juggler, and a fortune-teller, a needy, hollow-eyed, sharp-looking wretch, 240 a living-dead man: this pernicious slave, forsooth, took on him as a conjurer; and, gazing in mine eyes, feeling my pulse, and with no face, as twere, outfacing me, cries out, i was possess d. then all together 245 they fell upon me, bound me, bore me thence, and in a dark and dankish vault at home there left me and my man, both bound together; till, gnawing with my teeth my bonds in sunder, i gain d my freedom, and immediately 250 ran hither to your grace; whom i beseech to give me ample satisfaction for these deep shames and great indignities. ang. my lord, in truth, thus far i witness with him, that he dined not at home, but was lock d out. 255 duke. but had he such a chain of thee or no? ang. he had, my lord: and when he ran in here, these people saw the chain about his neck. sec. mer. besides, i will be sworn these ears of mine heard you confess you had the chain of him, 260 after you first forswore it on the mart: and thereupon i drew my sword on you; and then you fled into this abbey here, from whence, i think, you are come by miracle. ant. e. i never came within these abbey-walls; 265 nor ever didst thou draw thy sword on me: i never saw the chain, so help me heaven: and this is false you burden me withal! duke. why, what an intricate impeach is this! i think you all have drunk of circe s cup. 270 if here you housed him, here he would have been; if he were mad, he would not plead so coldly: you say he dined at home; the goldsmith here denies that saying. sirrah, what say you? dro. e. sir, he dined with her there, at the porpentine. 275 cour. he did; and from my finger snatch d that ring. ant. e. tis true, my liege; this ring i had of her. duke. saw st thou him enter at the abbey here? cour. as sure, my liege, as i do see your grace. duke. why, this is strange. go call the abbess hither. 280 i think you are all mated, or stark mad. exit one to the abbess. ge. most mighty duke, vouchsafe me speak a word: haply i see a friend will save my life, and pay the sum that may deliver me. duke. speak freely, syracusian, what thou wilt. 285 ge. is not your name, sir, call d antipholus? and is not that your bondman, dromio? dro. e. within this hour i was his bondman, sir, but he, i thank him, gnaw d in two my cords: now am i dromio, and his man unbound. 290 ge. i am sure you both of you remember me. dro. e. ourselves we do remember, sir, by you; for lately we were bound, as you are now. you are not pinch s patient, are you, sir? ge. why look you strange on me? you know me well. 295 ant. e. i never saw you in my life till now. ge. o, grief hath changed me since you saw me last, and careful hours with time s deformed hand have written strange defeatures in my face: but tell me yet, dost thou not know my voice? 300 ant. e. neither. ge. dromio, nor thou? dro. e. no, trust me, sir, nor i. ge. i am sure thou dost. dro. e. ay, sir, but i am sure i do not; and whatsoever a man denies, you are now bound to believe him. 305 ge. not know my voice! o time s extremity, hast thou so crack d and splitted my poor tongue in seven short years, that here my only son knows not my feeble key of untuned cares? though now this grained face of mine be hid 310 in sap-consuming winter s drizzled snow, and all the conduits of my blood froze up, yet hath my night of life some memory, my wasting lamps some fading glimmer left, my dull deaf ears a little use to hear: 315 all these old witnesses--i cannot err-- tell me thou art my son antipholus. ant. e. i never saw my father in my life. ge. but seven years since, in syracusa, boy, thou know st we parted: but perhaps, my son, 320 thou shamest to acknowledge me in misery. ant. e. the duke and all that know me in the city can witness with me that it is not so: i ne er saw syracusa in my life. duke. i tell thee, syracusian, twenty years 325 have i been patron to antipholus, during which time he ne er saw syracusa: i see thy age and dangers make thee dote. re-enter abbess , with antipholus of syracuse and dromio of syracuse . abb. most mighty duke, behold a man much wrong d. all gather to see them. adr. i see two husbands, or mine eyes deceive me. 330 duke. one of these men is genius to the other; and so of these. which is the natural man, and which the spirit? who deciphers them? dro. s. i, sir, am dromio: command him away. dro. e. i, sir, am dromio: pray, let me stay. 335 ant. s. geon art thou not? or else his ghost? dro. s. o, my old master! who hath bound him here? abb. whoever bound him, i will loose his bonds, and gain a husband by his liberty. speak, old geon, if thou be st the man 340 that hadst a wife once call d milia, that bore thee at a burden two fair sons: o, if thou be st the same geon, speak, and speak unto the same milia! ge. if i dream not, thou art milia: 345 if thou art she, tell me where is that son that floated with thee on the fatal raft? abb. by men of epidamnum he and i and the twin dromio, all were taken up; but by and by rude fishermen of corinth 350 by force took dromio and my son from them, and me they left with those of epidamnum. what then became of them i cannot tell; i to this fortune that you see me in. duke. why, here begins his morning story right: 355 these two antipholuses, these two so like, and these two dromios, one in semblance,-- besides her urging of her wreck at sea,-- these are the parents to these children, which accidentally are met together. 360 antipholus, thou camest from corinth first? ant. s. no, sir, not i; i came from syracuse. duke. stay, stand apart; i know not which is which. ant. e. i came from corinth, my most gracious lord,-- dro. e. and i with him. 365 ant. e. brought to this town by that most famous warrior. duke menaphon, your most renowned uncle. adr. which of you two did dine with me to-day? ant. s. i, gentle mistress. adr. and are not you my husband? ant. e. no; i say nay to that. 370 ant. s. and so do i; yet did she call me so: and this fair gentlewoman, her sister here, did call me brother. to lucia. what i told you then, i hope i shall have leisure to make good; if this be not a dream i see and hear. 375 ang. that is the chain, sir, which you had of me. ant. s. i think it be, sir; i deny it not. ant. e. and you, sir, for this chain arrested me. ang. i think i did, sir; i deny it not. adr. i sent you money, sir, to be your bail, 380 by dromio; but i think he brought it not. dro. e. no, none by me. ant. s. this purse of ducats i received from you, and dromio my man did bring them me. i see we still did meet each other s man; 385 and i was ta en for him, and he for me; and thereupon these errors are arose. ant. e. these ducats pawn i for my father here. duke. it shall not need; thy father hath his life. cour. sir, i must have that diamond from you. 390 ant. e. there, take it; and much thanks for my good cheer. abb. renowned duke, vouchsafe to take the pains to go with us into the abbey here, and hear at large discoursed all our fortunes;-- and all that are assembled in this place, 395 that by this sympathized one day s error have suffer d wrong, go keep us company, and we shall make full satisfaction.-- thirty-three years have i but gone in travail of you, my sons; and till this present hour 400 my heavy burthen ne er delivered. the duke, my husband, and my children both, and you the calendars of their nativity, go to a gossips feast, and go with me; after so long grief, such nativity! 405 duke. with all my heart, i ll gossip at this feast. exeunt all but ant. s., ant. e., dro. s., and dro. e. dro. s. master, shall i fetch your stuff from ship-board? ant. e. dromio, what stuff of mine hast thou embark d? dro. s. your goods that lay at host, sir, in the centaur. ant. s. he speaks to me. --i am your master, dromio: 410 come, go with us; we ll look to that anon: embrace thy brother there; rejoice with him. exeunt ant. s. and ant. e. dro. s. there is a fat friend at your master s house, that kitchen d me for you to-day at dinner: she now shall be my sister, not my wife. 415 dro. e. methinks you are my glass, and not my brother: i see by you i am a sweet-faced youth. will you walk in to see their gossiping? dro. s. not i, sir; you are my elder. dro. e. that s a question: how shall we try it? 420 dro. s. we ll draw cuts for the senior: till then lead thou first. dro. e. nay, then, thus:-- we came into the world like brother and brother; and now let s go hand in hand, not one before another. exeunt. notes: v, 1. scene i. a street ... priory pope. see note viii . 3: doth f1. did f2 f3 f4. 9: enter ... enter antipholis and dromio againe. ff. 12: to me with me collier ms. 18: beside ff. besides pope. 26: know st ... thee. ff. knowest ... thee. pope. knowest well ... thee. hanmer. know st ... thee, sir. capell. know st ... thee swear grant white conj. 30: mine honesty f1 f2 f3. my honesty f4. 33: scene ii. pope. 33, 36: god s ... god s f3 f4. god ... god s f1 f2. 38: quiet, people. theobald. quiet people. ff. 45: sour rowe. sower ff. 46: much f1 f4. much, much f2 f3. 49: of sea f1. at sea f2 f3 f4. 50: hath not else his eye hath nought else his eye? anon. conj. 51: his ... in in ... and anon. conj. 61: ay ay, ay hanmer. 66: it at it pope. 69: venom venome f1 f2. venomous f3 f4. venom d pope. woman, woman pope. 69, 70: clamours ... poisons clamours ... poison pope. clamour ... poisons capell. 72, 75: thereof therefore johnson. 74: make f1. makes f2 f3 f4. 77: by with pope. 79: moody f1. muddy f2 f3 f4. moody, moping hanmer. moody sadness singer conj. melancholy melancholia anon. conj. 80: kinsman kins-woman capell. ending line 79 at kins- . a kin hanmer. warburton marks this line as spurious. 81: her their malone heath conj. . 86: have f2 f3 f4. hath f1. 88: wildly wild capell. 89: these f1 f2. those f3 f4. 112: exit. theobald. 117: exeunt. enter merchant and goldsmith. f2. 121: death f3 f4. depth f1 f2. sorry solemn collier ms. 124: reverend f3 f4. reverent f1 f2. 128: enter adriana and lucia. f2. 130: scene iii. pope. attended theobald. 132: enter adriana. f2. 134: reverend ff. 137: whom f2 f3 f4. who f1. 138: important f1. impoteant f2. impotent f3 f4. all-potent rowe. letters f1 f2 f3. letter f4. 148: strong strange malone conj. 150: with here capell. then ritson conj. and himself mad himself warburton. 158: hence f1 f2. thence f3 f4. 168: scene iv. pope. enter a servant. capell. enter a messenger. ff. 174: to him om. capell. and om. hanmer. and the om. steevens. 176: some f1 some other f2 f3 f4. 179: to f1 f3 f4. of f2. 183: scorch scotch warburton. 205: while f1 whilst f2 f3 f4. 208: to-day om. hanmer. so befal so fall capell. 212, 213: to mer. capell. 228: of f1. from f2 f3 f4. 235: by the way to which he yielded: by the way capell, making two verses of 235. see note ix . 235, 236: pope ends these lines and ... confederates . 236: along with them om. pope. 247: and in into lettsom conj. 248: there they collier ms. 249: in sunder f1. asunder f2 f3 f4. 267, 268: chain, so ... heaven: and chain. so ... heaven as dyce. 281: mad made f2. exit ... f1 f2. enter ... f3 f4. 291: you both f1. both f2 f3 f4. 298: deformed deforming capell. 304: ay, sir, capell. i sir, ff. i, sir? pope. ay, sir? malone. 304, 305: printed as verse by capell: but ... whatsoever a ... him . 307: crack d and splitted crack d my voice, split collier ms. 309: of untuned cares untuned of cares anon. conj. cares ears anon. conj. 314: lamps lamp pope. 316: all and all rowe. old hold warburton. witnesses--i cannot err-- witnesses, i cannot erre. ff. 319: syracusa, boy capell. syracusa boy ff. syracusa bay rowe. syracusa s bay hanmer. 329: scene vii. pope. all ... them. all ... him. warburton. 332: these. which these, which ff. 355-360: why ... together ff insert this speech after 344. the alteration is due to capell. 355: his f1 f2. this f3 f4. the pope. story right story s light capell. 356: antipholuses, these antipholus, these f1. antipholis, these f2 f3 f4. antipholis s hanmer. see note i . 357: these f1 f4. those f2 f3. semblance semblance prove capell. 358: besides her urging of her both sides emerging from their hanmer. besides his urging of his collier ms. besides his urging of her dyce conj. malone supposes a line, beginning with these , lost after 358. wreck at sea,-- wreck,--all say, jackson conj. 359: these are these plainly are pope. 361: ff prefix duke. 372: her sister f1. om. f2 f3 f4. 373: to lucia. aside to lucia. staunton conj. 387: are arose ff. all arose rowe. rare arose staunton. here arose anon. conj. 394: hear here johnson. 398: we shall make ye shalt have pope. 399: thirty-three ff. twenty-five theobald. twenty-three capell. see note x . but f1. been f2 f3 f4. om. hanmer. 400: and till nor till theobald. until malone boaden conj. . and at collier ms. 401: burthen ne er dyce. burthen are f1. burthens are f2 f3 f4. burden not capell. burden undelivered collier. burden here grant white. burden has anon. conj. ap. halliwell . 404: go ... and go hence ... along lettsom conj. so ... all go edd. conj. and go f1 f3 f4. and goe f2. and gaud warburton. and joy heath conj. and gout jackson conj. and see anon. conj. 405: nativity ff. felicity hanmer. festivity dyce johnson conj. . such nativity! suits festivity. anon. conj. 406: exeunt ... exeunt omnes. manet the two dromio s and two brothers. ff. 407: scene viii. pope. fetch go fetch s. walker conj. ship-board shipboard for you capell conj. 412: exeunt ... exit. ff. 420: we try it? we trie it. f1 i try it. f2 f3 f4. we try it, brother? capell. 421: we ll we will capell, ending lines 419-421 at question ... draw ... first. senior pope. signior f1 f2. signiority f3 f4. 422: embracing. rowe. notes. note i. in the spelling of the name of solinus we have followed the first folio. in the subsequent folios it was altered, most probably by an accident in f2 to salinus. the name occurs only once in the copies, and that in the first line of the text. the name which we have given as antipholus is spelt indifferently thus, and antipholis in the folios. it will hardly be doubted that the lines in the rhyming passage, iii. 2. 2, 4, where the folios read antipholus, are correctly amended by capell, and prove that antipholus is the spelling of shakespeare. either word is evidently corrupted from antiphilus. these names are merely arbitrary, but the surnames, erotes and sereptus, are most probably errors for errans, or erraticus and surreptus, of which the latter is plainly derived from plautus men chmus surreptus , a well-known character in shakespeare s day: see brian melbancke s philotimus 1582 , p. 160: thou art like menechmus subreptus his wife ... whose husband shall not neede to be justice of peace for she will have a charter to make her justice of coram. see merry wives , i. 1. 4, 5. in spelling syracusian instead of syracusan we follow the practice of the folios in an indifferent matter. epidamnum not epidamium is found in the english translation of the men chmi , 1595, so the latter form in f1 is probably a printer s error. note ii. i. 2. 1. that this scene is laid at the mart appears from antipholus s allusion to this place in ii. 2. 5, 6: i could not speak with dromio since at first i sent him from the mart. as this play is derived from a classical prototype, capell has supposed no change of scene, but lays the whole action in a publick place; evidently with much inconvenience to the persons. note iii. ii. 1. 30. johnson s ingenious conjecture may have been suggested to him by a passage in as you like it , iv. 3. 17: her love is not the hare that i do hunt. but the received reading of the folios is perhaps confirmed by a line in the present play, iii. 2. 7: or if you like elsewhere, do it by stealth. note iv. ii. 1. 108 sqq. the only correction of this passage which we believe to be quite free from doubt is that in line 112, wear for where. accordingly, with this exception, we have retained the precise words of the first folio. note v. iv. 2. 38. grey s conjecture of lanes for lands is made somewhat more probable by the existence of copies of f1 in which the word appears lans. a corrector would naturally change this rather to lands than to lanes, because of the rhyme. note vi. iv. 2. 46. the folios have send him mistris redemption, and rowe, by his punctuation and capital r, made dromio call luciana redemption. pope and theobald seem to have followed him, though they give the small r. the folios cannot be made chargeable with this error, for the comma does not regularly follow vocatives in these editions where we expect it. there is no comma, for instance, following the word mistress in iv. 3. 75 or in iv. 4. 39. note vii. iv. 4. 29. the word ears might probably be better printed ears for years; for a pun--hitherto, however, unnoticed--seems to be indicated by the following words. a very farfetched explanation has been offered by steevens, and accepted by delius and, we believe, by all the modern editors, namely, that antipholus has wrung dromio s ears so often that they have attained a length like an ass s. note viii. v. 1. 1. shakespeare uses the words priory and abbey as synonymous. compare v. 1. 37 and v. 1. 122. note ix. v. 1. 235. it might possibly be better to print this line as two lines, the first being broken: by the way we met my wife.... but the place is probably corrupt. note x. v. 1. 399. the number thirty-three has been altered by editors to bring the figures into harmony with other periods named in the play. from i. 1. 126, 133 the age of antipholus has been computed at twenty-three; from i. 1. 126 and v. 1. 308 we derive twenty-five. the duke says he has been patron to antipholus for twenty years, v. 1. 325; but three or five seems too small an age to assign for the commencement of this patronage. antipholus saved the duke s life in the wars long since, v. 1. 161, 191. his long experience of his wife s wisdom and her years are mentioned, iii. 1. 89, 90. but shakespeare probably did not compute the result of his own figures with any great care or accuracy. sources: the editors preface e-text 23041 discusses the 17th- and 18th-century editions in detail; the newer 19th-century editions are simply listed by name. the following editions may appear in the notes. all inset text is quoted from the preface. folios: f1 1623; f2 no date given ; f3 1663; f4 1685. the five plays contained in this volume occur in the first folio in the same order, and ... were there printed for the first time. early editions: rowe 1709 pope 1715 pope was the first to indicate the place of each new scene; as, for instance, tempest , i. 1. on a ship at sea. he also subdivided the scenes as given by the folios and rowe, making a fresh scene whenever a new character entered--an arrangement followed by hanmer, warburton, and johnson. for convenience of reference to these editions, we have always recorded the commencement of pope s scenes. theobald 1733 hanmer oxford edition 1744 warburton 1747 johnson 1765 capell 1768; also capell s annotated copy of f2 steevens 1773 malone 1790 reed 1803 later editions: singer, knight, cornwall, collier, phelps, halliwell, dyce, staunton errata iv. 2. 17 note: ... anon. aonn. note iv. ... line 112, wear for where. line 111 note vi. ... the word mistress in iv. 3. 75 ... iv. 3. 74\n", + "\n", + "Total words Text 1: 26862\n", + "\n", + "Total words Text 2: 21801\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[nltk_data] Downloading package stopwords to\n", + "[nltk_data] C:\\Users\\kchheav1\\AppData\\Roaming\\nltk_data...\n", + "[nltk_data] Package stopwords is already up-to-date!\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Filtered tokens: ['tragedy', 'romeo', 'juliet', 'william', 'shakespeare', 'contents', 'prologue', 'act', 'scene', 'public', 'place', 'scene', 'ii', 'street', 'scene', 'iii', 'room', 'capulet', 'house', 'scene', 'iv', 'street', 'scene', 'v', 'hall', 'capulet', 'house', 'act', 'ii', 'chorus', 'scene', 'open', 'place', 'adjoining', 'capulet', 'garden', 'scene', 'ii', 'capulet', 'garden', 'scene', 'iii', 'friar', 'lawrence', 'cell', 'scene', 'iv', 'street', 'scene', 'v'] ['transcriber', 'note', 'text', 'comedy', 'errors', 'volume', 'nine', 'volume', '1863', 'cambridge', 'edition', 'shakespeare', 'preface', 'e', 'text', '23041', 'plays', 'volume', 'available', 'separate', 'e', 'texts', 'general', 'notes', 'original', 'location', 'end', 'play', 'text', 'critical', 'notes', 'grouped', 'end', 'scene', 'line', 'numbers', 'original', 'text', 'line', 'breaks', 'dialogue', 'including', 'prose', 'passages', 'unchanged', 'brackets', 'also', 'unchanged', 'avoid', 'ambiguity']\n" + ] + }, + { + "ename": "TypeError", + "evalue": "len() takes exactly one argument (2 given)", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mTypeError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[1]\u001b[39m\u001b[32m, line 75\u001b[39m\n\u001b[32m 73\u001b[39m filtered_tokens2 = [word \u001b[38;5;28;01mfor\u001b[39;00m word \u001b[38;5;129;01min\u001b[39;00m token_2 \u001b[38;5;28;01mif\u001b[39;00m word.lower() \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;129;01min\u001b[39;00m stop_words]\n\u001b[32m 74\u001b[39m \u001b[38;5;28mprint\u001b[39m(\u001b[33m\"\u001b[39m\u001b[33mFiltered tokens:\u001b[39m\u001b[33m\"\u001b[39m, filtered_tokens1[:\u001b[32m50\u001b[39m], filtered_tokens2[:\u001b[32m50\u001b[39m])\n\u001b[32m---> \u001b[39m\u001b[32m75\u001b[39m \u001b[38;5;28mprint\u001b[39m(\u001b[33m\"\u001b[39m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[33mTotal Filtered:\u001b[39m\u001b[33m\"\u001b[39m, \u001b[38;5;28;43mlen\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mfiltered_tokens1\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mfiltered_tokens2\u001b[49m\u001b[43m)\u001b[49m)\n\u001b[32m 76\u001b[39m \u001b[38;5;28mprint\u001b[39m(\u001b[33m\"\u001b[39m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[33mTotal Original:\u001b[39m\u001b[33m\"\u001b[39m, \u001b[38;5;28mlen\u001b[39m(token_1, token_2))\n", + "\u001b[31mTypeError\u001b[39m: len() takes exactly one argument (2 given)" + ] + } + ], + "source": [ + "#%%md 1. Harvest the Text\n", + "import urllib.request # To open and read URLs\n", + "import re # To match regular expressions\n", + "import unicodedata # To normalize texts\n", + "\n", + "# Book of Romeo and Juliet and The Comedy of Errors from Project Gutenberg\n", + "url1 = 'https://www.gutenberg.org/cache/epub/1513/pg1513.txt'\n", + "url2 = 'https://www.gutenberg.org/cache/epub/23046/pg23046.txt'\n", + "try:\n", + " with urllib.request.urlopen(url1) as f:\n", + " text1 = f.read().decode('utf-8')\n", + " print(text1[:500]) \n", + " with urllib.request.urlopen(url2) as g:\n", + " text2 = g.read().decode('utf-8')\n", + " print(text2[:500])\n", + "except Exception as e:\n", + " print(\"An error occurred:\", e)\n", + "#%%md 2. Analyzing the text\n", + "#Step 1: Text Cleaning and Processing \n", + "def clean_text(text):\n", + "# Remove text before and after the main content \n", + " start = re.search(r\"\\*\\*\\* START OF THE PROJECT GUTENBERG EBOOK .* \\*\\*\\*\", text)\n", + " end = re.search(r\"\\*\\*\\* END OF THE PROJECT GUTENBERG EBOOK .*\\*\\*\\*\", text)\n", + " if start and end: \n", + " cleaned = text[start.end():end.start()]\n", + " else: \n", + " print(\"Warning: Could not find Gutenberg delimiters; cleaning entire text\")\n", + " cleaned = text\n", + " return cleaned.strip()\n", + "try:\n", + " cleaned_text1 = clean_text(text1)\n", + " cleaned_text2 = clean_text(text2)\n", + " print(\"Cleaned Text 1 Preview:\\n\", cleaned_text1[:500])\n", + "except Exception as e:\n", + " print(\"Error during cleaning:\", e)\n", + "# Step 3: Normalize unicode\n", + "try:\n", + " cleaned_text1 = unicodedata.normalize(\"NFKD\", cleaned_text1)\n", + " cleaned_text2 = unicodedata.normalize(\"NFKD\", cleaned_text2)\n", + " # Step 4: Remove HTML tags and special characters\n", + " cleaned_text1 = re.sub(r\"<.*?>\", \" \", cleaned_text1)\n", + " cleaned_text2 = re.sub(r\"<.*?>\", \" \", cleaned_text2) \n", + " cleaned_text1 = re.sub(r\"[^a-zA-Z0-9\\s.,;:'\\\"!?-]\", \" \", cleaned_text1)\n", + " cleaned_text2 = re.sub(r\"[^a-zA-Z0-9\\s.,;:'\\\"!?-]\", \" \", cleaned_text2)\n", + "\n", + "# Step 4: Convert to lowercase\n", + " cleaned_text1 = cleaned_text1.lower()\n", + " cleaned_text2 = cleaned_text2.lower()\n", + "\n", + "# Step 5: Replace multiple spaces/newlines with one space\n", + " cleaned_text1 = re.sub(r\"\\s+\", \" \", cleaned_text1).strip()\n", + " cleaned_text2 = re.sub(r\"\\s+\", \" \", cleaned_text2).strip()\n", + " # Step 7: Tokenize into words\n", + "# Step 6: Tokenization\n", + " token_1 = re.findall(r\"\\b\\w+\\b\", cleaned_text1)\n", + " token_2 = re.findall(r\"\\b\\w+\\b\", cleaned_text2)\n", + " \n", + "# Step 7: Print short preview\n", + " print(\"Cleaned text preview Text 1:\\n\", cleaned_text1[:])\n", + " print(\"Cleaned text preview Text 2:\\n\", cleaned_text2[:])\n", + " print(\"\\nTotal words Text 1:\", len(token_1))\n", + " print(\"\\nTotal words Text 2:\", len(token_2))\n", + "except Exception as e:\n", + " print(\"An error occurred:\", e)\n", + "#%%md Step 2: Removing Stop Words \n", + "import nltk\n", + "nltk.download('stopwords')\n", + "from nltk.corpus import stopwords\n", + "# Define the stop words set\n", + "stop_words = set(stopwords.words('english'))\n", + "# Filter out stop words\n", + "filtered_tokens1 = [word for word in token_1 if word.lower() not in stop_words]\n", + "filtered_tokens2 = [word for word in token_2 if word.lower() not in stop_words]\n", + "print(\"Filtered tokens:\", filtered_tokens1[:50], filtered_tokens2[:50])\n", + "print(\"\\nTotal Filtered:\", len(filtered_tokens1, filtered_tokens2))\n", + "print(\"\\nTotal Original:\", len(token_1, token_2))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ac54bb6a-4e7a-4116-800a-c06be15ba33b", + "metadata": {}, + "outputs": [], + "source": [ + "#%%md 1. Harvest the Text\n", + "import urllib.request # To open and read URLs\n", + "import re # To match regular expressions\n", + "import unicodedata # To normalize texts\n", + "\n", + "# Book of Romeo and Juliet and The Comedy of Errors from Project Gutenberg\n", + "url1 = 'https://www.gutenberg.org/cache/epub/1513/pg1513.txt'\n", + "url2 = 'https://www.gutenberg.org/cache/epub/23046/pg23046.txt'\n", + "try:\n", + " with urllib.request.urlopen(url1) as f:\n", + " text1 = f.read().decode('utf-8')\n", + " print(text1[:500]) \n", + " with urllib.request.urlopen(url2) as g:\n", + " text2 = g.read().decode('utf-8')\n", + " print(text2[:500])\n", + "except Exception as e:\n", + " print(\"An error occurred:\", e)\n", + "#%%md 2. Analyzing the text\n", + "#Step 1: Text Cleaning and Processing \n", + "def clean_text(text):\n", + "# Remove text before and after the main content \n", + " start = re.search(r\"\\*\\*\\* START OF THE PROJECT GUTENBERG EBOOK .* \\*\\*\\*\", text)\n", + " end = re.search(r\"\\*\\*\\* END OF THE PROJECT GUTENBERG EBOOK .*\\*\\*\\*\", text)\n", + " if start and end: \n", + " cleaned = text[start.end():end.start()]\n", + " else: \n", + " print(\"Warning: Could not find Gutenberg delimiters; cleaning entire text\")\n", + " cleaned = text\n", + " return cleaned.strip()\n", + "try:\n", + " cleaned_text1 = clean_text(text1)\n", + " cleaned_text2 = clean_text(text2)\n", + " print(\"Cleaned Text 1 Preview:\\n\", cleaned_text1[:500])\n", + "except Exception as e:\n", + " print(\"Error during cleaning:\", e)\n", + "# Step 3: Normalize unicode\n", + "try:\n", + " cleaned_text1 = unicodedata.normalize(\"NFKD\", cleaned_text1)\n", + " cleaned_text2 = unicodedata.normalize(\"NFKD\", cleaned_text2)\n", + " # Step 4: Remove HTML tags and special characters\n", + " cleaned_text1 = re.sub(r\"<.*?>\", \" \", cleaned_text1)\n", + " cleaned_text2 = re.sub(r\"<.*?>\", \" \", cleaned_text2) \n", + " cleaned_text1 = re.sub(r\"[^a-zA-Z0-9\\s.,;:'\\\"!?-]\", \" \", cleaned_text1)\n", + " cleaned_text2 = re.sub(r\"[^a-zA-Z0-9\\s.,;:'\\\"!?-]\", \" \", cleaned_text2)\n", + "\n", + "# Step 4: Convert to lowercase\n", + " cleaned_text1 = cleaned_text1.lower()\n", + " cleaned_text2 = cleaned_text2.lower()\n", + "\n", + "# Step 5: Replace multiple spaces/newlines with one space\n", + " cleaned_text1 = re.sub(r\"\\s+\", \" \", cleaned_text1).strip()\n", + " cleaned_text2 = re.sub(r\"\\s+\", \" \", cleaned_text2).strip()\n", + " # Step 7: Tokenize into words\n", + "# Step 6: Tokenization\n", + " token_1 = re.findall(r\"\\b\\w+\\b\", cleaned_text1)\n", + " token_2 = re.findall(r\"\\b\\w+\\b\", cleaned_text2)\n", + " \n", + "# Step 7: Print short preview\n", + " print(\"Cleaned text preview Text 1:\\n\", cleaned_text1[:])\n", + " print(\"Cleaned text preview Text 2:\\n\", cleaned_text2[:])\n", + " print(\"\\nTotal words Text 1:\", len(token_1))\n", + " print(\"\\nTotal words Text 2:\", len(token_2))\n", + "except Exception as e:\n", + " print(\"An error occurred:\", e)\n", + "#%%md Step 2: Removing Stop Words \n", + "import nltk\n", + "nltk.download('stopwords')\n", + "from nltk.corpus import stopwords\n", + "# Define the stop words set\n", + "stop_words = set(stopwords.words('english'))\n", + "# Filter out stop words\n", + "filtered_tokens1 = [word for word in token_1 if word.lower() not in stop_words]\n", + "filtered_tokens2 = [word for word in token_2 if word.lower() not in stop_words]\n", + "print(\"Filtered tokens:\", filtered_tokens1[:50], filtered_tokens2[:50])\n", + "print(\"\\nTotal Filtered:\", len(filtered_tokens1, filtered_tokens2))\n", + "print(\"\\nTotal Original:\", len(token_1, token_2))\n", + "'''#%%md Step 3: Frequency Analysis \n", + "# # Step 7: (Optional) Rejoin filtered words into cleaned text\n", + "cleaned_text = \" \".join(filtered_tokens)\n", + "# Step 8: Print results\n", + "print(\"Original text:\\n\", text[:50])\n", + "print(\"\\nCleaned text:\\n\", cleaned_text[:50])\n", + "print(\"\\nTokens before stopword removal:\\n\", tokens[:50])\n", + "print(\"\\nTokens after stopword removal:\\n\", filtered_tokens[:50])\n", + "\n", + "# %%md Step 3: Frequency Analysis\n", + "# Step 9: Count word frequencies\n", + "word_freq = {}\n", + "for word in filtered_tokens:\n", + " if word in word_freq:\n", + " word_freq[word] += 1\n", + " else:\n", + " word_freq[word] = 1\n", + "#%%md Step 4: Computing Summary Statistics \n", + "#Print the top 50 words\n", + "top_words = sorted(word_freq.items(), key=lambda x: x[1], reverse=True)[:50]\n", + "print(\"\\nTop 50 most frequent words:\\n\" , top_words)\n", + "\n", + "##Calculate average word length\n", + "total_length = sum(len(word) * count for word, count in word_freq.items())\n", + "total_words = sum(word_freq.values())\n", + "average_word_length = total_length / total_words if total_words > 0 else 0\n", + "print(f\"\\nAverage word length: {average_word_length:.2f}\")\n", + "\n", + "#Calculate vocabulary size\n", + "vocabulary_size = len(word_freq)\n", + "print(f\"\\nVocabulary size: {vocabulary_size}\")\n", + "\n", + "#Calculate vocabulary richness\n", + "vocabulary_richness = vocabulary_size / total_words if total_words > 0 else 0\n", + "print(f\"\\nVocabulary richness: {vocabulary_richness:.4f}\")\n", + "\n", + "#%%md Part 3: Learning with AI I will talk about two problems I ran \n", + "# into while doing this assignment. The first problem I ran into was\n", + "# how to install nltk. The second problem was learning how to compare two pieces of text from \n", + "# the Gutenburg project. \n", + "\n", + "# Problem one: While I was able to run my code before I forked the repository, \n", + "# I was not able to rerun the same code after I forked the repositoty. The code \n", + "# keep saying that no module named nltk was found. \n", + "\n", + "# Crafted prompts 1: It took me five prompts to get to the solution. \n", + "# I first sent a screenshot of the error message I was getting which says\n", + "# \"no module nltk found\", and asked copilot how to fix it. Copilot suggested that I install nltk using pip. I followed the \n", + "# the suggestion, and piped install nltk in the terminal. However, in when \n", + "# I installed the package, I got a message that said \"Requirement already satisfied\".\n", + "# I was very confused, so I sent another prompt asking \"what could be wrong?\"\n", + "# if nltk was already installed. Copilot suggested that I checked my python\n", + "# environment, and make sure that I was using the same environment where nltk was located. \n", + "# Copilot gave me an option to check my nltk installation by running \"pip show nltk\" \n", + "# in the terminal and check the location of the package in jupyter notebook by running \n", + "# import sysprint(sys.executable) and !{sys.executable} -m pip install nltk. The locations \n", + "# did not match. I decided to run the \"python -m pip install nltk\" in the console\n", + "# instead of the terminal and that fixed the problem. \n", + "\n", + "# Review and verify(1): Copilot gave me different options and \n", + "# I usually started with the simplest one first, usually the first or \n", + "# second suggestion. In this case, it takes three prompts to get to the solution. \n", + "\n", + "# The process: Even though installing nltk does not seem hard, \n", + "# because it only takes one command to install it, not being able to get \n", + "# it to work was very confusing. Thankfully, copilot was able to guide me, giving \n", + "# me a different suggestions based on my comfort level. \n", + "\n", + "# Problem two: When comparing two pieces of texts from the Gutenburg prohect, \n", + "# I felt like my code was very repetitive and long. I somewhat have an idea on how \n", + "# to work with one text, but did not know how to extend the code to work with \n", + "# more than two texts or more. \n", + "\n", + "# Crafted prompts #2: \n", + "# 1) I started by sending copilot my existing code that works with one text, \n", + "# and asked \"how do I clean and process two texts at the same time?\" \n", + "# 2) While I was normalizing the unicode, I got an error message \n", + "# saying \"an error occurred: invalid normalization form\". I did not \n", + "# understand what I did wrong, so I asked chat how to fix the problem\n", + "# including the screenshot of the error message. \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "# Review and verify(2): \n", + "# 1) Copilot suggested that I could create a function that takes in a text as \n", + "# input and returns the cleaned and processed text. I know we covered this in\n", + "# class, so I incorporated the function into my code. It made my code so much more \n", + "# concise and easier to read. \n", + "# 2) Copilot pointed out that I made a type in the normalization \n", + "# form, and suggested that I change \"NFDK\" to \"NFKD. After this step, my code works fine. \n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/findings1.png b/findings1.png new file mode 100644 index 0000000..6d28b5a Binary files /dev/null and b/findings1.png differ diff --git a/readme.ipynb b/readme.ipynb new file mode 100644 index 0000000..6ef8cee --- /dev/null +++ b/readme.ipynb @@ -0,0 +1,93 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "80461938-e7e8-4275-9269-80867550dbe4", + "metadata": {}, + "source": [ + "1. Project Overview: The source that I mainly use is Project Gutenberg. Because the texts are already long enough, I choose to compare two long texts from the site Romeo and Juliet and The Comedy of Errors. Through this project, I hope to understand the vocabulary richness, the text's sentiment, and explore some of the most common words that appear in William Shakepeare's work. In order to get to these goals, I first have to clean the texts and process the texs. I use the package unicodedata to normalize the text and remove any unwanted characters such as HTML tags and special characters. Additionally, to remove stopwords so that I can get to the core meaning of the content, I use the package nltk. " + ] + }, + { + "cell_type": "markdown", + "id": "fdf5890b-545e-4d23-9602-6ce66e4b97b4", + "metadata": {}, + "source": [ + "2. Implementation:\n", + "Through the guidance of AI and what we learned in class in\n", + "the past few weeks, I begin to do my project by first, cleaning the text and and making sure that only the core content of the texts should be worth analyzing. Based on professor Li's instruction on how to download and open the url, I was able to pull out two of William Shakepear's texts and analyze them. Copilot provided me a step by step process on how to clean and process the data: for instance, how to normalize the text using unicodedata and how to remove unwanted characters such as HTML tags and special characters.\n", + "\n", + "Additionally, VS code is very helpful in providing suggestions on what to do next the moment we started writing comments. For instance, after cleaning and processing the data, the analysis section seems very standardized with calculating the top 20 words, comparing common words between one text to the next and analyzing the average word's length in each document. Because I understand the concept of the dictionary, when to use length and set in the code, I mainly choose those codes rather than the alternatives since that is based on what I already learned rather than choosing something that is completely new. For instance, I did not use matplotlib nor seaborn mainly because I have not learned that yet. Even though AI gave good suggestions, I tried to tweak my code based on how long the texts are. Instead of printing the whole dictionary of all the words occured and how frequent they appear, I choose to work in a smaller set; for instance 500 words. If I were to work in another text like an instagram post, I would print the whole dictionary of all the words and their frequency. " + ] + }, + { + "attachments": { + "1cf95381-b937-4d2b-9610-5a5f68fd255b.png": { + "image/png": "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" + }, + "438aca14-d3b3-48ed-a873-3ecbd0c620fd.png": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAyoAAAKVCAYAAAAgIh/TAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAP+lSURBVHhe7N13nFTV3fjxzzn33umzvbC7wNJ7FSkKAqJir0SsURNN8SdBY6I+6WoSn8caG4lJTKLGEkWjUaMYOyoCikqVDgJL296n3Xt+f8yyspddWAi7QzlvXvsHc8+c75TvzJxz7ymiZ2G6QtM0TdM0TdM07RAi3TdomqZpmqZpmqalmu6oaJqmaZqmaZp2yNEdFU3TNE3TNE3TDjm6o6JpmqZpmqZp2iFHd1Q0TdM0TdM0TTvkCL3ql6a1bdppxzH9jPFs21nJHX94np3l1e4imnZYm3H5GUwaO5jla7fwf488TyQadxfRNE3TtJTQV1S0Q971V53FC7NuYdppx7kPdbhRQ3pjGgb5ORn071XkPqwdJXp1y+exu6/n4Vu/S3ZGyH34kLDrc7Lr75n7f8QJowe5i7WQnRFiQJ+uSCnp0TWPwrwsdxFN0zRNS5nD9orKCaMH8f8uOx2PZboPtbBqQwk/vedJ982HBNMwmDxuCBdMPY687DQ++HQFDzz2qrsYAOFQgMvPmchxxwwg6Pfi2A5bdlTwxIvv8vmK9e7i7XLHjy+nZ9d8fv/U63zwyQr3Ybwek9/ceDlBv5df3P805ZW17iKd4vqrzmLi6ME8/cpcXpjzsftwh0r1FZVdz313sXiCtRu38feX3mP1xq0tjmkdo1e3fH4582Lq6hv51f1PU15V5y7SLnf8+HL699yzwxuLJ9r8HLaXO1faW2dHXVGZfvp4zjhxFP96ayEv/me++7CmaZqm7ZO+opICpmFw4enj+eNvruXaS08jPycdIYS7WLNwKMBPr53GyeOHE/R7AZCGpHthDj++5jwmj23ZkG2vfTVIQgEffp8HRylQh2V/9r/2wpyPuWjmPdzwm790eielLR7LZFDfbvzP9y9gYJ+u7sPaUeqBx15l2nV3Mu26O5n7yXL34TY9/ORrXPiDu7n1gWf2+Z2wPwryMwkH/UjZ9nebpmmapu3NYdtR+eCTFVxyw73NP8z3P/YKsXiCVRtKmm+bdt2dh+TVlFFDenHeKWNJDwfYsGUny1Z/5S7SwvmnjKVvcQFVNfXc99eXuXDGXcy8/c+s2bgVn9fi3JPHEg4F3Hfbp+raeoQAKfeeBvG4TSyWcN+sdaKnX5nLtOvu5MIZd3H3oy9RXlVLejjI1Akj3EW1Q9hP73myxffT/nYqNE3TNO1octgO/XLbNRRsw5Yde+2cjB7Wh0vPnkTX/CykIYnFE6xYu5lHnp5DaUVNc7lppx3HxWdO4PEX3yUY8DF1/AjSwwFsx2HZqk08/PfXqKw5sOEf4VCAH199DgsWr2HO+5/xgyvPZOLowcz9ZPkeQ7+yM0LcdsOlZGeE+dMzb/DugmXNx3oU5fGLGdPxeT3c99eXWbRsbYv77su+hlR1yc3ktpkXU15d2/yaSiE4ZcIIzj15LLnZaUghaGyMsXDJav72z3eprWtovv+u4TJbd5Tzv4/8k29dcCJjR/TH57Woqqln9uvzmDP3s90iQr8ehXzzvMn06VGAxzJxlMK2bSzT3ONx+rwWF515AhNHDyI9HEABldV1vP7+Z/zrzQXJK0EHYNdrXpCb2XzbttLKNof8XH/VWYwc3Jt7//wiJ44b2vwcI9E4H3y6gkeffZOEbbvv1i5tvUfTzxzPRWdM2GNoY3vfn2mnHcc3TjueJ196n4ljBtG7exe2bC/nvr/+i29/42QG9+tOaXk19zz6Eus372iu3/35qW+M8p8PPucfr364x3PcY7iiUlRW1/HSmwuY8/5nB/z+0JRbl5w9kYG9uuL3J6/6VdfW887HS3ju3/OaH8uu97KmroHHnn+Ha6afQs+ueQgpqKqt5+8vvc/7u32maLriOf3M45ly3DDSw0GkEMQTCQzDYEdZVZt5cKCuv+osxo3ov8cwrbZu3/1z1dZ3XVv33WVXHeGAr/k2dy657fps9utViGkYRKJxFnyxao+8uvTsie67tlDbEOH2B//RIq8AivKz+Mm13yAjHORPz/6HuQt1B07TNO1ot/dT6UeYi86awM3XnE/3whykkXzqHstkxMCe3HnzFXsMo5FScs6UMVx42vFkpAURQmAaBiMG9WTGFWcg9zJca29q6xr41QP/4LX3Fu2zsVaYl0V6OMD20io+Xfp1R6QoP4srLjiRtKAfn9eiR9fcFvdrjy3by1v8f+zwvjx134188/wTAQj4PHh9nubjUgh+cMWZfOeiU8jPSW9+/n6/h0ljh/DbGy8jLzu9ufwufq+HX99wCZPGDsHntQDISAty+bmTGDOsb3O5iWMG88sfXMSgvt2a5x5JIbDMPechSSG46Tvnc85Jo5vfGykE2Rlhzj1lLD265rnv0qGCPg8/uua8Fs/R57U46bihXHDaOHfx/5rXk3xfHPvr/Nnf98c0JGeeOIo+xQUIISjKz+KH3zqXIf26I4UgPyeDk44f1lz+nJNGc+O3z23x+Qn6vZw/dRw/nzEdr+fr9ykvO53f3nhZy+GKTe/Pt79xEj+44swD/vxkZ4S48epzOWZwL/z+5OsghSAzLcQFU4/j0nP2bCj3KMrnVzMvpndxF6QhEU3lr7rgxBaLJPi8Fj+fMZ0Lph5HZlqo+TFapnnAj/dIMHZEP3523YUM6tsN0zCg6bVK5tWlB2WBgXEj+1OQm4nf52mRd5qmadrR66jpqPTvVcRpJ4wEYM7cz7jqpge4cMZd3PbQs+woqyI9HOSCqXuuKpWdGWbT1jJue+hZLpp5D4888waRaJx+PQsZ3Lebu/hBl5EewjQMKmvqqG2IkJuVxo+vOY/7fvZthg/o0dxg7Nol233XdstKTzYyhg3ogc9rMaRvtxaNzh1lVQCMP3Yg40b2JxpL8OS/3ueyG+/jopn38MDjr1Jb10BhXiZnTxndfL9duhfmUpCXyQefrOCan8ziqlse4su1W/D7PAwf2AOazr5fMHUcXq/F/M9Xce0vH2HadXdy1U0PsGDxGneVdC/MpXe3fMqravn5755i2nV3ctHMe7jrzy+ycfMOHGfvHcC9Ka+qY8atf2LadXfy3Z/NYltppbvIHqSUhAI+Vm0oYebtf+ayG+9j3ucrkVIyrF/yOR4MPq/FOSeN5uTjh+HYDvMXr2o+tr/vj5SSvOx0Xn3nU557/SOklHQryOaDT1bwl9lvYTs2xYXJDl9xUS7nnDwGx1E8P2cel914HxfOuIv/++ML7CirZkCvQsaPGthc9yVnn0BRfhY7yqq47aFnuXDGXVx10wPMmfsZylGMHtqXEYN6NZffXzV1Dbz6zqdc/+u/MO26O7nsxvt4/f1FKEcxclCvFlcKaFoYwjQlr723iMtuvI8b7/grO8qqCAf9DOz99QmKU08YyeA+XamubeCBx1/lopn3ND/P+sZoizoPZ+s37+Cqmx5g2nV3ctP/PUZtQ8RdpFk4FODiMycQ8Hp4e94SrvnJrOSw2nufZN1X2ynMy+L0SaOgaU6Xe0jbrmGLu/6uuumBPa6mAHy+fD07yqpojMR4e94S92FN0zTtKHTUdFTGDO9HWijAJ8vW8Zfn3qK2IYKjFEtWbuSRZ96gIRKle0EOXXYb7gPwxYoN/PTev7Nk5UYSts2bH37B0lVf4fd66F1c0KJsR2psjHLtpafxwC++w3Ej+yOlZMnKjbz67iJ30XarqWvEdmwCfi9ej0m/nkVsK60kPzudbgW5ZKaHsZrOngKMP2Yglmnwxgef8+J/5hOJxknYNnMXLueZV5JDfwb07tqikwPQEInyyFNzuP+xV5IdrroGPl22FqUUgaaz7SMG9iA/J4P1m7bz4BOvNk9cr22IEI3FWtRHU52N0TjhoJ9jh/TBNAwSts2CL1Zz64P/YGPJTvddOpRSis9XrOf2h56lZEcFkWic9+YvJxKNI43//kz8pWdP5IVZt/DUfTdy5QVTCPi9vP/pCl7b7f0/kPdne1kVL7+9gK07KojFE5RV1vL8nHnU1jdi26r5sQ/tX0x6KMAHn67gmVc+IBKN4yjFJ0vW8uKb85FSMLBPd2gaMjiod7fk+/7MGyxZuRFHKWobIvzlubf4ZNk6/H4Pg/sly++v8qo6fnrPk/zthbfZsr0MmhaGeOfjpdRHY1iWgceVg7F4gn+8+iF/mf0WkWicr0pK+XzFeoQQGE2dfSkEY4b3xXYcnnr5feYuXE7CtnGUoryydp9XP49U/XoUkpedwfKmIbK7hryuWl/C3196l8ZojAG9/vtFHdZv3sH/+9UfufxHv9PDvjRN0zQ4mjoqWelBHMdhxdpNezQ4SraXUV3bgNfnIbDbUCeAFes277ESzvot21s0cDrDuJH9OXn8cCzLYOX6Lfzsnie57aFnqamrByCx2xCg9opEY9hN90t2TIIsWbkR00wOhwv4PUgpqKhOxkgL+4nGEixfs9lVE6z5aiuRWAK/z0PIdTa7uraBJas2trjtpTcX8I0ZdzXPycnLTsdjmWzaVk60HRP3d5ZX88yrH2DbDuedMpanfvdD7rz5Ck4eP7x5aEpniids5n6yokWuVFbXEj/AuSl7E08keOpf7/PwE/9ukcsH8v6s2bi1xXyLL9dtpmRHRfP/dykuykdKySnjh7fYq+OFWbfw/UtOxZAGBTkZsNuQwbKKWjZs2t6iHkcp1m3aBk2fyQM1tH8xv/3RZTxz/4+aH8fd/3PVHldSdimvqmXuwpZzUSqqW84zyUwPkh4OEonEWL9pzzP+R6tuBdl4PSZD+xcz++GbW7z3t15/CQGfl7RwgIy0/374l6ZpmqbtrvNa2ocAhWpXI3hfds0P6AwNjTEcR6GU4quSUv73Dy/ws3ufat4/o3thLkopSprOLO8PO+GgFORmpjOgdxGOo5i7cAVllTUM2m1YW0Pj18NCHOUQa+UKx8GyP3XPXbica3/1R2a//hHbSyvp1TWfay89jUd+8/095hsd7p5+ZS4XzriL+/76MpFIjAtPH9/qstQd9f6YB3BVKGHbxBL//efNbcKogfzP96YxoFfXfe6jdCASjoPtOO6bj1pG05weTdM0TetsR01HpaExiiENRgzYc75AUZcc0sMB6uobqa5NXj1oi9djMqRvN2zHpqau0X34oNu8rZSaugbiCZsX35zPZ8vXNR8rys+if88iorEEm7e1nBjfHtvLKoklEkhDMKRvMaUV1azeUMKGLTvoXphDcWEuppTYdrLRFonG8Xs9DB/Y010VfYsL8XlMqmvrqWy6ArM/orE4juOQnZHW4va87HR6d297iF1tXQP/ePVDrv/1X/j2T2ex4IvVZISDXHj6eHfRw56jFB8t+pLX5n6GxzL4xunjW0xi7sj3Z9fCCy+9tXCP5XV3/f38d09B09WlRCJBXnY6fYsLW9QjhaB394KmzvWeV27aY8Kxg/B5LdZs3MqP7vhbc/x9zbXYl1gsQTxu4/VYZIRbLvc9enhfgt6Df4JCCtHqAhS7WKZBdka4+f9SCCaNGdIhj6UtO8uricUTfLJk7R7v+a6/mbf/maoDXAVR0zRN09py1HRUlqzcSCQa59hhfbhm+smEAz6kEIwb2Z8Z3zyDgM/LstWb9lh2NDsz3NwYLMrP4sZvn0ev7l3YWV7DZ/u5HPCB2Flezcr1W/BYJt88bzLjRvZHNq3Q9IMrziQ3K40Nm3ewbHXLoVX7Iys9zIBehaxcvxVHKZau+oqAz8fQ/sUkHIfyquSO9Iu/3IBSitMmHsN5p4zF57UwDYOzphzLpedOxJCShYvX7DG0rj02bt5JQyTG0P7FnHPSaEzDYNzI/vzmxssoys9yF+f4kQO48+YrOHXCyObhPo2NUZau3kQ8YTevvHUkev39z9myvZwuORnNk5jp4Pdn1boS6hoinDphBJeec8JeV3kq2V7Olm3lhAI+vnvJqQwb0KN5Va7rrzqL0UN6U13b0GIVu/2xa+haaWUN28sqMQ2DsSP68Z2LpzavMHYgahsibN1RTsDn5bJzJ5GblUZmWogffutsvjH1uOaFKw5UdkaIn/2/Czll/PDm9+ack8fQoyifaCzOtp0tF21oaIwihGD8MQOaH8v1V53FGZOO+a8fy/5Ytb6Eqpp6Rg7uyfcvPY2uXXLcRVrV0LT4wEnHDWNI333PRyrKz+LhW7/Lk/f+kIlj9rxaqGmaph19jpp9VHYt3XrC6EGtDmPYvK2MO/7wfPMk7r3tBxCJxvnzs2/w3oIDm/DZ2j4dbrvvaZCXnc7Pr5veaoO9uraeux99iS/XbnEf2qfszDC/vuFS8nMyiETjzXux7No/JScrjVg80bwXg89r8bNrk0uUuimlWLZmM//3yPPN8zR27dVQV9+4z70npBD87LoLGeG6GpCwbTZu2Umf4oIWe4nser9bG/rj2A7PvvYRz8+Z5z7ULnt772llH4i29qxoz34X+9LWPiqnThjJty6cQlVNA79+ODmBf3/en13PcdfePbtez/lfrGrx/90/TzMuP4NJ44a0ukzv7nkCMLBPV2665jzSw3vOQ0nYNi+88THP/fsj96F2mX7meC487fg2Nyrdfc+bXZ81YI8c3PUa7P7ajhnWl5lXnoXfNVdtR1k1Hk9y7xB3Pe3V1udeKcV7C5fz8BP/bnF7W4+lriGClILN28qa35vW9kVx2/157sqrtrj3DZp22nFMP2N8m/O/3PnJXh6/+/Ozy+6fu2VrNvGr+59pcVzTNE07+rT+S38EcpTioSf+zew586isqWs+q1zfGOWtjxbzi/ufae6ktCUWT7BizWZue/AfB9xJORA7y6v59cPPsmjZ2uZOQMK2WbFmM7+ZNfuAOikAKNX8OlTW1LFxS3Li8/bSSkp2JoflxOIJtpcmlyeOROP89g+zefOjxdTWN6JUcu5MVU09//zPx/zm4ef2WHigvRyluP+xV/lkydrmlZZ2lFVxz6MvsXDJnssTf/zZKp577SN2lFXhNA1NS9g2m7aWctejLx5wJ+Vw8d7CpazduJ2czDBnnngsdPD7A/D7p17n0WffbPGat+XLtVv4zazZrFizmVg8OU/FsR02bS3jnkdfOuBOCsA/58znjQ8+b14ueFe9f372TTZv3f+5WrtbuGQNf37uTSpr6lBKEYnGeX/BMv7vj193wA9UeVUdj//zHTZtLcOxneb3Zvacefz+76+5i7NwyRqe/feH1DRtppiwbb74cgO/fvg5qmu/3li1M7ww52PuefQlNm0t3WNjz7YsXLKGx//5TrvyBb08saZpmtaKI+aKysHW2tlWTdM0TdM0TdM6x1FzRUXTNE3TNE3TtMOH7qhomqZpmqZpmnbI0R0VTdM0TdM0TdMOOXqOiqZpmqZpmqZphxx9RUXTNE3TNE3TtEOO7qhomqZpmqZpmnbI0R0VTdM0TdM0TdMOObqjommapmmapmnaIUd3VDRN0zRN0zRNO+QYmWHfre4bNU1LumDCbIq7TCaaqKWmfpP7cIfo7JgBTy4XTHyBnPQB1EW20xgtcxc56AYWT+fE4XcQ8GdTXr0a24m6ixx0qYg5ZeSdDO11JYbppbJ2DY6y3UUOus7OH1IQU+dsx9E52zFSkbOadiTQyxNrh71e3fL55cyL+Xz5Oh547FX34f/K9AkvY8h0EiqO40RYUfIYX2583l3soEpFzMsmf4jtxLGdOHHVwLtLf0h1zQZ3sYOmIGscU4beTcKJY6s4DYntvDb/SnexgyoVMScMvJ3ueZOTMZ04O2rn8+GSjj03lIr8SUVMnbMdQ+dsx+nsnNW0I4Ee+qVpe7GuZC4JJ0bCiYJps6V0nrvIQZeKmDW1m5tixlBGfYf/eG6rmE/cjjbHrGxc6i5y0KUi5tJNjzfHc4izpWyuu8hBl4r8SUVMnbMdQ+dsx+nsnNW0I4HuqGjaXqzY+ncSThSlElw36mGO6xlzFznoUhFz/fa3STgxvEYdPxx9N73zAu4iB1155QYSToyhBUuZOXYOQZ/hLnLQdXbM6vp1RKNRbCfOtEEv8q2xm91FDrpU5E8qYuqc7Rg6ZztOKnL2QE0/czy333ApmWkh96FDhhSCGZefwY+uPhef13If1o4QeuiXdtjryKFfABMHPMSyLXfxYM9ifBUSIgIrGqWKOE/Ht/BGdEdz2UneXGYGetM1oxAZCBJRkqcql/PItk9b1LkvnR3TlD4m9P8dDaW3cnNuf6iUyJhCxhrZQiMPRTeyKl7bXP57oV6c7+lKVlYBwuenzIlx147PeLd8ZYt696Z7zmnkBIdzjPUiZ6guqHqBjDg4dpTlTh33RdZSZScbD37D4meBfpwQLMKfnoOwvKyMVHDrtg9YV1/hrrpNqYg5qsdP2Fm7iJsKqymq8qAaTcxYjKgT5a1EGX+ObGwu28MM8fNgP4alFSFCGWBavFWzmd9s/YD6eKRFvXvT2flDCmLqnO24mDpnOyZmKnL2QJw/dRzTzxjPjrIq7vjD8+wsr3YXOST4vBY/uvpcRgzqxYefrOChJ/6No3ST9kijJ9Nrh73M9BCTxg5he2klC75Y7T78X4vWfsyvA0NxdsbwmQH8oRAexyEjEedEI40s08vH8Sp+EujD9b7uhC0P0h9AWBaWkIxK786QrJ68XrrCXXWbOjumoxL0iK7gm6oPicoYAV8Yv8+P107QxYEzzCxKhUOZivH70CBON7Px+/wInxchJUHD5NTcASQ8Xj6vat/E1OqGtVwgY4yoDiOjkoA/DZ/Xgz8WoZeyONXKZLHdQI708JfAYIYbIUxfAOnzIoQi1xvmrC4jWBYpZ2tjpbv6VqUi5raqD/lVuDuBHQks4SMYSsMjBKF4jJHSzzhPJh/ZNZxs5XBPoD9FwoPwBxEeDwJFn2AWp+QP462KdTTY7ZtM3dn5Qwpi6pztuJg6ZzsmZipydn8NG9CDa6afTHlVHb/9/ew9OimmYXDuKWOZecVZXPWNKVx85gTOmTKGAb2LWLm+hIbGPd9v0zCYcvwwfnzN+XzrG1MoyMvc62/11zHO5IoLTuSSs07g/Knj2Flezaatpc3lErbDJ0vWMKh3N44Z3AthCJav7pjXRUsd3VHRDnsd3VH5dcGJWA0xLBQeO4ERacRjJ7AQWMJhKF4ut3IYKv1IKRHSAseGeAIhFcLjoTicQ2GwgPfK2ncmLBUxf5k7nnhdHT5pYMVjGLFGLMfGg8AnFFNEkG+Y2RRJLwiJEAY4NsJJgJBIn5cxWb3YFI+wtm6bu/o9DAgU8I1gb1Q0gg+FEY1hxiJYgAVkCLhApnGOlUlYmCjDRAgJiQRC2WAYeAM+TsobzmtlX1KX2PfZ21TE/E7eWHrYXkzHxmsrjEgDZjyKJcCDogjJhWYmJxnpWFIgTAulFNhxBAphWqQHwxyfN4TZJZ+4q29VKvInFTF1znZMTJ2zHRezs3N2f4RDAW781tmEAn6e+td7LF+z57C/8ccO5KppU0gPBxBCAGBZBoV5WYwc3IuFi1fTGEle4TMNg2mnHc8Pv3U2Jxw7iFDAhxCCr7aWtvlb3atbPr+aeTETRg0kFPAhZXKGgu04fLJ0bYuOCk2dlfWbtzN2ZD/69Shk5foSyiu/viqlHf70HBVN24dsw4ej4kgpMKSBKU2kNLECYcxQOtKwCBg+BBJHCYQAoRxEIgaxCMSiiGiEqRn93FW3qbNjXpo7AhyBlBJDSExpYgoTU1qYwTCmL4SQJgHDixACYRggBcKxUbEoxKOoaBTR2MCV+WPd1bfqmpxROHYCKSRSGJjSwJImpuHBCmZgeAIIw4spPQBIaYAg+YMdjyISUVQkSjAW4epuE93VtyoVMY8LFILtIKSBIQ2kTL6uljeIEcpEml78MnnGFEAIiRQKkYhDvBFiyde2jwwwKWeQu/pWdXb+kIKYOmc7LqbO2Y6JmYqc3R9Txg2ha5dsFq/cyNyFrV8lshPJjsFdf36Ri2bew0Uz7+GBx1+ltq6B3Kx0BvXt3lx21JBenHfKWNLDATZs2cmy1V+1qMstHArwgyvOpDAvk5Id5fzpmf9w1U0PMO26O7nkhnv54JPWH9NXJaX858MvCAV8nHvyWGRTB0o7MhzWHZVe3fJ57O7ruePHlxMOBZh5xZk8dd+NvDDrFv7yvzM4beIx7rswelgffvezq5n94E28MOsWnrn/R/xixnRys9Kay5wwehDP3P8jLjprAj+9dhqzH76ZR//3Ogb17caMy89g9oM38bc7f8DYES2/nMKhANdeehpP3HMDL8y6hdkP3sRdN19Jvx6FLcrRNAns1BNG8vvbvs/sh2/mhVm38OQ9P2TmFWcSDh26E+yONqdmDsBRCqkEQpoIaWFIC8P0YATSkF26Q2YewvAhpIEQEiXN5EfLSUA8DrEYKpLAF4/TP23PXHBLRczB/nxQKnkmVhoIaWJID9KwMMLZiIJiRCgLDA/JVpABwgRAJmKQSEA0hhOz6WJ43dW3KsPwJBtDwkAIM/kchQfD8mNm5yLyuiK8oeRZTAyQRvI5KgcRj6LiMYjGUNEY3Tzp7upblYqYliHBUaCS75UlLQzDwvAGMfMKETkFTe+lhcKAXe+lsiEWAzsGkRgq0siAYIG7+j2kIn9SEVPnbMfF1DnbMTFTkbPtFQ74mDx2KA2RGK+9+2mbcz3mfb6Sn937FAu+WE3CtknYNnMXLmfNV9tQKtmR2WXFuhLWfrWVvz7/Njf/32NUVNe1qMttV0fpy7VbuPnOx3njw8+pbdj3FUCA9+Yvo6yylsF9uzGoTzf3Ye0wdlh3VHbxez38+oZLmDR2SPPKDxlpQS4/dxJjhvVtLnfRWRO4+Zrz6V6YgzSST91jmYwY2JM7b76CgX26NpcFmDR6MCMH9UIKQWZaiO9Mn8qkMYORhiQtFODUE0Y2l83OCPHL6y7k5PHDCfqTXyDSkPQu7tJ8GXMXKQQ/uOJMvnPRKeTnpDf3/v1+D5PGDuG3N15GXnb7flC0juUTJqLpn8IEIZM/ZNKHEbch6iC8YZTHhxICmn7wkBaYPoThTTYeHAVxB5/Y949LKmKaTV8FEpm8rzAxDR+m4cdI2KAMCKQhjKaVVaQFIhlTeYIIYYESiITCSLTvbJYUAAIpBI40UNJEmh5MZaKiNpg+CKSjpIkQNMdDelCeQDKmLSChkIn2fZWlIqZAgFIgJI40QZpIw4eRUBBNgDcE/nQQRvJsuPQmG0SGFyw/KBPhADEHyb5f21TkTypi6pztuJg6ZzsmZipytr369epKXnY6O8urWfPVVvfhNvm8FudPHcegPt1Z99U2PluxrvlYbV0Dv3rgH7z23qI2Oz67Gz6wJ7G4zUtvLSQSjbsP79XO8mpWrt9C0O9lQO+WbTnt8Na+b61DXPfCXAryMvngkxVc85NZXHXLQ3y5dgt+n4fhA3sA0L9XEac1dSzmzP2Mq256gAtn3MVtDz3LjrIq0sNBLph6XIt683MyWLRsPQ8/+RrxRILuhTmsXF/CnX/8J42NMXIy08hoWrpv2mnH07NbPuu+2s5P732SadfdyTU/mcXb85bgMQ3OPmk0Xk/yzMj4YwcybmR/orEET/7rfS678b4Wl08L8zI5e8roFo9FS42ljVuTY2QFIBRKWChpYVk+UCaqug7VGEcIH0gPQnrB9CNMP8IKgBFAKAvhSIQjWd/w9SoybUlFzJ3xOqRMDm1ASJRpoSwTy/KjYgpVVQsxBww/SC/C8CItL1iBZEzT3xxzS+Pez5rtErETSClRAhAGSlpIy49p+aEhhqqqAxswvCjDC5YPafgQZgBhBkD6EMpEOAYbGtu3olEqYjpKIJsakY6UOIYH0/JjGj5UTQOqphGU2dy4xGyKaTTFFF6EYyIdg7X1LcdntyYV+ZOKmDpnOy6mztmOiZmKnG2vbgXZeD0mG0tKicYS7sMtZGeEePjW7/LCrFt46r4bufSciSxd9RV3PfrSfncwdslIC5GTmUZ1bQOD+nRtMdrkiXtu4PuXnrbPJYhXrN2Coxz6FO/7Kp52+DgiOioNkSiPPDWH+x97hcqaOmrrGvh02VqUUgSarm6MGd6PtFCAT5at4y/PvUVtQwRHKZas3Mgjz7xBQyRK94IcuuRmNtdbU9fAi2/O56stO4nEEjREosyeM4+yyhoSymka15q8ZDqwdzeqaxv4/VOvs2p9CQCVNXX8ZfabbNxaSn52OgW5WQCMP2Yglmnwxgef8+J/5hOJxpsvnz7zyockbJsBvbs2d2y01FnfWEEcB2lagMCRAlt6EKYfafqR0odUJtIKYpynYJCJYYYQZhBhBJGGH4EXofzMrS2hNt7gDrGHVMR8snxJ04RYcAQ4SGwspBVEGj4kFlJ5UUYQ8xIQXbxII4Q0AsmYwofAh8DPm9Vr3NW3akFtCYZlghIoQEkDJSyEFUg+T2UihR+nyItxgcIIBRFW058RROJLPk+CvFz+ubv6VqUi5s5YPdLatfeFxBFW8syzGUAaTTFNP2qMgZgiMcwAwgwhrBDSCCKFF4GXKgfeLFvsqn1PqcifVMTUOdtxMXXOdkzMVORsexV1yUEIwfbS9nVmdyeF4Nihvfmf751/wPuuGBKkFOTnpHPeKWNbjDYJ+r2cMn44N33n/L3OP6moqiMed0gL+92HtMPYEdFRqa5tYMmqr9d1B3jpzQV8Y8ZdzftqZKUHcRyHFWs37XEJsmR7GdW1DXh9HgK+5IREgG2llc2dDoDN28pYsrJlHIDszDQy0wJkpAW596ff4oVZtzT/Pf27H9GrWz4ej4fCvGRHJS3sJxpLtLqixpqvthKJJfD7PIQCPvdhLQW+bCxHmh4cwFEKW0ECK3n20PIjrBBRI0i00Y9x/A5k/yhShpAihBBhhEwHgjxWvtBddZs6O+aOWDV1ykaaFqr5n0FCGMkzs01n9BpkGrYJcupWRK5M/ogSQMgQQoSoSiieK1vgrr5Vj1csSv5okxw94Tgq+cMtvU0xg8mY8SBkR+GUbUifHymDSIIIIxnzo7oSltft+VlqTSpiPlHxBYbHi0KgVPKVTWCgTG/T6xoEK0hDYxDRqwJxQhXSCCOlHyFCCJEGKsSTlcvcVbeps/OHFMTUOdtxMXXOdkzMVORse5lG2x0At/KqOmbc+iemXXcnl914H7/72yuUVdYyoFdXrpl+srv4fnGUYuX6Lfxm1mwumnkPl914H0/+630i0Th9igv2Ov+ksrqWuG27b9YOc0dER6W9FGqflzQPhJQCmlY/aS9HOcRiHb8Trvbfu3vHXAyvF8cBW0kcBAkFcSUQTZfnBV5K3upJfFs+zog1iF61IPwgAiB8vFv/FZ/VbXBX3aZUxHy2ZgXS58N2BLYjsYGEI7AxmmL6UNLHpn/1w4n6YPIqyFAggkAQhJ9HqxZSZze6q27T6kQd0vLhAAkkcSVJOAqElXyOho9oVRbbXu8PwUY4aS1YnmRMFQQR4JHK+e5q96qzYy5p2EqDYeIgsJUgoSS2EsRtgZCeZEzpo3plITWf9cUpLEEctyX5mhIA/OxUCf5R0b7GECnKn1TE1DnbMTF1znZczFTkbEeKRON8+OkKZv393zREohR3zSM748CuqgCUlldz319f5vMV60nYNpFonBf/M5+lq77CY5lk7qXuoN+LkZzUpR1B9q91fRhraIxiSIMRA5JzVnZX1CWH9HCAuvpGqmvr3Yf3qbq2nrr6Rsoqariu6SyD++/SH97LvM+T66xHonH8Xg/DB/Z0V0Xf4kJ8HpPq2noqq/f/sWgd4127DGF5SChF3JbEkMSVQQIvyAA+b4icYBDnw6HI0m44I5fx0ZAsZqWfyF+yJvA4+x6n7dbZMedWr6XM58MRgrgDcVsSVZK4MlHSDzJAyBsiS6Qj3hkFMR9q8mJmFw/m4fQTeSxzFC/V7d9whN9uewuRkYXtQMJONhBiyiCmTJABkAHSfUFCNbnID4+FQD2Rk1fzaM7xzMqczJ/SurK0vv2NBFIU877Kj/CGs4k7YNsQQxJTkrjygAwgjACZ/gDmmm4YK4ZhF2yiZGIlszJO5A9Zk/iTZVBn73toye46O39IQUydsx0XU+dsx8RMRc62x5bt5QB0aRqivr8isUTyap+jsL9e+KvdKquT7ai0YICu+dktjkkh9jk/BaBLXhZej0lpRY37kHYYO2o6KktWbiQSjXPssD5cM/1kwgEfUgjGjezPjG+eQcDnZdnqTZRX7f8EtfKqOr7aspPszDA3fOtshvYvxjR2je/d0+IvN6CU4rSJx3DeKWPxeS1Mw+CsKcdy6bkTMaRk4eI1ewxR01Ln8e0fsS0jHUd4iCtF3IYogjgGSvhABskMZOD3hGDeaEqqh3N8v9n0KFrK9gZFvy4/omveeHe1e5WKmDdtfB4jt5iEcogBMaWIIok6BsgAppmMaSQyKPtgKg12Oucf82d8ge2UNHo4ffjfCPpy3NXu1W93vI03tysx5RBzFFEFUZI/3Mggfm+YjEA6VHThi0XT8fgr+cbYvxJJ1FMaK+Ls0Y+7q9ynzo65tm4nL8c3YYWyiClFzFbEEESR2HhBBknzpxP2p8PaPizbcA4F2Z8xZcTLVDbY4JnM6P4/cFe7V6nIn1TE1DnbMTF1znZczFTk7L5s3FJKJBqnR1Hufs2P9XktRg3uzfcuOZWA38uy1V9RVbP/7ShHKZat3oTPZ3HlBVMY0rQfSzjg4+rpJzO4TzeqaupbDMd36929C1JINm8tcx/SDmOH9c70u3Ykj8UTvDd/afNuqK3ZtrOSrl2y6dE1j749Cjlv6jimnzGe8ccMIODzsnlbGX/6x3+ob4xSXJTL6GF9qaqp5+15S5rj1NY3tvj/7nFLK2o4ZnBvunbJZvLYIVx4+vFcdOaE5r8Rg3ry9rwlAHxVspNBvbtRmJ/F8AE9mHbqcVx4+vGMHNQLyzRYvnYLj//zHRIHclriKNTRO9Pv8k7lMqYUj8efAKFE074FFkJ6MM0AQnhAekF6+OPWk+neZSejCt9ieyyX7ZWZFGROoD6xiZr69o0TJ0UxX6pYxLRep+LU12EIL0KYyeEe0oNpBkF4QHqos8P8fdtkhhcvYUjXD/iybBC1DV56FZ7N5vJ3iCfadza1Il7HJrueSV1GkmhswJCe5phSejEMf3PMxdGezK8axrHd36O4YDFLSobh2EF6dT2FtVtfdlfdplTEXFG/hZyMAvp4C3AScaS0ksuNSg+m4UdKb1NMLy9Xj6LGyObYgjkEMypYua0fYU8vQuFctu3HcJpU5E8qYuqc7ZiYOmc7LmZn5+y+1DVEGDu8L11yMvmqZCclO1qfVH/9VWdx83fOb27bTDv1OE4YPYiMcIDlazYz68nXmtsu2Rkh7v6fq7j6wpO56MwJFBflAVBclNdq22h7WRUjB/emW0EOJ44bykVnTuC8qePoU1xANJ7giRffaXVuL0372E0//XiUgn+8+gFVBzA6Rjs0HTUdFQV8smQNSEFhfhZej4UQgvrGKHMXLueBx/9NZdNmRAfSUamoqmX+F6soyMskMxzCal4xJam8qrb5w5iwHT7+fCVpoQB52el4rOTZi+raBl57/1P+8NQcYvGDP5fmSNVZHRWA18s+Y0TBcLIJomzn63X1xa4fNC8ILx+LbBZtGkR2zldM7jaXbbFctlVl0LXLOFZtnu2udq9SEfOfpQuY2mMy3ogNQiYbJ2LXD3fyR9SWHubZOSzeOoh+BZ8yutvHLCkdSl3EpEv+MDZue8NdbZu2RsvZaFcxJm8Uor4eIa3k8xRWcv8Gww942UwaKxoy2FDXk9Fd59G322oWbBwOeLH8grLK5e6q25SKmIuq1+ENZ9A/WIyKRNm10RzSwjD8SMMPeFgsclhZlk+j5WN84Vz8mVFWbCsmHOjJ5oo3SSTatwkaKcqfVMTUOdsxMXXOdlzMzs7ZvYnF4qSFAwzrX4xlWXz82UpaG9MxbkS/5g4HQMK2KdlRwfNzPuZvz7/dou0S8Hk4cdxQwsG2V+HavW1U3xjl06VrKcjLJCs9jGkaJGybjSWlzHryNRYubnvI23mnjGHciH4s/nIjr72/yH1YO4yJnoXpreWiph02enXL55czL+bz5euaV3nraKfljeU7mROxGmL4zBA+K4THDOK1QkSCPu4s347h74+NzfljHmf+mpWsqbiFyoYvWLTmPnd17ZKKmDf0uoDJFGMmBD4ziNcK47WCeMwQJf4If6xOx/SE8PtruHD0n7jvTQ8+31Ws3vY3Nm5/011duzw06DqKqsDnCeAzks/PY4bweMJ8KDbxdmIoSii65X/FlH6Pc/urU8hJH8K81bdQ19D+jcp219kx+6V35daiiwlUR/BZLd9Ly5/OH+q+ZKc1GpsEYwd+REi8wvNfzMCwBO8svtZdXbukIn9SEVPnbMfE1DnbcTFTkbOtCYcC3H79xXTJzeRPz7zBuwvav2pbKhUX5fKLGdMRCP7vj/9kzcb9z2/t0KU7KtphLxUdFYAp+aO5sfsFyNpGLAJ4zTClYYNfr/09X5QuYUyPX5KXOQIbmyp7MR8v+Y27iv2Wipgzen+DM8MjIRLHIwJ4Peks81bw8+X3UlZfxmmDn8HweLFFgjWlf2Xd5jnuKvbbQyN/TO94CBk38BgBPIEcXost4o4lD5Lu78mk/veTEAmEqXh7ydVEotXuKvZbZ8csCOTxwNCZhGqimI4XjxUmEQrzyM4XeX79K/TIOZuh3a4mQQI8jby+4JvuKvZbKvInFTF1znZMTJ2zHRczFTnbmgmjBnLtZacTjcW4+9GX+HLtFneRQ4rPa/Gzay9kQK8inn3tI56fM89dRDvMHdZDvzSNTh76tbsN9Vv5uGE1J/Q5gaycbJaykys//hHbm3YoLql6nwz/YAKBAmobN7C1/L//Ak1FzIWVK6g04hzbewyB7Ayeq/iQX35xLw1NG5ytLX2BHtnnYHlDbCl/m9r9GKfdlte3zyM/pxv9uw+A9BC3rf8Lf1+bHFYRTVSxreYTuuecimn6WLN1NrbT9rDP9ursmHXxemaXvMPY3uMpLCiiMiD4/he3M3/7pwBUNawmHo+RkzECpaKs3faiu4r9lor8SUVMnbMdE1PnbMfFTEXOtmbTtjIsy2DkgJ4M6N2NRcvWUd8YdRc7JPi8Fj/45pkMH9STDz/9ksf/+U6rw9W0w5u+oqId9lJ1RUXTNE3TjkTTzxzPgF5d+d3fXqG27uBM2D/YpBDM+OYZSCl5+O+vkdCbPR6RdEdF0zRN0zRN07RDzlGzj4qmaZqmaZqmaYcP3VHRNE3TNE3TNO2QozsqmqZpmqZpmqYdcnRHRdM0TdM0TdO0Q47uqGiapmmapmmadsjRHRVN0zRN0zRN0w45esNHTduLCybMprjLZKKJWmrqN7kPd4jOjhnw5HLBxBfISR9AXWQ7jdEyd5GDbmDxdE4cfgcBfzbl1auxnY7fUCwVMaeMvJOhva7EML1U1q7BUR2/zn9n5w8piKlztuMcLTmradrhQXdUtMNer275/O4X11BclHvQd6Yf2v2bBKzuFGafwMBu08GIUVa1wl3soOrsmHG7gRE9riXo7UqPvKn06zaNbdULiEar3EUPGssI0yf/XDIC/elbNI0ehaewZstL7mIHVSpiFmVOJDdtBDnhEfQrmk52Zh827XjPXeyg6uz8IQUxdc52nKMlZzVNOzzooV+athfrSuaScGIknCiYNltK57mLHHSpiFlTu7kpZgxl1FNds8Fd5KDaVjGfuB1tjlnZuNRd5KBLRcylmx5vjucQZ0vZXHeRgy4V+ZOKmDpnO8bRkrOaph0edEdF0/Zixda/k3CiKJXgulEPc1zPmLvIQZeKmOu3v03CieE16vjh6LvpnRdwFznoyis3kHBiDC1Yysyxcwj6DHeRg66zY1bXryMajWI7caYNepFvjd3sLnLQpSJ/UhFT52zHOFpy9kBNHDOYu//nKnp1y3cfOqQM7NOVe3/6LUYN6eM+pGmHFdGzMF25bzwSZWeEuO2GSwH41f1PU15V5y6iHaZ6dcvnlzMv5vPl63jgsVfdh/9rEwc8xLItd/Fgz2J8FRIiAisapYo4T8e38EZ0R3PZSd5cZgZ60zWjEBkIElGSpyqX88i2T1vUuS+dHdOUPib0/x0Npbdyc25/qJTImELGGtlCIw9FN7IqXttc/nuhXpzv6UpWVgHC56fMiXHXjs94t3xli3r3pnvOaeQEh3OM9SJnqC6oeoGMODh2lOVOHfdF1lJlJxssfsPiZ4F+nBAswp+eg7C8rIxUcOu2D1hXX+Guuk2piDmqx0/YWbuImwqrKaryoBpNzFiMqBPlrUQZf45sbC7bwwzx82A/hqUVIUIZYFq8VbOZ32z9gPp4pEW9e9PZ+UMKYuqc7biYR0vO7q/xowby3YunEk8kuPcv/+LLtVvcRQ4Zux6rbdvc/ehLh/Rj1bS9OSI6KtNPH88ZJ47iX28t5MX/zHcfBt1ROaJ1dEelizeDW0OjMBsbyAiF8Af8mHW1mJE6PChecsq5t2EDPwn04QJPHo5lIdOzEb4AYCAsHx9Fy5m54nl31W1KRczJ4Z5cLIvxJKJkpmXgM02MuiqseAQHh3viW/g4XsF9wf4MNdJQ/iAinIGwvCANhC/ErNLF/HXjh+6q23Rd5miGxCzClklaOA0PDkZNBZbtUEmUnzSuBxT3BvqTZ/hQoXRkOB2kAYaHRo+PG9fP4ZOK9e6q25SKmPfmnUiorpH0QIBwKIwRacSsr8ZSNl/SyE8a1zLeyOBmf098wkCk5yCCYRASYVlsEXD18tmUxWrcVbcqFfmTipg6Zzsu5tGQs/ujKD+LX8y4CI9ltNnwz81K4zsXncLgvsX4vBYJ22b1+q38/aX3WL1xa3O5aacdx6VnT2xxX7dtpZUt2iq76h7Uuzt+vweAxsYYy9du5pGn51BZs2ebZvLYwXznolMpr6rlN7OeY2d5tbuIph3yjojJ9CdPGE6/HoUsW7Op1S8PgIDPw4njhgLw3vylNEYO3UvL2v7JTA8xaewQtpdWHvTJ9AC/LjgRqyGGhcJjJzAijXjsBBYCSzgMxcvlVg5DpR8pJUJa4NgQTyCkQng8FIdzKAwW8F5Z+87epiLmL3PHE6+rwycNrHgMI9aI5dh4EPiEYooI8g0zmyLpTTZGhAGOjXASICTS52VMVi82xSOsrdvmrn4PAwIFfCPYGxWN4ENhRGOYsQgWYAEZAi6QaZxjZRIWJsowEUJCIoFQNhgG3oCPk/KG81rZl9Ql9n32NhUxv5M3lh62F9Ox8doKI9KAGY9iCfCgKEJyoZnJSUY6lhQI00IpBXYcgUKYFunBMMfnDWF2ySfu6luVivxJRUydsx0T82jJ2faSQnD9VWfTsyiPV979lPfmL3MXYeyIfvzs/11Ij6I8TDM5PE9KSW52OscO7cOX67ZQUZW8wjeoTzeG9i921dBSXUOkua1SXJTLrTMvoXdxAZb19dA/yzIozM9ixKCezPt8FbFYvEUdG0tKyckMM2JgT9LCgQ75fdS0jqbnqGjaPmQbPhwVR0qBIQ1MaSKliRUIY4bSkYZFwPAhkDhKIAQI5SASMYhFIBZFRCNMzejnrrpNnR3z0twR4AiklBhCYkoTU5iY0sIMhjF9IYQ0CRhehBAIwwApEI6NikUhHkVFo4jGBq7MH+uuvlXX5IzCsRNIIZHCwJQGljQxDQ9WMAPDE0AYXkyZPHsopQGCZCMzHkUkoqhIlGAswtXd9n52cpdUxDwuUAi2g5AGhjSQMvm6Wt4gRigTaXrxSy9CJr+OhZBIoRCJOMQbIZZ8bfvIAJNyBrmrb1Vn5w8piKlztuNiHi05216jh/VhQK+ubCzZyb/eXOA+DMCGzTvYWVbFa+8t4pqfzOLCGXdx319fpraugYy0IJPHDm4u+8Kcj5l23Z2t/j372oc4jsOajVubr6aMHdGP7MwwazZu5Ud3/I1p193JRTPv4YHHX6W2roG87Az69Sjc7dF87YU589heVsWxQ/swbEAP92FNO+Qdth2VaacdxwuzbuGFWbcwcXTyC+DSsyc23/bCrFt47O7rW53wlpke5pc/uIjZD97E8w/fzCO/vpZxI/u7ixEOBbj20tN44p4beGHWLcx++Gb+9Nv/xxmTRyGFaFH2+qvO4pn7f8QJo1t+Kffqls9jd1/PHT++vMXt2uHh1MwBOEohlUBIEyEtDGlhmB6MQBqyS3fIzEMYPoQ0EEKipJn8aDkJiMchFkNFEvjicfqntf5jsrtUxBzszwelkmdipYGQJob0IA0LI5yNKChGhLLA8JBsBRkgTABkIgaJBERjODGbLobXXX2rMgxPsjEkDIQwk89ReDAsP2Z2LiKvK8IbSp45xUgOY0GCchDxKCoeg2gMFY3RzZPurr5VqYhpGRIcBSr5XlnSwjAsDG8QM68QkVPQ9F5aKAzY9V4qG2IxsGMQiaEijQwIFrir30Mq8icVMXXOdlzMoyFn98epE4/BMASvz/2MSLTlVYtddpZXc9Odj/OX2W9RWVOHoxQfLfqSt5uuvvRspS3iVpSfxZRxw6hriDBn7ufNt3s9yU7oqvVb2ViyE4CEbbNw8WrKq+twlEMs1vookfKqOuZ/vgq/18OpE0a4D2vaIe+w7agcqPRwgF/MmM7wAT2QhkQIQW5WGtdMP5niotzmcnnZ6fz2xss4efxwgv7kj5gUguyMMN/+xkn84Ioz9+isaEcenzARTf8UJgiZ/PGUPoy4DVEH4Q2jPD6UEND0I4u0wPQhDG+y8eAoiDv4xL4bRKmIaTZ9FUhk8r7CxDR8mIYfI2GDMiCQhjCs5B2kBSIZU3mCCGGBEoiEwki073MhBYBACoEjDZQ0kaYHU5moqA2mDwLpKGkiBM3xkB6UJ5CMaQtIKGSifV9lqYgpEKAUCIkjTZAm0vBhJBREE+ANgT8dhJE8Gy69yUaY4QXLD8pEOEDMQbLv1zYV+ZOKmDpnOy7m0ZCz7dWtIIfuhTlU1zSwoo2h5e1RWrHvuTonHT+cnMwwCxavYdX6kubb53++iqqaes44cRS3Xn8J/XsVMaRvd34182K6F+by6ZK1LF/T9ups879YTV1DhOKueWRnhNyHNe2Q1r5vrUPQ7pdO536yHICnX5nb4hLqVTc9wPrNX68UAhDweQl4Pbz+/iIuu/E+brzjr+woqyIjHGTkoF7N5S45+wSK8rPYUVbFbQ89y4Uz7uKqmx5gztzPUI5i9NC+jNitvHZkWtq4FSklCEAolLBQ0sKyfKBMVHUdqjGOED6QHoT0gulHmH6EFQAjgFAWwpEIR7K+oWU+tiYVMXfG65AyOZwCIVGmhbJMLMuPiilUVS3EHDD8IL0Iw4u0vGAFkjFNf3PMLY17TupsTcROIKVECUAYKGkhLT+m5YeGGKqqDmzA8KIML1g+pOFDmAGEGQDpQygT4RhsaGzfikapiOkogWxqRDpS4hgeTMuPafhQNQ2omkZQZnPjErMpptEUU3gRjol0DNbWl7qr30Mq8icVMXXOdlzMoyFn26tblxwCPh+lFTVsL610H94rn9diWL/uxBMJFn+5931+iotymThmENW1Dcx5/7MWx9Zs3Mq9f/0XpeU1DO3XnTt+dDm33XAJxYV5/OvNBcx68nUc1fa6SJu3lVJaUUN6OEBhXpb7sKYd0g7bjsqBStg2s9+Yx6PPvUUkGuerklI+X7EeIQSGkXw5uuRmMqh3NxoiUR555g2WrNyIoxS1DRH+8txbfLJsHX6/h8H9urur144w6xsriOMgTQsQOFJgSw/C9CNNP1L6kMpEWkGM8xQMMjHMEMIMIowg0vAj8CKUn7m1JdTGG9wh9pCKmE+WL2maEAuOAAeJjYW0gkjDh8RCKi/KCGJeAqKLF2mEkEYgGVP4EPgQ+Hmzeo27+lYtqC3BsExQAgUoaaCEhbACyeepTKTw4xR5MS5QGKEgwmr6M4JIfMnnSZCXy78eJrE3qYi5M1aPbJ4AK3GElTzzbAaQRlNM048aYyCmSAwzgDBDCCuENIJI4UXgpcqBN8sWu2rfUyryJxUxdc52XMyjIWfbKy8nHY9lUFq5fytmSSH43sWn0qNbPh9/tqrVCfi7O33SKDLCQRYsXt08vGt3peXV7CirbNEhsSyD4qJc/E2jPtoSjSWorW/ENAwy0vUVFe3wctR1VEoranj7o5ZfnBXVLc+mBXwevD4PZRW1bNi0vcUxRynWbUquDpOVHmxxTDsyfdlYjjQ9OE3vv60ggZU8e2j5EVaIqBEk2ujHOH4Hsn8UKUNIEUKIMEKmA0EeK1/orrpNnR1zR6yaOmUjTQvV/M8gIYzkmdmms9ANMg3bBDl1KyJXJht+BBAyhBAhqhKK58pan2zq9njFomRDk+SIDcdRycam9DbFDCZjxoOQHYVTtiF9fqQMIgkijGTMj+pKWF7X9rCH3aUi5hMVX2B4vCgESiVf2QQGyvQ2va5BsII0NAYRvSoQJ1QhjTBS+hEihBBpoEI8Wbn3hs7uOjt/SEFMnbMdF/Noydn2MJqGiO8PKQRXXjCFCaMGsnLtFv74jzf2esWjf68ixg7vS1VtPW98sGdnMi87nV/MuIih/Yv5qqSUWx94hpfeWkg8bnPM4N7cfM15+LxNQxzbUF1b775J0w4LR11HZX8kbJtYIuG+WTvK3L1jLobXi+OArSQOgoSCuBKIpiElAi8lb/Ukvi0fZ8QaRK9aEH4QARA+3q3/is/q9n7pf3epiPlszQqkz4ftCGxHYgMJR2BjNMX0oaSPTf/qhxP1weRVkKFABIEgCD+PVi2kzm50V92m1Yk6pOXDARJI4kqScBQIK/kcDR/Rqiy2vd4fgo1w0lqwPMmYKggiwCOVre+d1JbOjrmkYSsNhomDwFaChJLYShC3BUJ6kjGlj+qVhdR81hensARx3Jbka0oA8LNTJfhHRfsbYKnIn1TE1DnbMTGPlpztCKZh8IMrzuSMycewYv0W7nr0pTYn4O9y2sSRhIN+Fi5ew1clew6Vu/L8EynKz2LVhhJ+ft+TLF29ib+/+C53/vEFausaGNC7iJPHD3ffrQW/d+9XXTTtUKU7Kq2IJ2wSiQR52en0LW65eogUgt7dC1BKUbK95XhfyzTIzgi3KDtpzBCC3uSKHdrh6127DGF5SChF3JbEkMSVQQIvyAA+b4icYBDnw6HI0m44I5fx0ZAsZqWfyF+yJvA4e/747Etnx5xbvZYynw9HCOIOxG1JVEniykRJP8gAIW+ILJGOeGcUxHyoyYuZXTyYh9NP5LHMUbxU174hNLv8dttbiIwsbAcSdrJRElMGMWWCDIAMkO4LEqrJRX54LATqiZy8mkdzjmdW5mT+lNaVpfX71zBJRcz7Kj/CG84m7oBtQwxJTEniygMygDACZPoDmGu6YawYhl2wiZKJlczKOJE/ZE3iT5ZBnb1/w1k6O39IQUydsx0X82jJ2X3ZWV5NLJ4gN3PfK6aFQwF+8YPpTBg9iC++3MD//uF5auv2/hoMG9CDY4f2oayyln+/+6n7MACZGSEcx+Hjz1e16PQsXrmR9Vt2IqUkL7vtx+f1mGRnhonFE2wvrXIf1rRD2hHRUWlojAJw0nHDGNL3v583UrK9nC3bygkFfHz3klMZNqAHUggy00Jcf9VZjB7Sm+raBj5durb5Pg2NUYQQjD9mALlZac1lz5h0DLJp7ot2+Hp8+0dsy0jHER7iShG3IYogjoESPpBBMgMZ+D0hmDeakurhHN9vNj2KlrK9QdGvy4/omjfeXe1epSLmTRufx8gtJqEcYkBMKaJIoo4BMoBpJmMaiQzKPphKg53O+cf8GV9gOyWNHk4f/jeCvhx3tXv12x1v483tSkw5xBxFVEGUZGMTGcTvDZMRSIeKLnyxaDoefyXfGPtXIol6SmNFnD36cXeV+9TZMdfW7eTl+CasUBYxpYjZihiCKBIbL8ggaf50wv50WNuHZRvOoSD7M6aMeJnKBhs8kxnd/wfuavcqFfmTipg6Zzsm5tGSs/uycctO6hsj5Gal0SU30324WWFeFr+cMZ1Bfbrx4ScruPOPL+7zSooUgtMmHoPf62HeZysp2dH6YgeOrZBSMmZYP3oU5UHTlZvxowbSvTAHx3H2uut8QW4WWekhausbqaja9+pjmnYoOSJ2pjcNg1FDepORFuTEcUO56MwJXHTmBM448ViWrNxIZU39Xnem37VL7NLVX/Hl2i0oYEd5FaOG9CY3K53JY4cw/YzxnHPyGLoX5mIrh1fe/YSPFn29++2ux5CXnc5ZU0Y3l62PREnYNjV1Dbw9b0lzee3g6eid6Xd5p3IZU4rH40+AUKJp3wILIT2YZgAhPCC9ID38cevJdO+yk1GFb7E9lsv2ykwKMidQn9hETX37xomTopgvVSxiWq9TcerrMIQXIczkcA/pwTSDIDwgPdTZYf6+bTLDi5cwpOsHfFk2iNoGL70Kz2Zz+TvEE3s/k7hLRbyOTXY9k7qMJNHYgCE9zTGl9GIY/uaYi6M9mV81jGO7v0dxwWKWlAzDsYP06noKa7e+7K66TamIuaJ+CzkZBfTxFuAk4khpJZeOlR5Mw4+U3qaYXl6uHkWNkc2xBXMIZlSwcls/wp5ehMK5bNuP4TSpyJ9UxNQ52zExj5ac3Zu6+kZGDupFcVEuFVW1LZYN3t23LzyJEQN7IoSguCiPC08/vrktsuvPdhy+3G2J49HD+nLOSWOoqm3gsRfepra+9SGIjnIYPqAnhXmZnHrCSC46cwIXnn48x43sj9/r4cu1W3j8n++QsB33XQGYNHYwo4f1YcHiNXzwyQr3YU07pB0RHZWSHRXU1jfSrSCHgNeDSC48Tyye4P0Fy/a7owJQVlHD0lVf0TU/m/S0IIYhcWyHzdvL+eM/3uDND1tOyC/ZUUE8YdOrez5ej0XCtlmy6itmPfk6Iwf1IhqL645KB+msjgrA62WfMaJgONkEUbbz9Vr+YtePqBeEl49FNos2DSI75ysmd5vLtlgu26oy6NplHKs2z3ZXu1epiPnP0gVM7TEZb8QGIZONE7GrsZBs+NnSwzw7h8VbB9Gv4FNGd/uYJaVDqYuYdMkfxsZtb7irbdPWaDkb7SrG5I1C1NcjpJV8nsJK7t9g+AEvm0ljRUMGG+p6MrrrPPp2W82CjcMBL5ZfUFaZXKq8PVIRc1H1OrzhDPoHi1GRKLs2t0NaGIYfafgBD4tFDivL8mm0fIwvnIs/M8qKbcWEAz3ZXPEmiUTEXXWbUpE/qYipc7ZjYh4tOdsWBdiOw6ghfcgIB/ng0xWtdgjGjehHcdPVjrbs3saQQnDNRadQmJ/FW/OW8OGnX7qLN9tYUsqajVvpkptBWiiQbI8oRVVtPW99tJhHZ7/VPLLELTsjxNXTT0FKyT9e+YCdFW1fedG0Q5HoWZje9lIUmnYY6NUtn1/OvJjPl6/jgcdedR/uEKfljeU7mROxGmL4zBA+K4THDOK1QkSCPu4s347h74+NzfljHmf+mpWsqbiFyoYvWLTmPnd17ZKKmDf0uoDJFGMmBD4ziNcK47WCeMwQJf4If6xOx/SE8PtruHD0n7jvTQ8+31Ws3vY3Nm5/011duzw06DqKqsDnCeAzks/PY4bweMJ8KDbxdmIoSii65X/FlH6Pc/urU8hJH8K81bdQ17DVXV27dHbMfuldubXoYgLVEXxWy/fS8qfzh7ov2WmNxibB2IEfERKv8PwXMzAswTuLr3VX1y6pyJ9UxNQ52zExj5acbY0Ugp9ddyHD+hfz4n8W8PQrc91FDlnfvXgqp0wYwfsLl/PwE/92H9a0Q57uqGiHvVR0VACm5I/mxu4XIGsbsQjgNcOUhg1+vfb3fFG6hDE9fkle5ghsbKrsxXy85DfuKvZbKmLO6P0NzgyPhEgcjwjg9aSzzFvBz5ffS1l9GacNfgbD48UWCdaU/pV1m+e4q9hvD438Mb3jIWTcwGME8ARyeC22iDuWPEi6vyeT+t9PQiQQpuLtJVcTif73Zwk7O2ZBII8Hhs4kVBPFdLx4rDCJUJhHdr7I8+tfoUfO2QztdjUJEuBp5PUF33RXsd9SkT+piKlztmNiHi0525q+PQr5n+9dgM/r4c/PvsF7C9p/VSpVJo8dzHcuOpXyqhpue/AflFe1b2NTTTuUHBFDv7SjW2cO/drdhvqtfNywmhP6nEBWTjZL2cmVH/+I7U27IpdUvU+GfzCBQAG1jRvYWj7PXcV+S0XMhZUrqDTiHNt7DIHsDJ6r+JBffnEvDU2bqq0tfYEe2edgeUNsKX+b2oMwNvz17fPIz+lG/+4DID3Ebev/wt/XJodyRBNVbKv5hO45p2KaPtZsnY3tfD2U80B1dsy6eD2zS95hbO/xFBYUURkQfP+L25m/PbnyT1XDauLxGDkZI1AqytptL7qr2G+pyJ9UxNQ52zExj5acbU1FVS01dfWMGtKHIf26s3rjVsoqDt2J6aOG9OF7F08lYds88PirbNpa5i6iaYcFfUVFO+yl6oqKpmmadnSZOGYwZ04exQOPvcrWna2v0nUoGNinK9+ZPpXH/vkOS1ZudB/WtMOG7qhomqZpmqZpmnbI0Rt8aJqmaZqmaZp2yNEdFU3TNE3TNE3TDjm6o6JpmqZpmqZp2iFHd1Q0TdM0TdM0TTvk6I6KpmmapmmapmmHHL2PiqbtxQUTZlPcZTLRRC019ZvchztEZ8cMeHK5YOIL5KQPoC6yncZox6+3P7B4OicOv4OAP5vy6tXYTtRd5KBLRcwpI+9kaK8rMUwvlbVrcJTtLnLQdXb+kIKYqchZTdM0rfPp5Ym1w15H7qMyfcLLGDKdhIrjOBFWlDzGlxufdxc7qFIR87LJH2I7cWwnTlw18O7SH1Jds8Fd7KApyBrHlKF3k3Di2CpOQ2I7r82/0l3soEpFzAkDb6d73uRkTCfOjtr5fLikY88NpSJ/UhGzs3NW0zRN63x66Jem7cW6krkknBgJJwqmzZbSjtn1eHepiFlTu7kpZgxl1Hd4g29bxXzidrQ5ZmXjUneRgy4VMZduerw5nkOcLWVz3UUOulTkTypidnbOapqmaZ3viOqoeD0m//O9acx+8CZmXHEmUgh3kU4x4/IzmP3QTdx6/SX4vJb7sHYYWbH17yScKEoluG7UwxzXM+YuctClIub67W+TcGJ4jTp+OPpueucF3EUOuvLKDSScGEMLljJz7ByCPsNd5KDr7JjV9euIRqPYTpxpg17kW2M3u4scdKnIn1TETEXOHqjpZ47n9hsuJTMt5D50yJBCMOPyM/jR1efq3y1N0w4ZR9TQr11DgMIBH9W19dz20LN8VVLqLtYu2RkhbrvhUgpyM5tv21Zaya/uf5ryqroWZXe3+/1qGyLc/uA/WL95h7uYdhB15NAvgIkDHmLZlrt4sGcxvgoJEYEVjVJFnKfjW3gj+vX7O8mby8xAb7pmFCIDQSJK8lTlch7Z9mmLOvels2Oa0seE/r+jofRWbs7tD5USGVPIWCNbaOSh6EZWxWuby38v1IvzPV3JyipA+PyUOTHu2vEZ75avbFHv3nTPOY2c4HCOsV7kDNUFVS+QEQfHjrLcqeO+yFqq7GSD129Y/CzQjxOCRfjTcxCWl5WRCm7d9gHr6ivcVbcpFTFH9fgJO2sXcVNhNUVVHlSjiRmLEXWivJUo48+Rjc1le5ghfh7sx7C0IkQoA0yLt2o285utH1Afj7Sod286O39IQcxU5OyBOH/qOKafMZ4dZVXc8Yfn2Vle7S5ySPB5LX509bmMGNSLDz9ZwUNP/BtHHTHNA03TDlNH1GT6hkiUvsWFFORkMH/xGt7+aDEH+jUb8Hk4cdxQwkF/8211DRHem7+UxkjbZwsbIzF6dc2nuCiXNRu38fr7i0jYjrvYAZlx+Rl875JTqaypY9PWA+uAHYky00NMGjuE7aWVLPhitfvwfy1a+zG/DgzF2RnDZwbwh0J4HIeMRJwTjTSyTC8fx6v4SaAP1/u6E7Y8SH8AYVlYQjIqvTtDsnryeukKd9Vt6uyYjkrQI7qCb6o+JCpjBHxh/D4/XjtBFwfOMLMoFQ5lKsbvQ4M43czG7/MjfF6ElAQNk1NzB5DwePm8qn2Tqasb1nKBjDGiOoyMSgL+NHxeD/5YhF7K4lQrk8V2AznSw18CgxluhDB9AaTPixCKXG+Ys7qMYFmknK2Nle7qW5WKmNuqPuRX4e4EdiSwhI9gKA2PEITiMUZKP+M8mXxk13CylcM9gf4UCQ/CH0R4PAgUfYJZnJI/jLcq1tFgt28BgM7OH1IQMxU5u7+GDejBNdNPpryqjt/+fnabnZSi/Cy+e/FUrr/qLM46aQxLVm6ksqbeXQzTMLj47AnccNU5XHH+ZC48YzynjB+O7Tis+2r7Hr934VCAq79xEjOvPIvLz53Ehacdz/HHDGRneTXbS1vmb8J2+GTJGgb17sYxg3shDMHy1R3zumiaprXXEdVRsW2HDxd9yezX57Fw8Zo9vrT3R2MkxmvvLeK51z7i7XmLOXZYX4B9dlQAFi5Zw+zX5/HegmUHrZMCcN7UseRlp/PJ0rW6o7Kbju6o/LrgRKyGGBYKj53AiDTisRNYCCzhMBQvl1s5DJV+pJQIaYFjQzyBkArh8VAczqEwWMB7Ze07e5uKmL/MHU+8rg6fNLDiMYxYI5Zj40HgE4opIsg3zGyKpBeERAgDHBvhJEBIpM/LmKxebIpHWFu3zV39HgYECvhGsDcqGsGHwojGMGMRLMACMgRcINM4x8okLEyUYSKEhEQCoWwwDLwBHyflDee1si+pS+z7ikMqYn4nbyw9bC+mY+O1FUakATMexRLgQVGE5EIzk5OMdCwpEKaFUgrsOAKFMC3Sg2GOzxvC7JJP3NW3KhX5k4qYnZ2z+yMcCnDjt84mFPDz1L/eY/maPYf99eqWzw3fOptvnjuZ7kW5GFISiyd4f8GyPToqXo/JTd85jynHDcPv8yCEQAhBwOdlxIAee3QswqEAP712GqOH9cVjmQAIKUgPBxgzvB8VVTVsdI04SNgO6zdvZ+zIfvTrUcjK9SWUV359VUrTNK2zHVFzVDStI2QbPhwVR0qBIQ1MaSKliRUIY4bSkYZFwPAhkDhKIAQI5SASMYhFIBZFRCNMzejnrrpNnR3z0twR4AiklBhCYkoTU5iY0sIMhjF9IYQ0CRjeZAPJMEAKhGOjYlGIR1HRKKKxgSvzx7qrb9U1OaNw7ARSSKQwMKWBJU1Mw4MVzMDwBBCGF1N6AJDSAEGykRmPIhJRVCRKMBbh6m4T3dW3KhUxjwsUgu0gpIEhDaRMvq6WN4gRykSaXvwyeZYfQAiJFAqRiEO8EWLJ17aPDDApZ5C7+lZ1dv6QgpipyNn9MWXcELp2yWbxyo3MXbjnVSIpBFecfyJD+hUTtx3eX7CM+sa2r5iNHzWQYQN6UF3bwAOPv8pFM+/hshvv48l/vU8sYTN1/Ah6FOU1lz//lLH0LS6gqqae+/76MhfOuIuZt/+ZNRu34vNanHvyWMKhPef1fFVSyn8+/IJQwMe5J49N2VxPTdM0DveOyrTTjuOFWbe0+nfHjy9vUTY7I8TDt36Xh2/9LtkZLSc07qpn2mnHtbh9f/Tqls9jd1+/18fgNnpYH373s6uZ/eBNvDDrFp645wYuP3cSpvH1BN/rrzqrub7+PYvwWCY3XHV2izitPSft4Dg1cwCOUkglENJESAtDWhimByOQhuzSHTLzEIYPIQ2EkChpJj9aTgLicYjFUJEEvnic/mmF7hB7SEXMwf58UCp59UAaCGliSA/SsDDC2YiCYkQoCwwPyZa7ASJ5llYmYpBIQDSGE7PpYnjd1bcqw/AkG/DCQAgz+RyFB8PyY2bnIvK6Iryh5Jl3DJBG8jkqBxGPouIxiMZQ0RjdPOnu6luVipiWIcFRoJLvlSUtDMPC8AYx8woROQVN76WFwoBd76WyIRYDOwaRGCrSyIBggbv6PaQif1IRMxU5217hgI/JY4fSEInx2ruftjrXw1GKT5et5fMV67n+13/m1TbK7TJ8YE8MKXn57YXMXbichG0TicZ58T/z+eDTFaSHA4wY1BOafu/GDO9LPGHz5Evv8dGiL3GUomRHBY88/QZVNfXkZWfQr0frr/N785dRVlnL4L7dGNSnm/uwpmlapzmsOyqHs3NOGs2N3z6X7oU5SCP5NgT9Xs6fOo6fz5iO15P8QdVSyydMRNM/hQlCJhtf0ocRtyHqILxhlMeHEgKaGmlIC0wfwvAmG7yOgriDT+y7QZSKmGbTV4FEJu8rTEzDh2n4MRI2KAMCaQijaTUgaYFIxlSeIEJYoAQioTAS7TsDKwWAQAqBIw2UNJGmB1OZqKgNpg8C6ShpIgTN8ZAelCeQjGkLSChkon1fZamIKRCgFAiJI02QJtLwYSQURBPgDYE/HYSRvIIjvclGvOEFyw/KRDhAzEGy79c2FfmTipipyNn26terK3nZ6ewsr2bNV1vdh5u9+s6n/GbWbEoratyH9hAO+lEoGloZerxu03Yc5VBclAtAYV4W6eEA20ur+HTp2uZyRflZXHHBiaQF/fi8Fj26Jsu77SyvZuX6LQT9Xgb07uo+rGma1mna90t7iHphzsdMu+7OFn/3P/YKsXjCXbTDrd+8g6tueoBp193JTf/3GLUNbY9dLy7K5ZyTx+A4iufnzOOyG+/jwhl38X9/fIEdZdUM6FXI+FEDAXjgsVebn9uqDSXE4gnuf+yVFs95xq1/2utKZNqBW9q4FSklCEAolLBQ0sKyfKBMVHUdqjGOED6QHoT0gulHmH6EFQAjgFAWwpEIR7K+Yd8rwKUi5s54HVImh+MgJMq0UJaJZflRMYWqqoWYA4YfpBdheJGWF6xAMqbpb465pbF9uRixE0gpUQIQBkpaSMuPafmhIYaqqgMbMLwowwuWD2n4EGYAYQZA+hDKRDgGGxrbtwpXKmI6SiCbOj6OlDiGB9PyYxo+VE0DqqYRlNncIcJsimk0xRRehGMiHYO19fuem5aK/ElFzFTkbHt1K8jG6zHZWFJKNHZwfo+27azAkAbnnzKWYQN6IIUgHPBx4enjufD04zHk11fiM9JDmIZBZU0dtQ0RcrPS+PE153Hfz77N8AE9mk+Ode2SvVuEllas3YKjHPoU7/sqnqZpWkc5rDsqh6uh/YtJDwX44NMVPPPKB0SicRyl+GTJWl58cz5SCgb26e6+m5YC6xsriOMgTQsQOFJgSw/C9CNNP1L6kMpEWkGM8xQMMjHMEMIMIowg0vAj8CKUn7m1JdTGG9wh9pCKmE+WL2maxA2OAAeJjYW0gkjDh8RCKi/KCGJeAqKLF2mEkEYgGVP4EPgQ+Hmzeo27+lYtqC3BsExQAgUoaaCEhbACyeepTKTw4xR5MS5QGKEgwmr6M4JIfMnnSZCXyz93V9+qVMTcGatHWrsakRJHWMmrJWYAaTTFNP2oMQZiisQwAwgzhLBCSCOIFF4EXqoceLNssav2PaUif1IRMxU5215FXXIQQrC9tH2d2fb4z4dfUFlTR35OBr/6wUXMfvhmHrv7ei4+awLZGWF3cQAaG6Nce+lpPPCL73DcyP5IKVmyciOvvrvIXXQPFVV1xOMOaeGvV77UNE3rbLqjkgLFRflIKTll/PA95tZ8/5JTMaRBQU6G+25ainzZWI40PThN48ptBQms5Blvy4+wQkSNINFGP8bxO5D9o0gZQooQQoQRMh0I8lj5QnfVbersmDti1dQpG2laqOZ/BglhJK8mNJ2FbpBp2CbIqVsRuTLZ8COAkCGECFGVUDxXtsBdfaser1iUbGiSHPHjOCrZ2JTeppjBZMx4ELKjcMo2pM+PlEEkQYSRjPlRXQnL6/ZcUak1qYj5RMUXGB4vCoFSyVc2gYEyvU2vaxCsIA2NQUSvCsQJVUgjjJR+hAghRBqoEE9WLnNX3abOzh9SEDMVOdtepnFwh5LRNMn9jt8/z4o1m0nYNgAJ22bl+i28v2AZSikSdss5LuNG9ufk8cOxLIOV67fws3ue5LaHnqWmLrmimLv87iqra4k3xdE0TUsV3VFJgY74EdM6zt075mJ4vTgO2EriIEgoiCuBaBpSIvBS8lZP4tvycUasQfSqBeEHEQDh4936r/isboO76jalIuazNSuQPh+2I7AdiQ0kHIGN0RTTh5I+Nv2rH07UB5NXQYYCEQSCIPw8WrWQOrvRXXWbVifqkJYPB0ggiStJwlEgrORzNHxEq7LY9np/CDbCSWvB8iRjqiCIAI9UzndXu1edHXNJw1YaDBMHga0ECSWxlSBuC4T0JGNKH9UrC6n5rC9OYQniuC3J15QA4GenSvCPivY14ElR/qQiZipyNpXWb97BL+5/motm3sO06+7kopn38LN7nyKWsFFK8VVJcshcQ2MMx1FNt5Xyv394gZ/d+xSrNybny3QvzEUpRcn2MleErwX9XozkpC5N07SUOeo6KiG/l3Dw6yUZM9NCHDu0T4syHW3L9nIAXnpr4R5zbHb9/fx3T7nvpqXQu3YZwvKQUIq4LYkhiSuDBF6QAXzeEDnBIM6HQ5Gl3XBGLuOjIVnMSj+Rv2RN4HH2PbfArbNjzq1eS5nPhyMEcQfitiSqJHFloqQfZICQN0SWSEe8MwpiPtTkxcwuHszD6SfyWOYoXqrbvyE0v932FiIjC9uBhJ1s1MaUQUyZIAMgA6T7goRqcpEfHguBeiInr+bRnOOZlTmZP6V1ZWl9+xu2pCjmfZUf4Q1nE3fAtiGGJKYkceUBGUAYATL9Acw13TBWDMMu2ETJxEpmZZzIH7Im8SfLoM7e93Co3XV2/pCCmKnI2fbY9R3fJTfLfeigG9inK2OG9aGypoHPl68HYPO2UmrqGognbF58cz6fLV/XXL4oP4v+PYuIxhJs3pZ8nK3pkpeF12O2a6K/pmlaRzlqOiqxWIJ43CYY8HHKhOGYhsGQvt35xYzpbS7R2FFWrSuhriHCqRNGcOk5J7R7aeFINI7HMjlz8iiK8jv+B1D72uPbP2JbRjqO8BBXirgNUQRxDJTwgQySGcjA7wnBvNGUVA/n+H6z6VG0lO0Nin5dfkTXvPHuavcqFTFv2vg8Rm4xCeUQA2JKEUUSdQyQAUwzGdNIZFD2wVQa7HTOP+bP+ALbKWn0cPrwvxH05bir3avf7ngbb25XYsoh5iiiCqIkG5vIIH5vmIxAOlR04YtF0/H4K/nG2L8SSdRTGivi7NGPu6vcp86OubZuJy/HN2GFsogpRcxWxBBEkdh4QQZJ86cT9qfD2j4s23AOBdmfMWXEy1Q22OCZzOj+P3BXu1epyJ9UxExFzu7Lxi2lRKJxehTldsgKjqZh0K9HId+/5FR+cd1FhAN+3v54MSU7knNidq3a5bFMvnneZMaN7I8UgqL8LH5wxZnkZqWxYfMOlq3e6K66We/uXZBCsnlr21ddNE3TOproWZje9iDVw9AJowfx/y47nQ1bdvDTe55scey7F09l6oQRiN02sFJKUVFdT0aan2f//REvzPkYmvZWufTstjd0q22IcPuD/2D95uSl9uuvOouJowe7izXbVlrJr+5/unl1rhmXn8GkcUNa3UwrFk/w+6de54NPWm4SdtaUY7nyvBObV2zZxV330aZXt3x+OfNiPl++jgcee9V9+KB6cMA15NbE8CsTnxXAa/jxWwF8VgCBBCEBwV3mUC6e8BRdQ0uYveJiVmwagDJh0aY72bLzI3e1e5WKmE8Omoks3UnICuMz/fisAD7Tj9cMkNyTQrCDAP8IFHDNpEdQooq/LbiW0poMsBzeXPJdGiLtPzs+Or0/NxecglNZQXBXTDOAzwxgGd7mmHOsnuzMruXSY//AtsYwT3z0PaK2Rcwo4/VPr3ZXu1epiPnd7qdysihGRiMErCA+M4DXDOA3AxjSbIop+ZNnML37fs7kHs/yedlIXll0HkoottS9xaI1D7mr3atU5E8qYnZ2zu5NOBTg1zdcQm5WOg8+/goLFrd+1WZfvzO7/xZkZ4S47YZLKcjNbFHGsR3enr+UPz3zRot9WPKy0/n5ddNbPalVXVvP3Y++xJdrt7gPwW6PPxz08+uHn2NjyU53EU3TtE5x1FxRAXjixXeZ/8Vq4onkcpH1jVFeenMBT7/8HvZeJhV2hN8/9TqPPvsmO8qqcGzHfbhVr727iOf/8zGVNXV73RhM6zgzVz7K2hAkPH6itk1MKSJKEXFAGcmhJsggEskTH17Miqo+XDjoH/TrvpyYHeOYvje4q9ynVMS8fMWD1ObmEAOiyibqOESarjxgJIdH+QwPDdEAf/rgampjFleOnkUoVEksnmDs4J+4q9yrT6pXcdeO/5DILiCaiBN1HKJKEXEUccxkTBHE6xhsKe3Ck59/i2xfFd+c+FfixMFJY2Cv6e5q9yoVMf+06Q1ettehwplEEwmijk1MOUSUwhYeMJJzYEzHYP7Kkbz51VmMzPmc046dQ4w4XTIm4/O1bKjuSyryJxUxOztn96a2roF5n6/EYxlMGju01RNS/w1HKWrqGli4ZA0/v/9pHnl6zh6/CTvLq/n1w8+yaNlaItE4NE2+X7FmM7+ZNbvNTgrA6ZNGUpSfxcp1W3QnRdO0lDrirqhMGjuEay89lS9WbOT//viC+7B2BOrMKyq7nJY3lu9kTsRqiOEzQ/isEB4ziNcKEQn6uLN8O4a/PzY25495nPlrVrKm4hYqG75g0Zr73NW1Sypi3tDrAiZTjJkQ+MwgXiuM1wriMUOU+CP8sTod0xPC76/hwtF/4r43Pfh8V7F629/YuP1Nd3Xt8tCg6yiqAp8ngM9IPj+PGcLjCfOh2MTbiaEooeiW/xVT+j3O7a9OISd9CPNW30JdQ9ub6+1NZ8fsl96VW4suJlAdwWe1fC8tfzp/qPuSndZobBKMHfgRIfEKz38xA8MSvLP4Wnd17ZKK/ElFzFTkbGvCoQC3X38xXXIz+dMzb/Dugvav2pZKxUW5/GLGdASC//vjP1nTNAFf0zQtFYzMsO9W942Hi5uuOY+uBdlsKiklFk/QoyiPS5rWlH/n4yWsWl/ivot2BMpMDzFp7BC2l1ay4IvV7sMdYm19CWVmnOOLRqNsGyU8CMNHSUhx89rf8d6mJwj7+uD357F062A21mcyd8kP2VaRHFp4IFIRc37ll+RkdaV/Rq/kGVuZ3HPkM+9OZi77DZ9vfYLi7LOJKR+fbB7Fxqov+HTVnVTVJSf1HojXSz9hQp9JZJkhHAwwPOBP56X4J/zkizvYWvMx3XNOpawhyGdbx7Nw7S9ZVfIMsXitu6p26+yY5dEa5tWvZWrfk7AcldzN3fTREPRxb+mzPLH6jzQmashNH8mGsgLW1IzjrS+uYcOOf7urardU5E8qYqYiZ1sTi8Wpb4hw7NA+DO7XjdUbt1J2iE9M93ktbrjybLrmZ/PSWwv58NOWw481TdM622HdUTlryrFMGjOE86aO46IzJ3DqCSPJzgizYctOHvvnu8Riycvd2pEtFR0VgA31W/m4YTUn9DmBrJxslrKTKz/+EdubdtUuqXqfDP9gAoECahs3sLV8nruK/ZaKmAsrV1BpxDm29xgC2Rk8V/Ehv/ziXhqaNuVbW/oCPbLPwfKG2FL+NrX17dtfZG9e3z6P/Jxu9O8+ANJD3Lb+L/x97WwAookqttV8QvecUzFNH2u2zsZ2Yu4q9ltnx6yL1zO75B3G9h5PYUERlQHB97+4nfnbPwWgqmE18XiMnIwRKBVl7bYX3VXst1TkTypipiJnW7NpWxmWZTByQE8G9O7GomXrqG+MuosdEnxeix9880yGD+rJh59+yeP/fIcjariFpmmHpcN66NfQ/sVccf6J9CjMRRqS+sYoH3+2kidfnktt3f4t5akdvlIx9EvTNK29pp85ngG9uvK7v71yyP42SSGY8c0zkFLy8N9fa95UUtM0LZUO646KpmmapmmapmlHpqNq1S9N0zRN0zRN0w4PuqOiaZqmaZqmadohR3dUNE3TNE3TNE075OiOiqZpmqZpmqZphxzdUdE0TdM0TdM07ZCjOyqapmmapmmaph1yDusNHzWto10wYTbFXSYTTdRSU7/JfbhDdHbMgCeXCya+QE76AOoi22mMlrmLHHQDi6dz4vA7CPizKa9eje10/CZ4qYg5ZeSdDO11JYbppbJ2DY7q+L0pOjt/SFFMTdM07cinOyraYa9Xt3x+94trKC7KPeg70w/t/k0CVncKs09gYLfpYMQoq1rhLnZQdXbMuN3AiB7XEvR2pUfeVPp1m8a26gVEo1XuogeNZYTpk38uGYH+9C2aRo/CU1iz5SV3sYMqFTGLMieSmzaCnPAI+hVNJzuzD5t2vOcudlB1dv6QopiapmnakU8P/dK0vVhXMpeEEyPhRMG02VI6z13koEtFzJrazU0xYyijnuqaDe4iB9W2ivnE7WhzzMrGpe4iB10qYi7d9HhzPIc4W8rmuoscdKnIn1TE1DRN0458uqOiaXuxYuvfSThRlEpw3aiHOa5nzF3koEtFzPXb3ybhxPAadfxw9N30zgu4ixx05ZUbSDgxhhYsZebYOQR9hrvIQdfZMavr1xGNRrGdONMGvci3xm52FznoUpE/qYh5oKafOZ7bb7iUzLSQ+9Ah5XB5nJqmaR1J9CxMV+4bj0TZGSFuu+FSAH51/9OUV9W5i2iHqV7d8vnlzIv5fPk6HnjsVffh/9rEAQ+xbMtdPNizGF+FhIjAikapIs7T8S28Ed3RXHaSN5eZgd50zShEBoJElOSpyuU8su3TFnXuS2fHNKWPCf1/R0Pprdyc2x8qJTKmkLFGttDIQ9GNrIrXNpf/XqgX53u6kpVVgPD5KXNi3LXjM94tX9mi3r3pnnMaOcHhHGO9yBmqC6peICMOjh1luVPHfZG1VNnJBq/fsPhZoB8nBIvwp+cgLC8rIxXcuu0D1tVXuKtuUypijurxE3bWLuKmwmqKqjyoRhMzFiPqRHkrUcafIxuby/YwQ/w82I9haUWIUAaYFm/VbOY3Wz+gPh5pUe/edHb+kKKY++v8qeOYfsZ4dpRVcccfnmdnebW7yCFBCsF3LzmVk8YNZeX6En77h9lEonF3MU3TtCPeEdFRmX76eM44cRT/emshL/5nvvsw6I7KEa2jOypdvBncGhqF2dhARiiEP+DHrKvFjNThQfGSU869DRv4SaAPF3jycCwLmZ6N8AUAA2H5+ChazswVz7urblMqYk4O9+RiWYwnESUzLQOfaWLUVWHFIzg43BPfwsfxCu4L9meokYbyBxHhDITlBWkgfCFmlS7mrxs/dFfdpusyRzMkZhG2TNLCaXhwMGoqsGyHSqL8pHE9oLg30J88w4cKpSPD6SANMDw0enzcuH4On1Ssd1fdplTEvDfvREJ1jaQHAoRDYYxII2Z9NZay+ZJGftK4lvFGBjf7e+ITBiI9BxEMg5AIy2KLgKuXz6YsVuOuulWpyJ9UxNwfwwb04KbvnEdldT2/mfVcm52UovwsLj7rBEYP60MkluD2B//B+s1fd7IApp12HJeePbHFbW7bSitb/NaYhsH0M4/npOOGkx4OoIDS8hpe/M/HvPnRYvfdkULwgyvOZMLoQXz4yQoeeuLfOOqw/7nWNE3bL0fE0K+C/EzCQT9SCvchTfuv3ZJ7HMRsDCFRjY04FRUYsSimMDAFXCQyeD8whPNlGIGNVAIa6lA11RBvAGEzIbMrtw043111m1IR84q0QThNMZy6WpyaCqSdwBQGQSG4zSzgX74BDMGLUg4ikYD6WmiogXgUIWxmdBvH6QXHuKtu1YBAAcd4c5EKpG1jV1ejaqoxEJhCUChMnvD25G++XuQhUAJEPIaqrYbGOrBjBC3B7wZOo4s/0119q1IR8zt5YwnZElNKRDSOXVGOaKjDEAJLCI7By798/filVYgfG2FIVLQBVVcJ0XpwbLr5g/xhxOXuqtuUivxJRcz2CocCfGvaFKSQ/PONea12Unp1y+e26y/m/p9dzfHHDMAyTXeRAyaF4MZvn8MFU48jIy2IEAIpBPk56Xz3oqlcdNYE911wlOKvL7zDlm1ljBvZn/HHDnQX0TRNO+IdER0VTetI2YYPR8WRUmBIA1OaSGliBcKYoXSkYREwfAgkjhIIAUI5iEQMYhGIRRHRCFMz+rmrblNnx7w0dwQ4AiklhpCY0sQUJqa0MINhTF8IIU0ChhchBMIwQAqEY6NiUYhHUdEoorGBK/PHuqtv1TU5o3DsBFJIpDAwpYElTUzDgxXMwPAEEIYXU3oAkNIAAcJJJDtGiSgqEiUYi3B1t72f3d4lFTGPCxSC7SCkgSENpEy+rpY3iBHKRJpe/NKLkMmvYyEkUihEIg7xRoglX9s+MsCknEHu6lvV2flDimK215RxQ+jaJZvFKzcyd+Geq5FJIbji/BMZ0q+YuO3w/oJl1De2vXz1C3M+Ztp1d7b69+xrH+I4Dms2bm2+mnLK+BEcM6QXkWicv7/4LhfNvIdrfjKLBYvXIKTglPHDKS7KdYehtq6BfzaNEjhnymh8XstdRNM07Yh22HZUpp12HC/MuoUXZt3CxNGDAbj07InNt70w6xYeu/t6enXLd9+VzPQwv/zBRcx+8Caef/hmHvn1tYwb2b/5+NjhfXnqvhv5w+3fJy87vcV9Ac49eQyzH7qJW2dejBT6Ks6R7NTMAThKIZVASBMhLQxpYZgejEAaskt3yMxDGD6ENBBCoqSZ/Gg5CYjHIRZDRRL44nH6pxW6Q+whFTEH+/NBKYSQyWFc0sSQHqRhYYSzEQXFiFAWGB6SLXcDRPKMs0zEIJGAaAwnZtPF8Lqrb1WG4Uk24IWBEGbyOQoPhuXHzM5F5HVFeEMIaQFGcugVEpSDiEdR8RhEY6hojG6ePT+nrUlFTMuQ4ChQyffKkhaGYWF4g5h5hYicgqb30kJhwK73UtkQi4Edg0gMFWlkQLDAXf0eUpE/qYjZXuGAj8ljh9IQifHau5+2OnzKUYpPl63l8xXruf7Xf+bVNsrtS1F+FlPGDaOuIcKcuZ9DUydo4thBGFLy2nuLeOmthSRsm8qaOv7w9By2bC8nPRRgaP9id3UALFy8mk1bS+lWmMPxxwxwH9Y0TTuiHbYdlQOVHg7wixnTGT6gB9KQCCHIzUrjmuknN5/R+uLLDWzZXkZ2ZojhA3u2uL8UgjHD+2I7DnM/WX5AP2ba4cMnTETTP4UJQiYbX9KHEbch6iC8YZTHhxICmhppSAtMH8LwJhu8joK4g0/suxGfiphm01eBRCbvK0xMw4dp+DESNigDAmkIo+mMrrRAJGMqTxAhLFACkVAYifZ13pMjNZNDYBxpoKSJND2YykRFbTB9EEhHSRMhaI6H9KA8gWRMW0BCIRPt+ypLRUyBAKVASBxpgjSRhg8joSCaAG8I/OkgjOQVHOlNNuINL1h+UCbCAWIOkn2/tqnIn1TEbK9+vbqSl53OzvJq1ny11X242avvfMpvZs2mtKJ984Bac9Lxw8nJDLNg8RpWrS8BIC8ng5yMNKrrGvjg06+v5mSmhfj2tCl0yc1ASknv7l12q+lr0ViCT5asxTSMNjszmqZpR6r2/dIegna/9D73k+UAPP3K3BaX4K+66YE9JkEGfF4CXg+vv7+Iy268jxvv+Cs7yqrICAcZOagXNP0wzPtsJQLB+GMGtLhqMqhPN7p2yWHbzko+Wbput5q1I9HSxq1IKUEAQqGEhZIWluUDZaKq61CNcYTwgfQgpBdMP8L0I6wAGAGEshCORDiS9Q0t87E1qYi5M16HlMnhOAiJMi2UZWJZflRMoapqIeaA4QfpRRhepOUFK5CMafqbY25pbN9CFRE7gZQSJQBhoKSFtPyYlh8aYqiqOrABw4syvGD5kIYPYQYQZgCkD6FMhGOwobF9q3ClIqajBLKp4+NIiWN4MC0/puFD1TSgahpBmc0dIsymmEZTTOFFOCbSMVhbX+qufg+pyJ9UxGyvbgXZeD0mG0tKicYS7sMHTXFRLhPHDKK6toE573/WfHvA58Hr81BbF6Gquo5wKMC3LzyJWbd9j4ljBjfPhcnPydittpZWrd9CYzRG1y45eD0Hb+6Mpmnaoe6w7agcqIRtM/uNeTz63FtEonG+Kinl8xXrEUJgGF+/HB9/voqyylq6FeTQvfDrscMjh/Qm4PPw3oJl1NY1NN+uHZnWN1YQx0GaFiBwpMCWHoTpR5p+pPQhlYm0ghjnKRhkYpghhBlEGEGk4UfgRSg/c2tLqI3vO2dSEfPJ8iUI00IpcAQ4SGwspBVEGj4kFlJ5UUYQ8xIQXbxII4Q0AsmYwofAh8DPm9Vr3NW3akFtCYZlghIoQEkDJSyEFUg+T2UihR+nyItxgcIIBRFW058RROJLPk+CvFyeHGazL6mIuTNWj7R27dcicYSVvFpiBpBGU0zTjxpjIKZIDDOAMEMIK4Q0gkjhReClyoE3y/ZcHcotFfmTipjtVdQlByEE20vb17E8UKdPGkVGOMiCxavZWLLTfZhoLMbZJ4/moV99hzMnH4vHMtiwZSfPz5lHLL73DlRVbQPRWBy/z0Mo4HMf1jRNO2IddR2V0ooa3nYtBVlRvecZ4J3l1SxeuZH0cIAJTauthEMBRg3uRVllLR9/vsp9F+0I9WVjOdL04DSNZbcVJLCSZ7wtP8IKETWCRBv9GMfvQPaPImUIKUIIEUbIdCDIY+UL3VW3qbNj7ohVU6dspGmhmv8ZJISRvJrQdOWkQaZhmyCnbkXkymRnhQBChhAiRFVC8VzZAnf1rXq8YlGyc0RyxI/jqGQHSXqbYgaTMeNByI7CKduQPj9SBpEEEUYy5kd1JSyva99GiqmI+UTFFxgeLwqBUslXNoGBMr1Nr2sQrCANjUFErwrECVX8f/buPD6q6m78+Oece+/MnS17AiGEQAj7LgKKCIgK1rWKW62t+tQu/rRq20d92j61dv39tGqrldZabdWqrUWeWrXV1vVBQRSRHVnCThLIvk5mu/f8/pgQzZBA1MAAnjev/EHOme83MzmZueeeTRohpPQhRBAhMkAFeaJhXWroHh3p9kOacvaGaRx6utynNaK0iGkThtHY0sa/3uy+Azts8ADmz5tO0OelYl8ddz70P/zn//0je/bWAeA6PU8jDrdH9DkqmqZ9Jn3mOiofx1vLN9DWHmXciBK8HpPRQ4vIz8lk9cYd3W5vqR2ffrFvMYbXi+uCoyQugoSCuBKIjmlQAi8VrwwhXtUPd+IWRGkLCB8IPwib19t28n7r9tTQPUpHzqebNyBtG8cVOK7EARKuwMHoyGmjpM2uvw/HjdowexNkKRABIADCx8ON79LqtKeG7tHmRCvSsnGBBJK4kiRcBcJKPkfDJtqYQ9WLIyDQDqeXg+VJ5lQBEH4ebOj+7KSeHOmca8KVhA0TF4GjBAklcZQg7giE9CRzSpumjQNofn8Y7oAKxMl7kq8pfsBHtUrwl/reX8Cno/2kI+fR4qyZkwgFfLy7egs7K7pOz4snHBKJ5IhJTX0zC/70T27+ySMsX1MOQGFBNh7LpKq2scvjPsqyLCxj/6icpmnaZ4fuqBzEhvLdbN+9j4H98xg7fDAzp4wh4Ti8tfzA7S2149vrTi3C8pBQirgjiSGJK4MEXpB+bG+QvEAA961xyJpi3EnrWDI2hwWZp/FIzgwe49BrC1Id6ZyLm8qptW1cIYi7EHckUSWJKxMlfSD9BL1BckQm4rXJELNRs1ezsGQMD2SexqPZk3m2tXfTvvb7WdUriKwcHBcSTvKiNqYMYsoE6QfpJ9MOEGzOR751IvjbiJyxmYfzprMgezYPZQxkbdvHu7BNR857G5bgDeUSd8FxIIYkpiRx5QHpRxh+sn1+zC3FGBvG4xTuomJmAwuyTuO3ObN4yDJodT7edKgj3X5IU85D2T9i0T8/J7WoT4wfOZgTx5VR29DCP15/L7WY6rpG6hpacF2X15at4fV31nVuwmJ7LaaMLcN1XXZW9LwuJz87hN/vpbWtnYamttRiTdO049Zx0VEJd+x3f/rJ4xk7bFBq8SfmKsXi5esxDMHcGRMpHdSf9Vt2s6G8d1M+tOPHY3uXUJWViSs8xJUi7kAUQRwDJWyQAbL9Wfg8QVg6hYqmCUwfvpDBRWvZG1YM7/8dBhackhr2oNKR85Ydz2Dkl5BQLjEgphRRJFHXAOnHNJM5jUQWtW/OJexkcuEJv8f276Wi3cPnJvyRgJ2XGvagfrbvVbz5A4kpl5iriCqIkuwgIQP4vCGy/JlQ359VKy7F42vg4ml/IJJooyZWxHlTHksNeUhHOmd5azXPxXdhBXOIKUXMUcQQRJE4eEEGyPBlEvJlQnkZ67afT2Hu+8yZ+BwNYQc8s5ky4pupYQ8qHe0nHTkPZceeGiLROIOL8vt8IboUgrNmnoDP62Hp+xup2HfgOphoLMGK9cmNV86ZfSLnzjkR0zDIzghy41XnMaS4H/vqmnj7/Y2pD+1UOqg/tseiqqZB7zSpadpnipEdsu9I/eaxxjQMJo8dSlZGgNNOGsdl58zgsnNmcPZpJ7Jm4w4amtvw2x5OO2kcAG8sW0t7JNb5+NFlxYwbUcLazTv5oHzPRyJDbWMrU8cPY9TQgViWyd/+veyAoX0tvbIzg8yaNpa9NQ28s2pzanGfea1hHXNKTsGXAKFEx1kbFkJ6ME0/QnhAekF6+F3lGQzqX83kAa+wN5bP3oZsCrNn0JbYRXNb7zu66cj5bP0K5pfOw21rxRBehDCTU5SkB9MMgPCA9NDqhPhT1WwmlKxh7MA3+aB2NC1hL6UDzmN33WvEE70bAaiPt7LLaWNW/0kk2sMY0tOZU0ovhuHrzLk6OoRljeM5cdAblBSuZk3FeFwnQOnAMymvfC41dI/SkXND2x7ysgop8xbiJuJIaSW3O5YeTMOHlN6OnF6ea5pMs5HLiYUvEciqZ2PVcEKeUoKhfKo+xhSwdLSfdOQ8mNZwhGkThtE/L5udFdXddiboOJvrp9/6IpedM4O5MybitUy8lsncGRO57JwZXDj3JKrrmthV+eH7/5Txwzj/9Kk0toR5dNGrtLR1P+1x6669jB5aTFH/XCaNLuWSz03n/DOmMrB/LtFYgieefZ0Ptia3M04lheDyc08lKyPIopeW9vjza5qmHY+OixGVd9ds4bH/eY19tY24jpta/Km0tIZ5b205Sin21Tay6oMdqVW0z5AbNz5MeRASHh9RxyGmFBGliLigjOT0KGQAieTxty5nQ2MZl4z+C8MHrSfmxDhh2M2pIQ8pHTmv3HA/Lfl5xICocoi6LpGOkQeM5PQo2/AQjvp56M2v0BKzuGrKAoLBBmLxBNPGfDc15EEtb9rEXfv+TSK3kGgiTtR1iSpFxFXEMZM5RQCva7Cnpj9PrLyGXLuRL838A3Hi4GYwqvTS1LAHlY6cD+36F885W1GhbKKJBFHXIaZcIkrhCA8YyTUwpmuwbOMkXt55LpPyVnLWiS8RI07/rNnYdnZq2INKR/tJR86etLSGWbpyIx7LYNa0cX12SK8UgrNnT8b2Wj2OpuwXica56+FneWXJ6s4T713HZVdlLXc//CxvvJPcYr87p5w4ihGlRezZW8uqDz7elENN07RjnRgyIFOPIx+EFIKbrj6X6SeMZOFLS/nrP5akVtHSrLS4H7ffeDkr12/lvkdfSC0+LM4qmMZXs2dihWPYZhDbCuIxA3itIJGAzZ11ezF8I3BwuHDqYyzbspEt9bfREF7Fii33pobrlXTkvLn0ImZTgpkQ2GYArxXCawXwmEEqfBF+15SJ6Qni8zVzyZSHuPdlD7Z9NZur/siOvS+nhuuVX4++nqJGsD1+bCP5/DxmEI8nxFtiF68mxqGEorjfTuYMf4wfvzCHvMyxLN18G63hng/0O5gjnXN45kDuKLocf1ME2+r6u7R8mfy29QOqrSk4JJg2aglB8TzPrLoBwxK8tvq61HC9ko72k46c3QkF/fz4psvpn5/NQ3/+F6+/0/sd1NJp/89dkJvFb598kbdWfJBaRdM07bh2XEz9OlwKcjO57oqzOOmEkVTVNPDHZ17tMmVMOzocqalfH1XeVkGtGWd60RSU46CEB2HYVAQVt5b/kjd2PU7ILsPnK2Bt5Rh2tGWzeM23qKp/OzVUr6Uj57KGD8jLGciIrNLk3HiZPHPkfW81N677KSsrH6ck9zxiymb57snsaFzFe5vupLF1W2qoXnuxZjkzymaRYwZxMcDwgC+TZ+PL+e6qn1PZ/DaD8uZRGw7wfuUpvFt+O5sq/kws3pIaqteOdM66aDNL28qZO+x0LFclT3M3bcIBm3tqnubxzb+jPdFMfuYkttcWsqX5JF5ZdS3b9/0jNVSvpaP9pCNnd2KxOG3hCCeOK2PM8GI276ik9lOcQH8kSCH4xhfmMXZECW+t+IBnXlqaWkXTNO24pzsq3dg/V/nc005kYGEeza1h7nvsBXZV1qZW1Y4C6eioAGxvq+Tt8GZOLTuVnLxc1lLNVW9/h70dp2pXNP4vWb4x+P2FtLRvp7Lu019opCPnuw0baDDinDh0Kv7cLP5a/xa3r7qHcMehfOU1ixicez6WN8ieuldp6YO1BS/uXUq/vGJGDBoJmUF+tO0R/lS+EIBoopGq5uUMypuHadpsqVyI4376GwhHOmdrvI2FFa8xbegpDCgsosEv+MaqH7Nsb3LnqMbwZuLxGHlZE1EqSnnV31JDfGzpaD/pyNmdXVW1WJbBpJFDGDm0mBXrtnZOwzraSCG46qI5nH7yeDZureC+R58n0cfTmjVN044FeupXN+afdTJXnDeThOOweVslf3r2DTbv+PjTO7QjIx1TvzRNOzZdes4pjCwdyC//+Dwtrb3b8CEdLjt3BqOHDuTuR547qn9OTdO0w0l3VDRN0zRN0zRNO+ocF7t+aZqmaZqmaZp2fNEdFU3TNE3TNE3Tjjq6o6JpmqZpmqZp2lFHd1Q0TdM0TdM0TTvq6I6KpmmapmmapmlHHX2OiqYdxEUzFlLSfzbRRAvNbbtSiw+LI53T78nnopmLyMscSWtkL+3Rw39e0KiSSzltws/x+3Kpa9qM4x7+8yzSkXPOpDsZV3oVhumloWULrnJSq/S5I91+SFNOTdM07finOyraMa+0uB+//MG1lBTl9/mBj+MGfQm/NYgBuacyqvhSMGLUNm5IrdanjnTOuBNm4uDrCHgHMrhgLsOL51PV9A7RaGNq1T5jGSHK+l1Aln8Ew4rmM3jAmWzZ82xqtT6VjpxF2TPJz5hIXmgiw4suJTe7jF373kit1qeOdPshTTk1TdO045+e+qVpB7G1YjEJN0bCjYLpsKfm8Jya/VHpyNncsrsjZwxltNHUvD21Sp+qql9G3Il25mxoX5tapc+lI+faXY915nOJs6d2cWqVPpeO9pOOnJqmadrxT3dUNO0gNlT+iYQbRakE109+gJOHxFKr9Ll05Ny291USbgyv0cq3pvyCoQX+1Cp9rq5hOwk3xrjCtdw47SUCtpFapc8d6ZxNbVuJRqM4bpz5o//GNdN2p1bpc+loP+nI+Uldes4p/PjmK8jOCKYWHVWOlZ9T0zTtcNIn06fJTVefy8wpYzr/H4sn+M2TL/Lmcj1d4uMqLe7H7Tdezsr1W7nv0RdSiz+1mSN/zbo9d3H/kBLsegkRgRWN0kicp+J7+Fd0X2fdWd58bvQPZWDWAKQ/QERJnmxYz4NV73WJeShHOqcpbWaM+CXhmju4NX8ENEhkTCFj7eyhnV9Hd7Ap3tJZ/+vBUi70DCQnpxBh+6h1Y9y1731er9vYJe7BDMo7i7zABE6w/sbZqj+qTSAjLq4TZb3byr2Rchqd5AWvz7D4vn84pwaK8GXmISwvGyP13FH1Jlvb6lND9ygdOScP/i7VLSu4ZUATRY0eVLuJGYsRdaO8kqjl95EdnXUHm0H+OzCc8RlFiGAWmBavNO/mp5Vv0haPdIl7MEe6/ZCmnB/XhXNP4tKzT2FfbSM//+0zVNc1pVY5Kkgh+NoX5nH6SePYuK2Cn/12IZFoPLWapmnacU+vUUmTkyYOp6SooPP/juuyfG05uyprutT7pEYPK+aHN17OyRNH8Pqywz/FJZ2yM4PMmjaWvTUNfb5GBSDa8jY/8Y/DrY5hm358wSAe1yUrEec0I4Mc08vb8Ua+6y/jJnsQIcuD9PkRloUlJJMzBzE2Zwgv1vS+E3qkc7oqweDoBr6kykg0xPDbIXy2D6+ToL8LZ5s51AiXWhXjN8HRfM7MxWf7ELYXISUBw2Re/kgSHi8rG3u3mLopXM5FMsbEphAyKvH7MrC9HnyxCKXKYp6VzWonTJ708Ih/DBOMIKbtR9pehFDke0Oc238i6yJ1VLY3pIbvVjpyVjW+xQ9Dg/DvS2AJm0AwA48QBOMxJkkfJ3myWeI0c4aVx93+ERQJD8IXQHg8CBRlgRzO7DeeV+q3EnZ6twHAkW4/pCnnxzF+5GCuvfQM6hpb+dlvFvbYSSnql8PXLp/LTVefy7mnT2XNxh00NLelVuuUn5PBVy89k29cMY8rPz+by8+ZwcypY3hn1SbaI8lOrxSC2dPGctPV53HtJWdw+bmncuHck5g4cggVe+uoa/zwJgCAAt5ft5XCgmxOGDeUgpxMlq/Zgr6rqGnaZ43uqKTJO6s289d/LuGv/1xCYUE2A/vn9WlHZeTQgcyaOoam1jCvLl2TWnxcOdwdlZ8UnoYVjmGh8DgJjEg7HieBhcASLuPwcqWVxzjpQ0qJkBa4DsQTCKkQHg8loTwGBAp5o7Z3Iw7pyHl7/inEW1uxpYEVj2HE2rFcBw8CWyjmiAAXm7kUSS8IiRAGuA7CTYCQSNvL1JxSdsUjlLdWpYY/wEh/IRcHhqKiEWwURjSGGYtgARaQJeAimcH5VjYhYaIMEyEkJBII5YBh4PXbnF4wgX/WfkBr4tAjDunI+dWCaQx2vJiug9dRGJEwZjyKJcCDogjJJWY2pxuZWFIgTAulFDhxBAphWmQGQkwvGMvCiuWp4buVjvaTjpy9FQr6+fY15xH0+3jy72+wfsuBU/BKi/tx8zXn8aULZjOoKB9DSmLxBP/7zroeOypnz57MLddeSFlJIV6PhRACgNZwhDeWre3sqAwp7sdN15xPQU4GQibrGIYkPzeTE8eV8cHWPdR301nZsHUPk8eUMnLoQPbVNfbZ54OmadqxQq9R0bRDyDVsXBVHSoEhDUxpIqWJ5Q9hBjORhoXfsBFIXCUQAoRyEYkYxCIQiyKiEeZmDU8N3aMjnfOK/IngCqSUGEJiShNTmJjSwgyEMO0gQpr4DS9CCIRhgBQI10HFohCPoqJRRHuYq/pNSw3frWvzJuM6CaSQSGFgSgNLmpiGByuQheHxIwwvpvQAIKUBgmTHKB5FJKKoSJRALMJXimemhu9WOnKe7B8AjouQBoY0kDL5ulreAEYwG2l68cnkyBSAEBIpFCIRh3g7xJKvbZn0MytvdGr4bh3p9kOacvbWnJPGMrB/Lqs37mDxuweO2Egh+PKFpzF2eAlxx+V/31lHW/vBR6+mjh/GFefNxLIMVm7Yxh33/4XLbryb+dffyQ13PERdY2tnXddV7Ktp4MGnXuKL376XS264ix/9+mn21TaSlRFg/MiSLrH3a2kN8z//XgbA+XOmYHut1CqapmnHteNiRCU/J4Obrz6Xr19+Fl+8YBaXnDWdKeOGsbOipsuQumkYXHDmNG788jlcfdGcgw6/zz/rZH580xdoj8aYNKaUb19zPl++cDbzzzqZUaUDWbtpJ5HohwtGb7r6XG6++jyq65q63PXav3Xu1AnDehzZOGni8EOOqISCfr5y8enceNW5XNnDc9yf60ufn81JE0dgGJK87AwuO2dGly/HdfmgfE9qimPW4RxRmZc9krGePJxwOx7DxCstvNLAMgw8wUyMvAJAIGIJBAqkAZY3eRe+48wMIS1QFpaweKNtJ3XRrndOU6Uj5+V5Ewg5Ejce68iZ/DKlxJOVh8zOhYQDjgPKBcMDhgchQDpxkCZCmCgsPKbNo1XJi6uDuTRnLLRHEK7CK01sw8QjDCzLgycvH+EPQTSGUAqUQFjeZB5chJPoGO2wQElapcEL1atTUxwgHTkvzh1DvC2MoSS2lPikiSUllh3Ayi9AWB6IRBFCoJAIy07+TnGSHRzLAmWCEux0oqxoOviObOloP+nI2Vshv801F5+BaRo8tug19nUz5UsBwYANwE8X/JWdFTXMnDYWoNsRFSkE1152JoX52Sz69zJ+++RLVNc14aruJ2c1trTxypLVbNu9j4TjooB9tY0U5GYxbHAhqz/YwcZtFakPA2BfbQMnjBnKoKJ8quua2L6nOrWKpmnaceuYH1EZVTaQO2/9MpPHluHzddwFNSRDS/pz9cVzutS94MypXHnBLPrlZSGN5FP3WCajhxXz7a9cQFG/nC71pZScP2cql5w1nayMAEIITMNg4ugh3PDls5Edw/yHW25WkNuvv4QzTplAwOeFjzzHH954OTMmj0p9iNZHbGEiOv4pTBASw/RgSBsj7kDURXhDKI+NEiJ5USstkBaYNsLwAga4CuIutkj+/g4mHTnNjrcCiUw+VpiYho1p+DASDigD/BkIo+OOrrRAJHMqT6Dj4l0gEgoj0bu/i+QMGIEUAlcaKGkiTQ+mMlFRB0wb/JkoaSIEnfmQHpTHn8zpCEgoZKJ3b2XpyCkQoBQIiStNkCbSsDESCqIJ8AbBlwnCSI7gSC9KmmB4wfKBMhEuEHORHPq1TUf7SUfO3hpeOpCC3Eyq65rYsrMytbjTC6+9x08XLKSmvjm16ABF/XMZWJjLnn31/PO1j78BgGkYzJw6hllTR1NZ3cDS93ue6haNJVi+phzTMBg3ovuRF03TtONV7z5pj1KhoJ+vXTaXzFCAXZW1/L/fLeKSG+7i6lvu4+l/vkXDR4be6Rh+37yjkrsffpYvfvte5l9/Jz/81Z/ZV9tIblaQSWNKu9QHyM0Osauylh/9+mkuu/FuHvzzv4hE4wwfMoAxw4pTqx8W88+azpDifmzduZfv3fME86+/k2u/u4BXl67BYxqcd/oUvB6Tbbv3cfUt9zH/+jv51aPPE4sn2LS9gvnX39nla9FLb6em0Hqwtr0SKSUIQCiUsFDSwrJsUCaqqRXVHkcIG6QHIb1g+hCmD2H5wfAjlIVwJcKVbAt/uPNRT9KRszreipTJ6TgIiTItlGViWT5UTKEaWyDmguED6UUYXqTlBcufzGn6OnPuae/6d9eTiJNASokSgDBQ0kJaPkzLB+EYqrEVHMDwogwvWDbSsBGmH2H6QdoIZSJcg+3tvduFKx05XSWQHR0fV0pcw4Np+TANG9UcRjW3J0dMOjpEmB05jY6cwotwTaRrUN7W/YjrR6Wj/aQjZ28VF+bi9ZjsqKghGkukFn8ixf3z8Ns2tQ1N/MclZ/D43TezaMFtLHzgVn7zo29w5ikTUh8CwM//80oWLbiNp+//T2666lz21TUddGH/fpu27aE9GmNg/zy8HjO1WNM07bh1THdUJo4aTP/8bPbVNvJ/H3yG5WvKcZWiJRzhr/9Ywi8e7nrq9N/+vYzv/uJPvL1yU+dWj+u27GLT9gqklHg9B87/XbVhO9+750+s2biDhOPw8lurWLtpJz6vh6ElhanV+1zIbzNqaDFNLWF+8+SLbOqYHtDQ3MojC19mR2UN/XIzKczvOhqk9Y1t7fXEcZGmBQhcKXCkB2H6kKYPKW2kMpFWAOPzCkabGGYQYQYQRgBp+BB4EcrH4pYKWuLh1BQHSEfOJ+rWdCziBleAi8TBQloBpGEjsZDKizICmF8A0d+LNIJIw5/MKWwENgIfLzdtSQ3frXdaKjCs5JQmBShpoISFsPzJ56lMpPDhFnkxLlIYwQDC6vgyAkjs5PMkwHN1K1PDdysdOatjbUhr/3ktEldYydES0480OnKaPtRUAzFHYph+hBlEWEGkEUAKLwIvjS68XHvoqWbpaD/pyNlbRf3zEEKwt6Z3HcveMEyJEHDCmKHMnDrmw5FuIeiXl8nXLpvLuXNOTH3YAcpKCvn+/7mE0uJ+qUVdNLaEicbi+GwPQX9yipqmadpnwTHdUSnIzcRjmawv33PIO1IAttfiqovm8PD/vZ6FD9zKogW3sWjBbV3OM0m1YevuA/av37ZnL0IIjI7pY4dTbnYG2Rl+sjIC3PO9azp/5kULbuOpX36H0uJ+eDweBhTojsrh8kF7HdL04AKuUjgKEljJO96WD2EFiRoBou0+jOn7kCOiSBlEiiBChBAyEwjwaN27qaF7dKRz7os10aocpGmhOv8ZJISRHE3oGDkJywwcE+TcSkS+THZW8CNkECGCNCYUf619JzV8tx6rX5HsHJGc8eO6KtlBkt6OnIFkzngAcqNwZhXS9iFlAEkAYSRzLmmtYH3rgbs4dScdOR+vX4Xh8aIQKJV8ZRMYKNPb8boGwAoQbg8gSusRpzYijRBS+hAiiBAZoII80bAuNXSPjnT7IU05e8M0Dj1d7pOKxhK89vZabvrJI8y//k6uu/1B3lm9BSEFp544+oDRj+/dnRwRv+zGu/npgoVs31PNgIJsvv6FeQfU/ahwe+SAzyFN07TPgsN/pX0ExGKHPgXZ6zH5r29czPmnTyE7I/ip1pd4Pcm1MEeClAI6dgPS0uMX+xZjeL24LjhK4iJIKIgrgeiYBiXwUvHKEOJV/XAnbkGUtoDwgfCDsHm9bSfvtx58EfRHpSPn080bkLaN4wocV+IACVfgYHTktFHSZtffh+NGbZi9CbIUiAAQAOHj4cZ3aXXaU0P3aHOiFWnZuEACSVxJEq4CYSWfo2ETbcyh6sUREGiH08vB8iRzqgAIPw82HHrh/kcd6ZxrwpWEDRMXgaMECSVxlCDuCIT0JHNKm6aNA2h+fxjugArEyXuSryl+wEe1SvCX+t5fwKej/aQjZ7otX7uFBU/8kz17awGormvi8b+9Tl1DCwG/3ePoR8JxWLlhG3c//Cx1DS30y8+mqF9uarVOlmVhGftH5TRN0z47jukr4ObWdhzXYfjgAYfctnH44AEMHdSPSDTOE3//3841KvOvv5PFy9enVu+R12MydlgxjuvQ3Nr1gswyDXKzQp3/l0Iwa+pYAt5P3rFpammjta2d2vpmrr/joQPWm8y//k6u+NY9LF3Z82JM7dN73alFWB4SShF3JDEkcWWQwAvSj+0NkhcI4L41DllTjDtpHUvG5rAg8zQeyZnBYxx6bUGqI51zcVM5tbaNKwRxF+KOJKokcWWipA+kn6A3SI7IRLw2GWI2avZqFpaM4YHM03g0ezLPtvZu2td+P6t6BZGVg+MmNxWLK0FMGcSUCdIP0k+mHSDYnI9860TwtxE5YzMP501nQfZsHsoYyNq2j3dhm46c9zYswRvKJe4mN06LIYkpSVx5QPoRhp9snx9zSzHGhvE4hbuomNnAgqzT+G3OLB6yDFqdjzcd6ki3H9KU81D27K0DoH8fTo/dW9NILJ5gYP/cAz57bI+FafauUxFPJHBcF1wX1+1+xzCA/OwQfr+X1rZ2Gpq6P9NF0zTteHRMd1Q2b6+gubWdIcX9+P51lzB6WDFSCGyvxfmnT+GWaz/fWTcU8GNIg3g8zq7KWiLROAW5mVwz/3QmjRnaJe5H5WaHyM0KQseJxd/+j89TOqg/1XXNvL+uvLNeuD25vegpJ4wkPyeD7IwgN119LmfPOqFzh7FPoq6xlZ17qsnNDnHzNecxbkQJZi/urIXbY7iuomRAAZ8/c1qvHqP17LG9S6jKysQVHuJKEXcgiiCOgRI2yADZ/ix8niAsnUJF0wSmD1/I4KK17A0rhvf/DgMLTkkNe1DpyHnLjmcw8ktIKJcYEFOKKJKoa4D0Y5rJnEYii9o35xJ2MrnwhN9j+/dS0e7hcxP+SMDOSw17UD/b9yre/IHElEvMVUQVREl2kJABfN4QWf5MqO/PqhWX4vE1cPG0PxBJtFETK+K8KY+lhjykI52zvLWa5+K7sII5xJQi5ihiCKJIHLwgA2T4Mgn5MqG8jHXbz6cw933mTHyOhrADntlMGfHN1LAHlY72k46ch7JjTw2RaJzBRfkHnV71ceyqrGZvTQOD+udx3RVnkZ2R/IwYXFTAN66YR1ZGgJ17qrucpfJRpmEwfPAAbrjybPJzM9m6e1+PW9MDlA7qj+2xqKpp6HELZE3TtOORGDIg85h+17v0nFOYP+/kbi/EN22v4Ht3PwEdW/z+6OYrKMzPTq3W6annF3fuiDX/rJO54rzuD3SLROP8/ul/8cY7H47ETB0/jBuvOhef3XX0pDUcQUrB7qrazp+ltLgft994OaEepgWQ8rMMGzyAW756YWeHKdVHn+d+oaCfH990OYMG5Hf5Pimxjwf7X8+V67dy36MvpBb3qftHXkt+cwyfMrEtP17Dh8/yY1t+BBKEBAR3meO4fMaTDAyuYeGGy9mwayTKhBW77mRP9ZLUsAeVjpxPjL4RWVNN0Aphmz5sy49t+vCafkCAEOzDz1/8hVw760GUaOSP71xHTXMWWC4vr/ka4UjPF16ppmSO4NbCM3Eb6gnsz2n6sU0/luHtzPmSNYTq3BauOPG3VLWHeHzJ14k6FjGjlhff+0pq2INKR86vDZrHGaIEGY3gtwLYph+v6cdn+jGk2ZFT8pBnDEOHrWT24KdZWTuJ51d8HiUUe1pfYcWWX6eGPah0tJ905OxJKOjnJzd/gfycTO5/7HneWd39qN/B3vMBYvEEv3nyRd5cnjwwcva0MXz1snkHjKgAVOyr56cL/tq5dvJgsXdX1fLz3z7T4zpLKQS3f/Myhg0ecNCfX9M07Xh0zB/4uH7LbnZWVDNoQD4Bv42UkoTjsHFrBY//z+udhyG2R2LsqKhmaHF/MgI+hBS0tUdZtnIT76zZwqihA1m3ZVfnQYijy4oP2LM+Fk+waVsF9z/2AivWb+tSVrGvnnjCoXRQP7wei4TjsGbTThY88SKTRpcSjcU7D3zcf0Ch1+r57t7azTs7f5b6xhaWrdpEYUE22aEgVucOQkl1jS0HHCYZi8XZsqOSgf1yycwIdFn4/9HYx4PDeeBjqhdr32di4QRyCaAc98OzIIQH0/QjhBeEl7dFLit2jSY3byezixdTFcunqjGLgf1PYtPuhalhDyodOf+n5h3mDp6NN+KAkMnzQ4SFkB5MMwDCgyM9LHXyWF05muGF7zGl+G3W1IyjNWLSv994dlT9KzVsjyqjdexwGplaMBnR1oaQVvJ5Cit55ojhA7zsJoMN4Sy2tw5hysClDCvezDs7JgBeLJ+gtqH30zjTkXNF01a8oSxGBEpQkSjiI+eJGIYPafgAD6tFHhtr+9Fu2ZwyYDG+7CgbqkoI+Yewu/5lEolIaugepaP9pCNnT2KxOBkhP+NHlGBZFm+/v5Hu7s51957/UY7rdjmUd0dFDburahg0oICQ30ZIQXt7jHfXbOaXf3i+ywHCqbFdx6W2sYV/vvEeD/zpnzS19Dytb8aU0Xxu1gnsrqrlzy+8ieO4qVU0TdOOW8f8iMrhsv8O2PE2+nA8OpIjKvudVTCNr2bPxArHsM0gthXEYwbwWkEiAZs76/Zi+Ebg4HDh1MdYtmUjW+pvoyG8ihVb7k0N1yvpyHlz6UXMpgQzIbDNAF4rhNcK4DGDVPgi/K4pE9MTxOdr5pIpD3Hvyx5s+2o2V/2RHXtfTg3XK78efT1FjWB7/NhG8vl5zCAeT4i3xC5eTYxDCUVxv53MGf4YP35hDnmZY1m6+TZawz0f6HcwRzrn8MyB3FF0Of6mCLbV9Xdp+TL5besHVFtTcEgwbdQSguJ5nll1A4YleG31danheiUd7ScdObuzf4S5f342D/35X7z+Tu93UEun/T93QW4Wv33yRd5a8UFqFU3TtOPaMT+icrjsvwN2vI0+HI+O5IjKfuVtFdSacaYXTUE5Dkp4EIZNRVBxa/kveWPX44TsMny+AtZWjmFHWzaL13yLqvpP3ulNR85lDR+QlzOQEVmlybnxMnnmyPveam5c91NWVj5OSe55xJTN8t2T2dG4ivc23Ulja9cRx4/jxZrlzCibRY4ZxMUAwwO+TJ6NL+e7q35OZfPbDMqbR204wPuVp/Bu+e1sqvgzsfiHd7A/riOdsy7azNK2cuYOOx3LVcnT3E2bcMDmnpqneXzz72hPNJOfOYnttYVsaT6JV1Zdy/Z9/0gN1WvpaD/pyNmdWCxOWzjCiePKGDO8mM07KqntxQn06SSF4BtfmMfYESW8teIDnnlpaWoVTdO0494nX+WtaZ9xr+1bzje3/Ibm/kHswXmszahj/tvfYFVNchreuzt+THXjOpAm8Wjvp+ocTDpyPrD1GX5d8xLOwDyswfk8HX+bb7z7XWrbkluyvrT+C8Ri7RiGj0i0by7+vrnybl5xt2KW5KOKs/lB1e/5+Zr7AWhq384bm78NSAzpw3X7ZirMkc5ZFa7m0nf+m/KMBJ4h+TT0t7hmw+08s+15AHbUPs+6XY+DMFCJvhn4Tkf7SUfO7ry14gOee+1dQn4f113xOQpyM1OrHDWkEFx10RxmTB7FxvI9PPz0v1OraJqmfSboqV890FO/jh3pmPqladqx6dJzTmFk6UB++cfnaWnteW1Iul127gxGDx3I3Y88d1T/nJqmaYeT7qhomqZpmqZpmnbU0VO/NE3TNE3TNE076uiOiqZpmqZpmqZpRx3dUdE0TdM0TdM07aijOyqapmmapmmaph11dEdF0zRN0zRN07Sjju6oaJqmaZqmaZp21NEn02vaQVw0YyEl/WcTTbTQ3LYrtfiwONI5/Z58Lpq5iLzMkbRG9tIeTR7keDiNKrmU0yb8HL8vl7qmzThuNLVKn0tHzjmT7mRc6VUYppeGli24ykmt0ueOdPvRNE3TtMNFd1S0Y15pcT9++YNrKSnK551Vm1OLP5Vxg76E3xrEgNxTGVV8KRgxahs3pFbrU0c6Z9wJM3HwdQS8AxlcMJfhxfOpanqHaLQxtWqfsYwQZf0uIMs/gmFF8xk84Ey27Hk2tVqfSkfOouyZ5GdMJC80keFFl5KbXcaufW+kVutTR7r9aJqmadrhoqd+adpBbK1YTMKNkXCjYDrsqVmaWqXPpSNnc8vujpwxlNFGU/P21Cp9qqp+GXEn2pmzoX1tapU+l46ca3c91pnPJc6e2sWpVfpcOtqPpmmaph0OuqOiaQexofJPJNwoSiW4fvIDnDwkllqlz6Uj57a9r5JwY3iNVr415RcMLfCnVulzdQ3bSbgxxhWu5cZpLxGwjdQqfe5I52xq20o0GsVx48wf/TeumbY7tUqfS0f7+aRmTh3DL/7rakqL+6UWHVVGlQ3knu9dw+SxZalFmqZp2mEkhgzIVKnfPFbkZgX50c1XUJif3fm9qpoGfvirp6hrbO1SVzt+lRb34/YbL2fl+q3c9+gLqcWf2syRv2bdnru4f0gJdr2EiMCKRmkkzlPxPfwruq+z7ixvPjf6hzIwawDSHyCiJE82rOfBqve6xDyUI53TlDYzRvyScM0d3Jo/AhokMqaQsXb20M6vozvYFG/prP/1YCkXegaSk1OIsH3UujHu2vc+r9dt7BL3YAblnUVeYAInWH/jbNUf1SaQERfXibLebeXeSDmNTvIi22dYfN8/nFMDRfgy8xCWl42Reu6oepOtbfWpoXuUjpyTB3+X6pYV3DKgiaJGD6rdxIzFiLpRXknU8vvIjs66g80g/x0YzviMIkQwC0yLV5p389PKN2mLR7rEPZgj3X4+iVMmj+Jrl88lnkhwzyN/54PyPalVjhr7f1bHcfjFw88e1T+rpmna8eSYXqPitz2cdtI4QgFf5/dawxHeWLaW9sjRexdR61vZmUFmTRvL3pqGPl+jAhBteZuf+MfhVsewTT++YBCP65KViHOakUGO6eXteCPf9Zdxkz2IkOVB+vwIy8ISksmZgxibM4QXa3q/TuBI53RVgsHRDXxJlZFoiOG3Q/hsH14nQX8XzjZzqBEutSrGb4Kj+ZyZi8/2IWwvQkoChsm8/JEkPF5WNvZuAXdTuJyLZIyJTSFkVOL3ZWB7PfhiEUqVxTwrm9VOmDzp4RH/GCYYQUzbj7S9CKHI94Y4t/9E1kXqqGxvSA3frXTkrGp8ix+GBuHfl8ASNoFgBh4hCMZjTJI+TvJks8Rp5gwrj7v9IygSHoQvgPB4ECjKAjmc2W88r9RvJez0bgOAI91+Pq6ifjl888vnIgXcfZBOSnZGkC+eP5Pv/McFXHL2KVTXNbGrsia1GjddfS63fvVCLjtnxgFfM6eO4Z1Vmw74TOhtbIDdVbU0NrcydcIIxgwbxIp1W2lr793vQtM0TfvkjumOSnskxj/fWMFf/7mEV5eu5sTxwwB0R+Uz5nB3VH5SeBpWOIaFwuMkMCLteJwEFgJLuIzDy5VWHuOkDyklQlrgOhBPIKRCeDyUhPIYECjkjdrejTikI+ft+acQb23FlgZWPIYRa8dyHTwIbKGYIwJcbOZSJL0gJEIY4DoINwFCIm0vU3NK2RWPUN5alRr+ACP9hVwcGIqKRrBRGNEYZiyCBVhAloCLZAbnW9mEhIkyTISQkEgglAOGgddvc3rBBP5Z+wGtiUOPOKQj51cLpjHY8WK6Dl5HYUTCmPEolgAPiiIkl5jZnG5kYkmBMC2UUuDEESiEaZEZCDG9YCwLK5anhu9WOtpPb0khuOnq8xhSVMDzr7/HG8vWpVYhPyeD6644i699YS4jSwdiWQaO67J8bXm3nYmTJg6npKgg9dvQzc2rjxt7vx0VNeRlh5g4aggZIf9hea/RNE3TutJrVDTtEHING1fFkVJgSANTmkhpYvlDmMFMpGHhN2wEElcJhAChXEQiBrEIxKKIaIS5WcNTQ/foSOe8In8iuAIpJYaQmNLEFCamtDADIUw7iJAmfsOLEAJhGCAFwnVQsSjEo6hoFNEe5qp+01LDd+vavMm4TgIpJFIYmNLAkiam4cEKZGF4/AjDiyk9AEhpgCDZMYpHEYkoKhIlEIvwleKZqeG7lY6cJ/sHgOMipIEhDaRMvq6WN4ARzEaaXnwyOTIFIIRECoVIxCHeDrHka1sm/czKG50avltHuv18HFPGlzGydCA7Kqr5+8vvpBYDMP+s6Uw/YSRCCN5ds4Xa+ubUKgeIxRP86tHnmX/9nV2+brjjoS5TgT9J7P0WvbSUvbWNnDiujPEjB6cWa5qmaX3sM9dRmTK+jF9+/yssvP8WFi24jT//6jv84IZLyc/J6KwzbcIwnrz32/z2x9+gIDezy+MBLjhjKgt/fQt33Hg5UojO74eCfq674iwev/tmFi24jYX338Jdt17F8MEDPvpw7RgyL3skrlJIJRDSREgLQ1oYpgfDn4HsPwiyCxCGjZAGQkiUNJN/Wm4C4nGIxVCRBHY8zoiMQ7eFdOQc4+sHSiVHD6SBkCaG9CANCyOUiygsQQRzwPCQvHI3QJgAyEQMEgmIxnBjDv0Nb2r4bmUZnuQFvDAQwkw+R+HBsHyYufmIgoEIbzB5tx8DpJF8jspFxKOoeAyiMVQ0RrHnwL/T7qQjp2VIcBWo5O/KkhaGYWF4A5gFAxB5hR2/SwuFAft/l8qBWAycGERiqEg7IwOFqeEPkI7283HMm3kChiF4cfH7RKLx1GIA3l+3lQ1bdvODe5/i4af/Tdzpu/NnPk3susZWlq3chM/rYd6MianFmqZpWh/7THVULjt3BrdeeyGDBuQhjeRT91gmE0cN4c5bv8yosoEArPpgO3v21pKdGWDs8EFdYkghmDS6FMd1Wbx8Pa5K7kWQmxXk9usv4YxTJhDwJS/UpCEZWtKfH954OTMmj+oSRzs22MJEdPxTmCBk8oJP2hhxB6IuwhtCeWyUENBxYYi0wLQRhjd5wesqiLvY4tAX8enIaXa8FUhk8rHCxDRsTMOHkXBAGeDPQBhW8gHSApHMqTwBhLBACURCYSQ+7LwfjBQAAikErjRQ0kSaHkxloqIOmDb4M1HSRAg68yE9KI8/mdMRkFDIRO/eytKRUyBAKRASV5ogTaRhYyQURBPgDYIvE4SRHMGR3mTHwfCC5QNlIlwg5iI59GubjvbTW8WFeQwakEdTc5gNPaxLAXh3zRZ+8Kun2LyjMrXoU/u0sZet2kxrOELJwAJys4KpxZqmaVof6t0n7XFgRGkRZ506CYCXFr/P1bfcxyU33MWPfv00+2obyQwFuGjuyQBEYwmWvr8RQ0qmju869aF0UH8GDyxgb00jy9du7fz+/LOmM6S4H1t37uV79zzB/Ovv5NrvLuDVpWvwmAbnnT4Fryd5B1o7dqxtr0RKCQIQCiUslLSwLBuUiWpqRbXHEcIG6UFIL5g+hOlDWH4w/AhlIVyJcCXbwh/uttSTdOSsjrciZXIKEEKiTAtlmViWDxVTqMYWiLlg+EB6EYYXaXnB8idzmr7OnHvae7fjXsRJIKVECUAYKGkhLR+m5YNwDNXYCg5geFGGFywbadgI048w/SBthDIRrsH29t7twpWOnK4SyI6OjyslruHBtHyYho1qDqOa20GZnR0izI6cRkdO4UW4JtI1KG/reQ3FfuloP71V3D8Pv21TU9/M3prebUbQWx7L5Oarz+sczf79z6/n6vlzCAX7dqvt3VU11NQ3kxnyM6AgJ7VY0zRN60OfmY7K1AnDyQj6Wb5uK4/89RVawhFcpVizcQcP/vlfhCNRBhXm0b9jq+PVH+ygubWdssH9KS7M64wzcdQQgn6bFeu30dIaBiDktxk1tJimljC/efJFNm2rAKChuZVHFr7Mjsoa+uVmUpivP9SONdva64njIk0LELhS4EgPwvQhTR9S2khlIq0AxucVjDYxzCDCDCCMANLwIfAilI/FLRW0xJNt5mDSkfOJujUdi7jBFeAicbCQVgBp2EgspPKijADmF0D09yKNINLwJ3MKG4GNwMfLTVtSw3frnZYKDMsEJVCAkgZKWAjLn3yeykQKH26RF+MihREMIKyOLyOAxE4+TwI8V7cyNXy30pGzOtaGtPaf1yJxhZUcLTH9SKMjp+lDTTUQcySG6UeYQYQVRBoBpPAi8NLowsu1q1OiHygd7ae3CvIy8VgGNQ1NqUV9ShqSnMwg582Zwk9u/kK3U3g/qWgsQUtbO6ZhkJWpR1Q0TdMOp89MRyUnM4Drumwo39U5XWu/ir21NLWE8doe/HZyEe2Oimo2bt1DZtDPhFHJRZNej8mU8WW0tUdZue7D0ZTc7AyyM/xkZQS453vXsGjBbZ1fT/3yO5QW98Pj8ei7b8eoD9rrkKYHF3CVwlGQwEre8bZ8CCtI1AgQbfdhTN+HHBFFyiBSBBEihJCZQIBH695NDd2jI51zX6yJVuUgTQvV+c8gIYzkaELHyElYZuCYIOdWIvJlsrOCHyGDCBGkMaH4a233C6RTPVa/Itk5IjnLyHVVsoMkvR05A8mc8QDkRuHMKqTtQ8oAkgDCSOZc0lrB+tbeHaSYjpyP16/C8HhRCJRKvrIJDJTp7XhdA2AFCLcHEKX1iFMbkUYIKX0IEUSIDFBBnmg4cHesnhzp9tNbhiERH1nX11fue/SFLgvov/b9BSz611LaIzEG9s9lbh+vJ2lqaUv9lqZpmnYYfGY6KgAKRTSWSP12jxYvX08s7nDi2DKkEAwrGUD//Gy2797HhvIPL1KkFNCxY492/PnFvsUYXi+uC46SuAgSCuJKIDqmQQm8VLwyhHhVP9yJWxClLSB8IPwgbF5v28n7rdtTQ/coHTmfbt6AtG0cV+C4EgdIuAIHoyOnjZI2u/4+HDdqw+xNkKVABIAACB8PN75Lq9OeGrpHmxOtSMvGBRJI4kqScBUIK/kcDZtoYw5VL46AQDucXg6WJ5lTBUD4ebBhWWrYgzrSOdeEKwkbJi4CRwkSSuIoQdwRCOlJ5pQ2TRsH0Pz+MNwBFYiT9yRfU/yAj2qV4C/1ve80pKP9HE3qGlt56rk3WbF+K0IIcrNDqVU+FZ+379btaJqmaT37zFxdh9ujGNJgYjdbShb1zyMz5Ke1rb3LnbL9i+qTC0DzmTR2KF6P2WURPR1311rb2qmtb+b6Ox46YHvM+dffyRXfuoelK/v2PALtyHndqUVYHhJKEXckMSRxZZDAC9KP7Q2SFwjgvjUOWVOMO2kdS8bmsCDzNB7JmcFjHHptQaojnXNxUzm1to0rBHEX4o4kqiRxZaKkD6SfoDdIjshEvDYZYjZq9moWlozhgczTeDR7Ms+29m7a134/q3oFkZWD40LCSV5Ix5RBTJkg/SD9ZNoBgs35yLdOBH8bkTM283DedBZkz+ahjIGsbft4F9PpyHlvwxK8oVziLjgOxJDElCSuPCD9CMNPts+PuaUYY8N4nMJdVMxsYEHWafw2ZxYPWQatzsebgnWk209vVNc1EYsnyM/uu6lYPZFC4PMmN38I9+HhjF6PSW52iFg8wd6axtRiTdM0rQ99ZjoqazbuIBKNc+L4Mq699AxCfhspBCdNGsENXzobv+1l3eZdXfbb37+oPiPgY9qk4YwfUXLAIno67t7t3FNNbnaIm685j3EjSjCN/XPStePBY3uXUJWViSs8xJUi7kAUQRwDJWyQAbL9Wfg8QVg6hYqmCUwfvpDBRWvZG1YM7/8dBhackhr2oNKR85Ydz2Dkl5BQLjEgphRRJFHXAOnHNJM5jUQWtW/OJexkcuEJv8f276Wi3cPnJvyRgP3hmq7e+Nm+V/HmDySmXGKuIqogSrKDhAzg84bI8mdCfX9WrbgUj6+Bi6f9gUiijZpYEedNeSw15CEd6ZzlrdU8F9+FFcwhphQxRxFDEEXi4AUZIMOXSciXCeVlrNt+PoW57zNn4nM0hB3wzGbKiG+mhj2odLSfQ9mxp5q29gj5ORmd6wEPh8FFBXznKxcwaVQp4UiUd1Z/vA70wRTm55CTGaSlrZ36xt6fwaJpmqZ9fGLIgMyuCzaOIfPPOpkrzuv50LWWcIQf3/8Xtu3ehxSCb375HE6dMrrbOdK7q2r5+W+fobqu6yLPgtxMfnTTF0g4DlkZAf61eCVP/P1/u9QBGDZ4ALd89cIet6vctL2C7939ROq3tT5QWtyP22+8nJXrt3Lfoy+kFvep+0deS35zDJ8ysS0/XsOHz/JjW34EEoQEBHeZ47h8xpMMDK5h4YbL2bBrJMqEFbvuZE/1ktSwB5WOnE+MvhFZU03QCmGbPmzLj2368Jp+kueoCPbh5y/+Qq6d9SBKNPLHd66jpjkLLJeX13yNcKT3d+SnZI7g1sIzcRvqCezPafqxTT+W4e3M+ZI1hOrcFq448bdUtYd4fMnXiToWMaOWF9/7SmrYg0pHzq8NmscZogQZjeC3AtimH6/px2f6MaTZkVPykGcMQ4etZPbgp1lZO4nnV3weJRR7Wl9hxZZfp4Y9qHS0n55IIbj9m5cxZlgxT/z9f/n7K91PZzt1ymj+zxc/h8fqeafEp55fzKKX3gbg5/95JSOGFKVWIRZP8Nd/LuFv//5wqt7HjZ3qgjOmcuUFs3j17bU8+NRLqcWapmlaH/rMjKi4SvHrx//BwpeW0tDc2jl1q609yitLVvODX/35gE4KHVMVVm/cwYCCHGKxBG+990FqFQC27Kjk+/f8iRXrymlvj6UWa8eJGzc+THkQEh4fUcchphQRpYi4oIzk9ChkAInk8bcuZ0NjGZeM/gvDB60n5sQ4YdjNqSEPKR05r9xwPy35ecSAqHKIui6RjpEHjOT0KNvwEI76eejNr9ASs7hqygKCwQZi8QTTxnw3NeRBLW/axF37/k0it5BoIk7UdYkqRcRVxDGTOUUAr2uwp6Y/T6y8hly7kS/N/ANx4uBmMKr00tSwB5WOnA/t+hfPOVtRoWyiiQRR1yGmXCJK4QgPGMk1MKZrsGzjJF7eeS6T8lZy1okvESNO/6zZ2PbHG4lIR/vpiasUr769hoTjMmPyKOyOqVl9SSlFS1s776zazH/+3z926aR8WrlZQc6cMZFwJMZbyzekFmuapml97JgeUdE0jvCIyn5nFUzjq9kzscIxbDOIbQXxmAG8VpBIwObOur0YvhE4OFw49TGWbdnIlvrbaAivYsWWe1PD9Uo6ct5cehGzKcFMCGwzgNcK4bUCeMwgFb4Iv2vKxPQE8fmauWTKQ9z7sgfbvprNVX9kx96XU8P1yq9HX09RI9geP7aRfH4eM4jHE+ItsYtXE+NQQlHcbydzhj/Gj1+YQ17mWJZuvo3W8Cc7xO9I5xyeOZA7ii7H3xTBtrr+Li1fJr9t/YBqawoOCaaNWkJQPM8zq27AsASvrb4uNVyvpKP9dEcKwfevv4TxI0r427/f4annF6dWOWp97fK5nDljIv/77noeePwfqcWapmlaHzOyQ/Ydqd/UtGNJdmaQWdPGsremgXdWbU4tPizK2yqoNeNML5qCchyU8CAMm4qg4tbyX/LGrscJ2WX4fAWsrRzDjrZsFq/5FlX13U8n6Y105FzW8AF5OQMZkVWaHIWUyTNH3vdWc+O6n7Ky8nFKcs8jpmyW757MjsZVvLfpThpbt6WG6rUXa5Yzo2wWOWYQFwMMD/gyeTa+nO+u+jmVzW8zKG8eteEA71eewrvlt7Op4s/E4i2poXrtSOesizaztK2cucNOx3JV8gR50yYcsLmn5mke3/w72hPN5GdOYnttIVuaT+KVVdeyfd8nvzhOR/vpjgKqqhuYMn4Yo8uKqW9sZkdF76cJpsvsaWO4aN50qusaeeDxf9Ae0SPnmqZph5vuqGjHvHR0VAC2t1Xydngzp5adSk5eLmup5qq3v8PejpO8Kxr/lyzfGPz+Qlrat1NZtzQ1xMeWjpzvNmygwYhz4tCp+HOz+Gv9W9y+6h7CHQcBltcsYnDu+VjeIHvqXqWlrXfnixzMi3uX0i+vmBGDRkJmkB9te4Q/lS8EIJpopKp5OYPy5mGaNlsqF+K4n/6i8UjnbI23sbDiNaYNPYUBhUU0+AXfWPVjlu19D4DG8Gbi8Rh5WRNRKkp51d9SQ3xs6Wg/3alvbKG5tY3JY8sYO3wQm3dUUlt/9C5Mnzy2jK9fPpeE43DfYy+wq7I2tYqmaZp2GOipX9oxLx1TvzRN+/RmTh3DObMnc9+jL1BZXZ9afNQYVTaQr146l0f/5zXWbNyRWqxpmqYdJrqjommapmmapmnaUeczs+uXpmmapmmapmnHDt1R0TRN0zRN0zTtqKM7KpqmaZqmaZqmHXV0R0XTNE3TNE3TtKOO7qhomqZpmqZpmnbU0eeoaNpBXDRjISX9ZxNNtNDctiu1+LA40jn9nnwumrmIvMyRtEb20h49/GdEjCq5lNMm/By/L5e6ps04bjS1Sp9LR845k+5kXOlVGKaXhpYtuMpJrdLnjnT70TRN07TDRXdUtGNeaXE/fvmDaykpyu/zAx/HDfoSfmsQA3JPZVTxpWDEqG3ckFqtTx3pnHEnzMTB1xHwDmRwwVyGF8+nqukdotHG1Kp9xjJClPW7gCz/CIYVzWfwgDPZsufZ1Gp9Kh05i7Jnkp8xkbzQRIYXXUpudhm79r2RWq1PHen2o2mapmmHi576pWkHsbViMQk3RsKNgumwp+bwnNT9UenI2dyyuyNnDGW00dS8PbVKn6qqX0bciXbmbGhfm1qlz6Uj59pdj3Xmc4mzp3ZxapU+l472o2mapmmHg+6oaNpBbKj8Ewk3ilIJrp/8ACcPiaVW6XPpyLlt76sk3Bheo5VvTfkFQwv8qVX6XF3DdhJujHGFa7lx2ksEbCO1Sp870jmb2rYSjUZx3DjzR/+Na6btTq3S59LRfj6pmVPH8Iv/uprS4n6pRUeVUWUDued71zB5bFlqkaZpmnYY6ZPptWNeaXE/br/xclau38p9j76QWvypzRz5a9btuYv7h5Rg10uICKxolEbiPBXfw7+i+zrrzvLmc6N/KAOzBiD9ASJK8mTDeh6seq9LzEM50jlNaTNjxC8J19zBrfkjoEEiYwoZa2cP7fw6uoNN8ZbO+l8PlnKhZyA5OYUI20etG+Oufe/zet3GLnEPZlDeWeQFJnCC9TfOVv1RbQIZcXGdKOvdVu6NlNPoJC+yfYbF9/3DOTVQhC8zD2F52Rip546qN9naVp8aukfpyDl58HepblnBLQOaKGr0oNpNzFiMqBvllUQtv4/s6Kw72Azy34HhjM8oQgSzwLR4pXk3P618k7Z4pEvcgznS7eeTOGXyKL52+VziiQT3PPJ3Pijfk1rlqLH/Z3Uch188/OxR/bNqmqYdT/QaFe2Yl50ZZNa0seytaejzNSoA0Za3+Yl/HG51DNv04wsG8bguWYk4pxkZ5Jhe3o438l1/GTfZgwhZHqTPj7AsLCGZnDmIsTlDeLGm9+sEjnROVyUYHN3Al1QZiYYYfjuEz/bhdRL0d+FsM4ca4VKrYvwmOJrPmbn4bB/C9iKkJGCYzMsfScLjZWVj7xZwN4XLuUjGmNgUQkYlfl8GtteDLxahVFnMs7JZ7YTJkx4e8Y9hghHEtP1I24sQinxviHP7T2RdpI7K9obU8N1KR86qxrf4YWgQ/n0JLGETCGbgEYJgPMYk6eMkTzZLnGbOsPK42z+CIuFB+AIIjweBoiyQw5n9xvNK/VbCTu82ADjS7efjKuqXwze/fC5SwN0H6aRkZwT54vkz+c5/XMAlZ59CdV0TuyprUqt1YXstfnTzF7j+yrO5cO5J3T4mPyeDm68+l29c8Tm+eP5M5p91MlPGlbGrooa6xg875PvtrqqlsbmVqRNGMGbYIFas20pbe+9+F5qmadonpzsq2jHvcHdUflJ4GlY4hoXC4yQwIu14nAQWAku4jMPLlVYe46QPKSVCWuA6EE8gpEJ4PJSE8hgQKOSN2t6NOKQj5+35pxBvbcWWBlY8hhFrx3IdPAhsoZgjAlxs5lIkvSAkQhjgOgg3AUIibS9Tc0rZFY9Q3lqVGv4AI/2FXBwYiopGsFEY0RhmLIIFWECWgItkBudb2YSEiTJMhJCQSCCUA4aB129zesEE/ln7Aa2JQ484pCPnVwumMdjxYroOXkdhRMKY8SiWAA+KIiSXmNmcbmRiSYEwLZRS4MQRKIRpkRkIMb1gLAsrlqeG71Y62k9vSSG46erzGFJUwPOvv8cby9alViE/J4PrrjiLr31hLiNLB2JZBo7rsnxt+QGdjlT/cckZTJ0wHAW4rjrgMaXF/fjBDZdRVlKIaSan/kkpyckKMWV8GZt3VFJb3/yRiEk7KmrIyw4xcdQQMkL+w/Jeo2mapnWl16ho2iHkGjauiiOlwJAGpjSR0sTyhzCDmUjDwm/YCCSuEggBQrmIRAxiEYhFEdEIc7OGp4bu0ZHOeUX+RHAFUkoMITGliSlMTGlhBkKYdhAhTfyGFyEEwjBACoTroGJRiEdR0SiiPcxV/aalhu/WtXmTcZ0EUkikMDClgSVNTMODFcjC8PgRhhdTegCQ0gBBsmMUjyISUVQkSiAW4SvFM1PDdysdOU/2DwDHRUgDQxpImXxdLW8AI5iNNL34ZHJkCkAIiRQKkYhDvB1iyde2TPqZlTc6NXy3jnT7+TimjC9jZOlAdlRU8/eX30ktBmD+WdOZfsJIhBC8u2ZLtx2H7syeNoZZU8eyp6qWHXuqU4sBmD/vZPKyQ2zaXsF3fv5H5l9/J9fd/iDvrN5CRtDPZWfPQAqR+jAAFr20lL21jZw4rozxIwenFmuapml97JjuqMw/62T+/KvvMHvaGK68YBaP330zixbcxtP3/yf/9fX5hIIfLgjOzQrywB1f44E7vkZuVvCAOIsW3Mb8s07u/F5pcT8e/cVN/Pw/ryQU9HPjl8/hyXu/zaIFt/HI/72Bs2ae0CUGHdMUbvzyOZ0/x8L7b2HBHV9j5tQxqVWh4wP7l9//Cgvvv4VFC27j8btv5soLZmEah3eBr9Z787JH4iqFVAIhTYS0MKSFYXow/BnI/oMguwBh2AhpIIRESTP5p+UmIB6HWAwVSWDH44zIGJCa4gDpyDnG1w+USo4eSAMhTQzpQRoWRigXUViCCOaA4SF55W6AMAGQiRgkEhCN4cYc+hve1PDdyjI8yQt4YSCEmXyOwoNh+TBz8xEFAxHeYPJuPwZII/kclYuIR1HxGERjqGiMYk9mavhupSOnZUhwFajk78qSFoZhYXgDmAUDEHmFHb9LC4UB+3+XyoFYDJwYRGKoSDsjA4Wp4Q+QjvbzccybeQKGIXhx8ftEovHUYgDeX7eVDVt284N7n+Lhp/9N3Dn0+TMFuZlcNG860ViMh57+N/FEIrUKudkhhhT3o6klzEN//jc7KpKdmeq6Jn771Evs2VvH4KJ8Bg3IT30oAHWNrSxbuQmf18O8GRNTizVN07Q+dkx3VAA8lslVF83h82dOI+BLXiCZhsGU8WX8x8VzUqt/bD6vh5/c/AVmTRuL7bUAyMoIcOUFs5g6flhnvVDQz+3fvJRZ08Z2/hzSkPTPz+bSs085oHN0/ulT+PZ/XMCgAXlII/lrCPi8XDj3JP77hkvxepIXgVp62cJEdPxTmCBk8oJP2hhxB6IuwhtCeWyUENBxYYi0wLQRhjd5wesqiLvY4tAX8enIaXa8FUhk8rHCxDRsTMOHkXBAGeDPQBjJvwGkBSKZU3kCCGGBEoiEwkh0fzc6lRQAAikErjRQ0kSaHkxloqIOmDb4M1HSRAg68yE9KI8/mdMRkFDIRO/eytKRUyBAKRASV5ogTaRhYyQURBPgDYIvE4SRHMGR3mTHwfCC5QNlIlwg5iI59GubjvbTW8WFeQwakEdTc5gNPaxLAXh3zRZ+8Kun2LyjMrWoW1IIrp5/OoV5Wfzzjfd7XPPit714PCaJhEMk1rWT1NIaZm9NI16vh+IBeV3KPmrZqs20hiOUDCw44H1d0zRN61u9+6Q9ymUE/VRWN/DDX/2Zy268m7+/8i6u6zJ0UCFZGZ/ug2TQgHwKC7J5c/kGrv3uAq6+7dd8UL4Hn+1hwqgPh/7HDRtEv7xsdlXWcN3tDzL/+jv54rfv5cGnXqKquuui25KifM4/Yyquq3jmpaV88dv3cskNd/H/freIfbVNjCwdwCmTR3V5jJYea9srkVKCAIRCCQslLSzLBmWimlpR7XGEsEF6ENILpg9h+hCWHww/QlkIVyJcybbwh7st9SQdOavjrUiZnAKEkCjTQlkmluVDxRSqsQViLhg+kF6E4UVaXrD8yZymrzPnnvbW1PDdijgJpJQoAQgDJS2k5cO0fBCOoRpbwQEML8rwgmUjDRth+hGmH6SNUCbCNdje3rtduNKR01UC2dHxcaXENTyYlg/TsFHNYVRzOyizs0OE2ZHT6MgpvAjXRLoG5W0HX59BmtpPbxX3z8Nv29TUN7O3pnebEfTGRfNOZsrYoSxduZH/+dfbqcWdGptaaWmNkJsd4ssXnkZBbnJUbHBRATdddW6vpnPtrqqhpr6ZzJCfAQU5qcWapmlaHzouOirbdu/jpwv+yrotu0g4Dq8vW0tTa7hjfnZq7Y8nHIny4JMv8atHn6ehuZWW1jDvrStHKYW/Y+QEoLk1TDyRICcrxInjypBCEInGeXnJan72m4XUNX548TZuRAmZQT9vvreBPz//JpFoHFcplq8p528vL0NKwaiyQZ31tfTZ1l5PHBdpWoDAlQJHehCmD2n6kNJGKhNpBTA+r2C0iWEGEWYAYQSQhg+BF6F8LG6poCUeTk1xgHTkfKJuTccibnAFuEgcLKQVQBo2EgupvCgjgPkFEP29SCOINPzJnMJGYCPw8XLTltTw3XqnpQLDMkEJFKCkgRIWwvInn6cykcKHW+TFuEhhBAMIq+PLCCCxk8+TAM/VrUwN36105KyOtSGt/dM5Ja6wkqMlph9pdOQ0faipBmKOxDD9CDOIsIJII4AUXgReGl14uXZ1SvQDpaP99FZBXiYey6CmoSm16BMbVTaQs2efQFVtI08+txhX9bzjfks4wqtvr0a5imkThvHbH3+DRQtu457vXcPMqWN6NZIdjSVoaWvHNAyyMj/djTBN0zTt4D7lZfzRYdmqTVTXffjBF26P9Dj3+eNqagmzZtOH5xwAPPvyO1x8w11dzuxYt2UX/3jjPWyvxVcuOYM/3fMtfnTzF5gyPtlp+aiSon5IKTnzlAksWnBbl69vfGEehjQozMvq8hgtfT5or0OaHlzAVQpHQQIrecfb8iGsIFEjQLTdhzF9H3JEFCmDSBFEiBBCZgIBHq17NzV0j450zn2xJlqVgzQtVOc/g4QwkqMJHSMnYZmBY4KcW4nIl8nOCn6EDCJEkMaE4q+13S+QTvVY/Ypk54jkLCPXVckOkvR25Awkc8YDkBuFM6uQtg8pA0gCCCOZc0lrBetbe3eQYjpyPl6/CsPjRSFQKvnKJjBQprfjdQ2AFSDcHkCU1iNObUQaIaT0IUQQITJABXmi4cDdsXpypNtPbxmGRPSwUP2TsL0WV14wC49l8cSzb3T5HOjJC6+9x0NP/5t9tU2dnZq29iiL313Ptt37UAqchJv6sC6aWtpSv6VpmqYdBsdFR+Vo8dd/LOGGOx7in2+soLWtndFlxfzX1+dz7/f/o3OKAYBp9N0HtXb4/WLfYgyvF9cFR0lcBAkFcSUQHdOgBF4qXhlCvKof7sQtiNIWED4QfhA2r7ft5P3W7amhe5SOnE83b0DaNo4rcFyJAyRcgYPRkdNGSZtdfx+OG7Vh9ibIUiACQACEj4cb36XVaU8N3aPNiVakZeMCCSRxJUm4CoSVfI6GTbQxh6oXR0CgHU4vB8uTzKkCIPw82LAsNexBHemca8KVhA0TF4GjBAklcZQg7giE9CRzSpumjQNofn8Y7oAKxMl7kq8pfsBHtUrwl/redxrS0X7SYUBBDkX98/DZHm77+kVdbvqMGFKExzK5+erzWLTgNm66+tzOx728ZDX/54cPcskNdzH/+jv58n/+ij8seg3LNAhHIuzeW9slTyqft+/W7Wiapmk9+8x1VII+L6HAh7uBZWcEOXFcWZc6n0ZNfTOPLHyFr//gt/yf2x9ky45KigvzuOCMqZ119uytA+DZV95l/vV3dvv137988iNRtXR73alFWB4SShF3JDEkcWWQwAvSj+0NkhcI4L41DllTjDtpHUvG5rAg8zQeyZnBYxx6bUGqI51zcVM5tbaNKwRxF+KOJKokcWWipA+kn6A3SI7IRLw2GWI2avZqFpaM4YHM03g0ezLPtvZu2td+P6t6BZGVg+NCwkleSMeUQUyZIP0g/WTaAYLN+ci3TgR/G5EzNvNw3nQWZM/moYyBrG37eBfT6ch5b8MSvKFc4i44DsSQxJQkrjwg/QjDT7bPj7mlGGPDeJzCXVTMbGBB1mn8NmcWD1kGrc7Hm4J1pNtPb1TXNRGLJ8jP7t2OaUfS2bNPoKggh+27q9ld1XNHxesxyc0OEYsn2FvTmFqsaZqm9aHPTEclFksQjzsE/DZnzpiAaRiMHTaIH9xwKcMHf/rtN88/fQo//88rOXnSiM7dwVra2vlgawWu63ZZz7JpawWt4QjzZkzkivNP1TvHHAMe27uEqqxMXOEhrhRxB6II4hgoYYMMkO3PwucJwtIpVDRNYPrwhQwuWsvesGJ4/+8wsOCU1LAHlY6ct+x4BiO/hIRyiQExpYgiiboGSD+mmcxpJLKofXMuYSeTC0/4PbZ/LxXtHj434Y8E7J53TOrOz/a9ijd/IDHlEnMVUQVRkh0kZACfN0SWPxPq+7NqxaV4fA1cPO0PRBJt1MSKOG/KY6khD+lI5yxvrea5+C6sYA4xpYg5ihiCKBIHL8gAGb5MQr5MKC9j3fbzKcx9nzkTn6Mh7IBnNlNGfDM17EGlo/0cyo491bS1R8jPyaB/fnZq8ce2bfc+rr7lvgNu9My//k42ba8gFk/wq0efZ/71d3aZqrtfyG8zbcIwfnLzFVx81nRawu38z797XowPUJifQ05mkJa2duobe3e+i6ZpmvbJHNMn048uK2bciBLWbt7ZZTtKv+3htJPGAfDGsrW0R2LE4glKivIpKylk2OABXPK56Zx20jgyQ37qm9rwegzWb9ndGWf/aeexeKIzxsGMHVHCadPGMf2EkcyfdzKXnTOD+fNOZkRpEdFYgudeeZddHXfpquubGNgvl6GDCxlTNojzTp/KZefM6Py6cO5JVNc1HfIEZi3pcJ9Mv99rDeuYU3IKvgQIJTrO2rAQ0oNp+hHCA9IL0sPvKs9gUP9qJg94hb2xfPY2ZFOYPYO2xC6a23q3toE05Xy2fgXzS+fhtrViCC9CmMkpStKDaQZAeEB6aHVC/KlqNhNK1jB24Jt8UDualrCX0gHnsbvuNeKJ3o0A1Mdb2eW0Mav/JBLtYQzp6cwppRfD8HXmXB0dwrLG8Zw46A1KClezpmI8rhOgdOCZlFc+lxq6R+nIuaFtD3lZhZR5C3ETcaS0ktsdSw+m4UNKb0dOL881TabZyOXEwpcIZNWzsWo4IU8pwVA+VR9jClg62s/BtLa1M2l0KSVF+dQ3trBpW0VqFQBOnTKaO2/9MlecN5PzTp9KKODDMCQnTRzR+T7puG6P2xADnD59PNkZwQNOpv9o7M/PPYlTJo8iPzeTtvYoD//1Fd5fv61LnFSzpo1hyvgy3lm9hTeXb0gt1jRN0/rQZ2ZEBeDxv73OslWbOw8Ca2uP8uzL7/DUc2/gOD3vFNMb/35rNc+/tpyG5tbOBZqxeIINW3bzo/v/wlsrPuhS/zdPvsjDT7/MvtpGXOfgCze1o8eNGx+mPAgJj4+o4xBTiohSRFxQRnJ6FDKARPL4W5ezobGMS0b/heGD1hNzYpww7ObUkIeUjpxXbriflvw8YkBUOURdl0jHyANGcnqUbXgIR/089OZXaIlZXDVlAcFgA7F4gmljvpsa8qCWN23irn3/JpFbSDQRJ+q6RJUi4irimMmcIoDXNdhT058nVl5Drt3Il2b+gThxcDMYVXppatiDSkfOh3b9i+ecrahQNtFEgqjrEFMuEaVwhAeM5BoY0zVYtnESL+88l0l5KznrxJeIEad/1mxs++ONRKSj/fTEVYpX315DwnGZMXlU5+hzuiQch+q6Jv7+yrvc/JNHWJLyPp0qNyvImTMmEo7EeGu57qRomqYdbmLIgMxPd4WuaWlWWtyP22+8nJXrt3Y7veNwOKtgGl/NnokVjmGbQWwriMcM4LWCRAI2d9btxfCNwMHhwqmPsWzLRrbU30ZDeBUrttybGq5X0pHz5tKLmE0JZkJgmwG8VgivFcBjBqnwRfhdUyamJ4jP18wlUx7i3pc92PbVbK76Izv2vpwarld+Pfp6ihrB9vixjeTz85hBPJ4Qb4ldvJoYhxKK4n47mTP8MX78whzyMseydPNttIZ7d0BgqiOdc3jmQO4ouhx/UwTb6vq7tHyZ/Lb1A6qtKTgkmDZqCUHxPM+sugHDEry2+rrUcL2SjvbTHSkE37/+EsaPKOFv/36Hp55fnFrlqPW1y+dy5oyJ/O+763ng8X+kFmuapml97Jie+qVpHMGpXx9V3lZBrRlnetEUlOOghAdh2FQEFbeW/5I3dj1OyC7D5ytgbeUYdrRls3jNt6iqP/j894NJR85lDR+QlzOQEVmlyZFCmTxz5H1vNTeu+ykrKx+nJPc8Yspm+e7J7GhcxXub7qSx9eDTZw7mxZrlzCibRY4ZxMUAwwO+TJ6NL+e7q35OZfPbDMqbR204wPuVp/Bu+e1sqvgzsXhLaqheO9I566LNLG0rZ+6w07FclTxB3rQJB2zuqXmaxzf/jvZEM/mZk9heW8iW5pN4ZdW1bN/3yS+O09F+uqOAquoGpowfxuiyYuobm9lRcfRPc509bQwXzZtOdV0jDzz+j0NOB9Y0TdM+Pd1R0Y556eioAGxvq+Tt8GZOLTuVnLxc1lLNVW9/h70dJ3lXNP4vWb4x+P2FtLRvp7JuaWqIjy0dOd9t2ECDEefEoVPx52bx1/q3uH3VPYQ7DgIsr1nE4NzzsbxB9tS9SksfrGd4ce9S+uUVM2LQSMgM8qNtj/Cn8oUARBONVDUvZ1DePEzTZkvlQhz30180HumcrfE2Fla8xrShpzCgsIgGv+Abq37Msr3vAdAY3kw8HiMvayJKRSmv+ltqiI8tHe2nO/WNLTS3tjF5bBljhw9i845KauuP3oXpk8eW8fXL55JwHO577AV2Vfa8K5imaZrWd/TUL+2Yl46pX5qmfXozp47hnNmTue/RF6isrk8tPmqMKhvIVy+dy6P/8xprNnY9AFjTNE07fHRHRdM0TdM0TdO0o85natcvTdM0TdM0TdOODbqjommapmmapmnaUUd3VDRN0zRN0zRNO+rojoqmaZqmaZqmaUcd3VHRNE3TNE3TNO2oozsqmqZpmqZpmqYddfSBj5p2EBfNWEhJ/9lEEy00t+1KLT4sjnROvyefi2YuIi9zJK2RvbRHD/9hdqNKLuW0CT/H78ulrmkzjhtNrdLn0pFzzqQ7GVd6FYbppaFlC65yUqtomqZpmtYD3VHRjnmlxf345Q+upaQov89Pph836Ev4rUEMyD2VUcWXghGjtnFDarU+daRzxp0wEwdfR8A7kMEFcxlePJ+qpneIRhtTq/YZywhR1u8CsvwjGFY0n8EDzmTLnmdTq/WpdOQsyp5JfsZE8kITGV50KbnZZeza90ZqNU3TNE3TuqGnfmnaQWytWEzCjZFwo2A67KlZmlqlz6UjZ3PL7o6cMZTRRlPz9tQqfaqqfhlxJ9qZs6F9bWqVPpeOnGt3PdaZzyXOntrFqVU0TdM0TeuB7qho2kFsqPwTCTeKUgmun/wAJw+JpVbpc+nIuW3vqyTcGF6jlW9N+QVDC/ypVfpcXcN2Em6McYVruXHaSwRsI7VKnzvSOZvathKNRnHcOPNH/41rpu1OrXLUKMjN5P/d8iXOnXNiatFRZVTZQO753jVMHluWWqRpmqYdZ8SQAZkq9ZvHo9ysID+6+QoAfvirp6hrbE2toh2jSov7cfuNl7Ny/Vbue/SF1OJPbebIX7Nuz13cP6QEu15CRGBFozQS56n4Hv4V3ddZd5Y3nxv9QxmYNQDpDxBRkicb1vNg1XtdYh7Kkc5pSpsZI35JuOYObs0fAQ0SGVPIWDt7aOfX0R1sird01v96sJQLPQPJySlE2D5q3Rh37Xuf1+s2dol7MIPyziIvMIETrL9xtuqPahPIiIvrRFnvtnJvpJxGJ9lJ8xkW3/cP59RAEb7MPITlZWOknjuq3mRrW31q6B6lI+fkwd+lumUFtwxooqjRg2o3MWMxom6UVxK1/D6yo7PuYDPIfweGMz6jCBHMAtPilebd/LTyTdrikS5x+1JBbia3fPVCBg3IY9G/3uav/1iSWuWoccrkUXzt8rk4jsMvHn6WD8r3pFbRNE3TjhPHxRqVSz93Crd87UKEEGzc2v2Hlt/2cNpJ4wB4Y9la2iOH/y61dmRkZwaZNW0se2sa+nyNCkC05W1+4h+HWx3DNv34gkE8rktWIs5pRgY5ppe3441811/GTfYgQpYH6fMjLAtLSCZnDmJszhBerOn9OpMjndNVCQZHN/AlVUaiIYbfDuGzfXidBP1dONvMoUa41KoYvwmO5nNmLj7bh7C9CCkJGCbz8keS8HhZ2di7DQCawuVcJGNMbAohoxK/LwPb68EXi1CqLOZZ2ax2wuRJD4/4xzDBCGLafqTtRQhFvjfEuf0nsi5SR2V7Q2r4bqUjZ1XjW/wwNAj/vgSWsAkEM/AIQTAeY5L0cZInmyVOM2dYedztH0GR8CB8AYTHg0BRFsjhzH7jeaV+K2Gn7zcAkELwf648mzFDB7Lo38t67KSYhsGc6eP5z2sv5JqL51BYkN3t35tpGFxw5jRu/PK5XH3xHC4/Zwbnz5nKyKFFbNxWQbi963MwDYPLz5vBTVefx5cuPI3Lz5nB/LNO5pQTRlJd18Temq6v8+6qWhqbW5k6YQRjhg1ixbqttKXE1DRN044Px0VH5YwZExg+eADrtuzq8e6a7qgcvw53R+UnhadhhWNYKDxOAiPSjsdJYCGwhMs4vFxp5TFO+pBSIqQFrgPxBEIqhMdDSSiPAYFC3qjt3YhDOnLenn8K8dZWbGlgxWMYsXYs18GDwBaKOSLAxWYuRdILQiKEAa6DcBMgJNL2MjWnlF3xCOWtVanhDzDSX8jFgaGoaAQbhRGNYcYiWIAFZAm4SGZwvpVNSJgow0QICYkEQjlgGHj9NqcXTOCftR/Qmjj0iEM6cn61YBqDHS+m6+B1FEYkjBmPYgnwoChCcomZzelGJpYUCNNCKQVOHIFCmBaZgRDTC8aysGJ5avhP7Zw5J3L2zBPYuK2C3z/9bxKO26XcNAzmnzWdb11zHqeeOJqg30YIwc7Kmm7/3k45cRRXz59DZsiPEAIAyzIYUJDDpDGlvLt6c+f7rxSC//rGfOacNA6f7e2sL6UkMxRgyvhh7NlbR8W+riNYOypqyMsOMXHUEDJC/m5/Dk3TNO3Yp9eoaNoh5Bo2roojpcCQBqY0kdLE8ocwg5lIw8Jv2AgkrhIIAUK5iEQMYhGIRRHRCHOzhqeG7tGRznlF/kRwBVJKDCExpYkpTExpYQZCmHYQIU38RvJiUhgGSIFwHVQsCvEoKhpFtIe5qt+01PDdujZvMq6TQAqJFAamNLCkiWl4sAJZGB4/wvBiSg8AUhogSHaM4lFEIoqKRAnEInyleGZq+G6lI+fJ/gHguAhpYEgDKZOvq+UNYASzkaYXn0yOTAEIIZFCIRJxiLdDLPnalkk/s/JGp4b/VEJBP2dMn0AkHmfhS0uJROOpVZg8tpTPnzmNzJCf7XuqWbd5Z2qVLpyEy7bde7nr93/jshvv5rIb7+a+x16gpTVMfk4mo4cN6qw7tKSQ4UMG0NrWzn2PvcBlN97N/Ovv5Ds//yNbdlTisz1MGDW4S/z9Fr20lL21jZw4rozxI7uvo2maph3bjtmOyvyzTmbRgttYtOA2Zk4ZA8AV583s/N6iBbfx6C9uorS4X+pDyc4Mcfs3L2Ph/bfwzAO38uBPruOkSSNSq2EaBlecfyqP/N8beOaBW1n4wK385kdfZ8r47hdxhoJ+rrviLB6/+2YWLbiNhfffwl23XsXwwQNSq2rHiHnZI3GVQiqBkCZCWhjSwjA9GP4MZP9BkF2AMGyENBBCoqSZ/NNyExCPQyyGiiSw43FGZBy6LaQj5xhfP1AqOXogDYQ0MaQHaVgYoVxEYQkimAOGh+SVuwHCBEAmYpBIQDSGG3Pob3hTw3cry/AkL+CFgRBm8jkKD4blw8zNRxQMRHiDydEiDJBG8jkqFxGPouIxiMZQ0RjFnszU8N1KR07LkOAqUMnflSUtDMPC8AYwCwYg8go7fpcWCgP2/y6VA7EYODGIxFCRdkYGClPDfyqzpo6mqF8Oaz7YwZqNH66V+agNWyso31nJH555lVv/36PUNx18fd/SlRv5/j1P8s6qzSQch4TjsPjd9WzZWYVSyY7MfrbHREpBXVMr765O1gfYUVHNpm2VAERiic76H1XX2MqylZvweT3MmzExtVjTNE07DhyzHZVPKjPk5wc3XMqEkYORhkQIQX5OBtdeegYlRfmd9bwek1u/9nkumnsyWRkBhBBIIeiXl8Wt117IxWdN7xI3NyvI7ddfwhmnTCDgS16oSUMytKQ/P7zxcmZMHtWlvnZssIWJ6PinMEHIZIdB2hhxB6IuwhtCeWyUENDRsUBaYNoIw5u84HUVxF1sceiL+HTkNDveCiQy+VhhYho2puHDSDigDPBnIAwr+QBpgUjmVJ4AQligBCKhMBLJ6TuHIgVA8u/KlQZKmkjTg6lMVNQB0wZ/JkqaCEFnPqQH5fEnczoCEgqZ6N1bWTpyCgQoBULiShOkiTRsjISCaAK8QfBlgjCSIzjSm+x4Gl6wfKBMhAvEXCS9e21764QxQ1EoVvXQSQFoaQ3zw/v+wj/fWIGrPv7eK7bX4sK5JzG6bBBbd1bx/oatnWWbd1Syddc+BhcV8Kv/vpYzTplAfk4GN1x5NnNPnUjFvnr+tfj9LvE+atmqzbSGI5QMLCA3K5harGmaph3jevdJexRa9NLbzL/+TuZffyeLl68H4KnnF3d+b/71d3L1LfexbfeHuyMB+G0vfq+HF/93BV/89r18++d/YF9tI1mhAJNGl3bWO3PGRCaNKqW6rpn/97tFXHLDXXzx2/fyzEtLiSUcTp8+noLcD++ozj9rOkOK+7F1516+d88TzL/+Tq797gJeXboGj2lw3ulT8HqSd6C1Y8fa9kqklCAAoVDCQkkLy7JBmaimVlR7HCFskB6E9ILpQ5g+hOUHw49QFsKVCFeyLdy1PXYnHTmr461ImZxChpAo00JZJpblQ8UUqrEFYi4YPpBehOFFWl6w/Mmcpq8z5572g99x3y/iJJBSogQgDJS0kJYP0/JBOIZqbAUHMLwowwuWjTRshOlHmH6QNkKZCNdge3vvduFKR05XCWRHx8eVEtfwYFo+TMNGNYdRze2gzM4OEWZHTqMjp/AiXBPpGpS31aSG/8SyMoLkZWcQDkfZsj05etFXcrOCPHDH11i04DaevPfbXHH+TNZu2sldDz/bZXpZNJbgnkf+zvvrt5KbHeK6K87iwZ9cx6yTxrJx6x5+8sDTVNc1dYn9UburaqipbyYz5GdAQU5qsaZpmnaMO2Y7Kp9UwnFY+K+lPPzXV4hE4+ysqGHlhm0IITCMD1+OE8YMJZZweOx/XmX5mnJcpYhE4/z5+TdZu2knmaEAZYOS0zBCfptRQ4tpagnzmydfZNO2CgAamlt5ZOHL7KisoV9uJoX5+oP0WLOtvZ44LtK0AIErBY70IEwf0vQhpY1UJtIKYHxewWgTwwwizADCCCANHwIvQvlY3FJBSzycmuIA6cj5RN2ajkXc4ApwkThYSCuANGwkFlJ5UUYA8wsg+nuRRhBp+JM5hY3ARuDj5aYtqeG79U5LBYZlghIoQEkDJSyE5U8+T2UihQ+3yItxkcIIBhBWx5cRQGInnycBnqtbmRq+W+nIWR1rQ1r7z2uRuMJKjpaYfqTRkdP0oaYaiDkSw/QjzCDCCiKNAFJ4EXhpdOHl2tUp0T+5rJCfjIBNa3uUlrZDt5FPQwrBieOG8l9fv5DsjK4jH+3tUXZW1BCPJ6d97a/fLy+b/I/cDOpONJagpa0d0zDIytQjKpqmacebz1xHpaa+mVeXdP2wT51zvf9Oo+21uPVrF3VZ97JowW1MGV+GxzIoyEt+iOZmZ5Cd4ScrI8A937umS92nfvkdSov74fF49B2/Y9QH7XVI04MLuErhKEhgJe94Wz6EFSRqBIi2+zCm70OOiCJlECmCCBFCyEwgwKN176aG7tGRzrkv1kSrcpCmher8Z5AQRnI0oWPkJCwzcEyQcysR+TLZWcGPkEGECNKYUPy19p3U8N16rH5FsnNEcpaa66pkB0l6O3IGkjnjAciNwplVSNuHlAEkAYSRzLmktYL1rb07SDEdOR+vX4Xh8aIQKJV8ZRMYKNPb8boGwAoQbg8gSusRpzYijRBS+hAiiBAZoII80bAuNfSnIqWAjgX8fa2usZUb7niI+dffyRe/fS+//OPz1Da0MLJ0INdeekZnPSkE11/5OT5/5jSisRh/XPQqdz/8LDX1zfTLy+Q/v3IBo8oGdomdqqmlLfVbmqZp2nHi8HxKHeMM2fEh3kuH8wNfS79f7FuM4fXiuuAoiYsgoSCuBKJjGpTAS8UrQ4hX9cOduAVR2gLCB8IPwub1tp2837o9NXSP0pHz6eYNSNvGcQWOK3GAhCtwMDpy2ihps+vvw3GjNszeBFkKRAAIgPDxcOO7tDrtqaF7tDnRirRsXCCBJK4kCVeBsJLP0bCJNuZQ9eIICLTD6eVgeZI5VQCEnwcblqWGPagjnXNNuJKwYeIicJQgoSSOEsQdgZCeZE5p07RxAM3vD8MdUIE4eU/yNcUP+KhWCf5S37tO59EmEo3z1nsbWPCnfxCORLusJ5l90lhOPmEErW3t/OLhZ3nhtfd4e+UmbrnzMTZtqyAzFOCSz52SGrILn/fQa7A0TdO0Y5O+uu5GXWMrza1hwpEod9z35y7rXvZ/XXzDXTz7cvLOcVNLG61t7dTWN3N9x13E1K8rvnUPS1f27jwL7ejzulOLsDwklCLuSGJI4soggRekH9sbJC8QwH1rHLKmGHfSOpaMzWFB5mk8kjODx/j4awuOdM7FTeXU2jauEMRdiDuSqJLElYmSPpB+gt4gOSIT8dpkiNmo2atZWDKGBzJP49HsyTzb2rtpX/v9rOoVRFYOjgsJJ9kRiymDmDJB+kH6ybQDBJvzkW+dCP42Imds5uG86SzIns1DGQNZ29b7zhhpynlvwxK8oVziLjgOxJDElCSuPCD9CMNPts+PuaUYY8N4nMJdVMxsYEHWafw2ZxYPWQatTt9Oz9r/vhX0eQkF/KnFfS4SSyRHsFzF/qNasjODWKbJtj3VbNjy4QhVS2uYpSs34roumSE/Pl9yu+hUXo9JbnaIWDzB3prG1GJN0zTtGHdcdFT2n3R8+snjGfuRPfo/jQ1bduPzevjGFWdx8qQR2N6O3Y66UdfYys491eRmh7j5mvMYN6IE09g/J107Hjy2dwlVWZm4wkNcKeIORBHEMVDCBhkg25+FzxOEpVOoaJrA9OELGVy0lr1hxfD+32FgwcHvDKdKR85bdjyDkV9CQrnEgJhSRJFEXQOkH9NM5jQSWdS+OZewk8mFJ/we27+XinYPn5vwRwJ2XmrYg/rZvlfx5g8kplxiriKqIEqyg4QM4POGyPJnQn1/Vq24FI+vgYun/YFIoo2aWBHnTXksNeQhHemc5a3VPBffhRXMIaYUMUcRQxBF4uAFGSDDl0nIlwnlZazbfj6Fue8zZ+JzNIQd8Mxmyohvpob9VOoaW6mua8Lv9zJsyKG3sP6kbK/F5DFD+foX5uH3eVm3eSeNzcnpto7jopRi0IA8Tpk8qvN9c3BRAVPHD0dKSVNLmPb27g/oLczPISczSEtbO/WNzanFmqZp2jHuuDiZ3jQMJo8dSlZGgNNOGsdl58zgsnNmcPZpJ7Jm4w4amtsOejL96LJixo0oYe3mnZ0n21fsq2PSqFKK+ucy/YSRzJ93cmfcy86ZwcypY3hn1abOODX1zZwwZigD++cye9pYLvnc9C71J44ewqtL13Tm1PrO4T6Zfr/XGtYxp+QUfAkQSnSctWEhpAfT9COEB6QXpIffVZ7BoP7VTB7wCntj+extyKYwewZtiV00t/VubQNpyvls/Qrml87DbWvFEF6EMJNTlKQH0wyA8ID00OqE+FPVbCaUrGHswDf5oHY0LWEvpQPOY3fda8QTvRsBqI+3sstpY1b/SSTawxjS05lTSi+G4evMuTo6hGWN4zlx0BuUFK5mTcV4XCdA6cAzKa98LjV0j9KRc0PbHvKyCinzFuIm4khpJbc7lh5Mw4eU3o6cXp5rmkyzkcuJhS8RyKpnY9VwQp5SgqF8qvpwClhWRoAJIwdjez0sfnc93W0+nJsV5Bf/dTVfueQMLjtnBiVFBQCUFBV0+/5209XncutXL+wsmz/vZE6dMpqskJ/1W3az4Il/kugYUqlvamXSmKEU5GZy8qQRne+b806dREFuJk0tbfz+ry9TW999J2TWtDFMGV/GO6u38ObyDanFmqZp2jHuuBhReXfNFh77n9fYV9uIu39OwadU19jKD+77M68sWU1LWzvqEOcHbNlRyffv+RMr1pX3ePdPO/bduPFhyoOQ8PiIOg4xpYgoRcQFZSSnRyEDSCSPv3U5GxrLuGT0Xxg+aD0xJ8YJw25ODXlI6ch55Yb7acnPIwZElUPUdYl0jDxgJKdH2YaHcNTPQ29+hZaYxVVTFhAMNhCLJ5g25rupIQ9qedMm7tr3bxK5hUQTcaKuS1QpIq4ijpnMKQJ4XYM9Nf15YuU15NqNfGnmH4gTBzeDUaWXpoY9qHTkfGjXv3jO2YoKZRNNJP4/e/cdHkd1PXz8O2X7rnqxVSxbcpHl3rsB0xw6OAYCKRAgCYEAgQApbwqkUkIggTQggSRAwBj4EUIJ3bgbcG+SbMtqttW7ts68f6wkrLFsS0b2ynA+efw8Ye/Ze7Tau6s5M/fOJWBECJoGftMkothBi66B0Q2N1Tsm8ebe85iUsp6FU18nSIhBCafidCZauz1myz/cxoHaRvJyBjF2VI61uV+EIxHK9tXwt+ff5hcPP9ft9sRVtY389MFneH/Nlm7fs+3tQT7euptfPLKk6+SRVXKClzPnTqTNH2T5OilShBDis0gZlhF/5CNwIQa43Ox0fnLT5azfuouHnnjF2nxcLEybwXWJ87G1BXHqXpw2L3bdg8Pmxe9xck/tfjTXKCJEuHj6k6wu2kFR3Z3Ut23go6IHrN31Sixy3pJ7CaeSgx5WcOoeHDYfDpsHu+6lwuXnL43x6HYvLlcTi6f9lQfetON0XkXhvr9Tsv9Na3e98oeCG8hsAKfdjVOLvj677sVu97FcKeXt8DhMxSQ7fS8LRj7J3a8sICV+LCsL76Sl7dj2AznROUfGZ/GzzMtxN/px2rq/lzZXPH9q2U6VbRoRwswYvQKv8h+e33Ajmk3hnY3XW7v7VM5bMJWvXXQahXsr+bmlkBjIvnH5WZw5dyLvr93Kw//4r7VZCCHEZ8BnYuqX+Hw7UVO/DlbcWkGNHmJ25jTMSARTsaNoTiq8JncU/473Sv+BzzkclyuNzZVjKGlNZNmm77KvbpW1q16LRc7V9dtJScpiVEJudFdyNbrnyMeOKm7a8gvWV/6DnOTzCZpO1pVNoaRhAx/uvIeGlt3Wrnrttep1zB1+Ckm6FwMNNDu44nkptI4fbPgVlU2rGJJyNjVtHj6unMPa4p+ws+IZgqFma1e9dqJz1gaaWNlazFkjTsdmmJjooDtp8zj5bfWz/KPwL7SHm0iNn8SemsEUNc3krQ3XsudA/x+Q762oYlReNgV5WaQmxbNuU1GPU8AGklNnjOGSs2dTVdvAw//4b7epvEIIIT47pFARJ71YFCoAe1orWdVWyLzh80hKSWYzVXxt1W3s79gJvqLhfRJcY3C7B9PcvofK2pXWLvosFjnX1m+jXgsxNW867uQEnqtbzk82/Ja2jo0ki6uXMjT5AmwOL+W1b9Pch/Uwh/Pa/pWkp2Qzakg+xHu5a/fj/LN4CQCBcAP7mtYxJOVsdN1JUeUSIsanP1A90TlbQq0sqXiHGXlzyBicSb1b4Vsb7mb1/g8BaGgrJBQKkpIwEdMMULzvRWsX/SISMdhWXMakMXmMGZ6NoilsLSy1hg0YU8YO55uXn0U4EuGhJ1+htLLGGiKEEOIzQqZ+iZNeLKZ+CfFZk5Ycz61fv4A3V2wc0Df+GD08i+suPYsnXniHTTtKrM1CCCE+Q6RQEUIIIYQQQgw4n4m7fgkhhBBCCCE+W6RQEUIIIYQQQgw4UqgIIYQQQgghBhwpVIQQQgghhBADjhQqQgghhBBCiAFH9lER4ggumbuEnEGnEgg309R6YvaWONE53fZULpm/lJT4fFr8+2kPHP99KUbnXMppE36F25VMbWMhESNgDel3scgphBBCiGMntycWJ73juY/KpXNfRlPjCZshDMPPtoon2F7yvDWsX8Ui55WnLidihIgYIUJmG+9u/i6NTXusYf1mcNJMFoy7j7ARImKGaAvv59XVX7OG9atY5BRCCCHEsZOpX0Icwa6KZYSNIGEjAHqE8upPv9P70cQiZ1NzWUfOIKbWelyLFIB9dasJRQJdOevbN1tD+l0scgohhBDi2EmhIsQRbKv8J2EjgGmGuWHKw8waFrSG9LtY5Ny9/23CRhCH1sJ3p91HXprbGtLvauv3EDaCjBu8mZtmvI7HqVlD+l0sch6LtOR4fnP7VzhvwVRr04BysvycQgghTk4n9dSv5AQvd91yBYNTE7se21ddz08ffJrahpZusf2lc5pRS2v7cc0jeu94Tv0CmJ//B7aU38vvh+XgrFPBr2ALBGggxNOhct4IHOiKPcWRyk3uPLISMlDdHvymylP1W/nzvg+79Xk0JzqnrjqZO+p3tFX/jDtSR0G9iho0UYPtlNPOHwIl7Aw1d8V/05vLxfYskpIGozhd1BhB7j3wMe/W7ujW75EMSVlIimcCk20vco45CLNVQfUbGJEAW40WHvAX0xCJFmkuzcaP3COZ58nEFZ+CYnOww1/Hz/Z9wK7WOmvXhxWLnH2VlhzP7dddzJCMFJa+sYrn/rvCGjJgjBiawfeuuRCvx8Wjz77Be2u2WkOEEEKIY3ZSL6Z3O+2cNnMcPo+r67GWNj/vrd5Mu//4nIVOjPdyyoyxBEPh45pH9F7ne7K/up41GwqtzZ9aoHkVP3ePw6gK4tTduLxe7IZBQjjEaVocSbqDVaEGfuAezs3OIfhsdlSXG8Vmw6aoTIkfwtikYbxWvc3a9WGd6JyGGWZoYBtfMYcTrg/idvpwOV04ImEGGXCOnkS1YlBjBvmjt4Av6Mm4nC4UpwNFVfFoOmen5hO2O1jf0LsbADS2FXOJGmRiow81oOJ2xeF02HEF/eSaNs62JbIx0kaKaudx9xgmaF50pxvV6UBRTFIdPs4bNJEt/loq2+ut3fcoFjn7QlUUvv3lcxiTl8XS/60+bJGiaxoLZo/ne9dezNVfXMDgtMQjjv3EOC9XXjCf275+IYvPmUNVbSOlldXdYhYtnMUvvnsll50797D/5k8fw5oNO7u+9+oamtlVtp8ZE0YwYfQwCksqqalr6tavEEIIcaxO6qlftQ0t3Pizv7Lohnv4xo8eYV91/x84CHFn6iwIRtAUFbO9HaOuDi0YQFc0dAUuUxJ43z2Wi1UfChFUU4G2FsymRgi1gRJhbmIWd+VfbO36sGKR86txBRgdOYyWZoymOtRIGF3R8CgKd+mD+T9nPmNxYJoGSjgMrc3Q1gShAIoS4cbsmXxh8GRr1z3Kdw9msiMV1QQ1EiHS2IjZ1IiGgq4oZCg6/3AM4+/OXNJQMBVQQkHM5kZob4FIEI9N4XejFzHI9clV1SOJRc6+OOe0KUwbm8eO3RX835trrM3omsbiL8zhL7+4nuuvWEh6SjyKoljDuqQmxXHbNRfyp59/k3NOnYLLZbeGfGrbi8t54X+r8bldXHn+KTjsujVECCGEOCYndaEixImQrDkxzBCqqqCpGrqqo6o6NrcP3RuPqtlwa04UVAxTQVFAMQ2UcBCCfggGUAJ+zkoYae36sE50zitSJ4KhoKoqmqKiqzq6oqOrNnSPD93pRVF13JoDRVFQNA1UBcWIYAYDEApgBgIo7W18LX2GtfseXZsyBSMSRlVUVEVDVzVsqo6u2bF5EtDsbhTNga5GD65VVQMFFCMcLYzCAUx/AE/QzzXZ863d9ygWOXvL53VzxuwJ+EMhlry+En8gZA1hythcLjpzBvE+N3vKq9hSuNca0s2ihbOZPTkfRVFYu6noiFc7lr6+ikU33NPjv2dfXY5hGBSVVPY43fXN5RvYuaeS4UMHcer0cdZmIYQQ4ph8rgoVXdO4+KyZ/PGub7Lk97ez9JE7eebB2/j5LVcwcmiGNRxd07jignk89usbWPLwHSx95E5+9b0v43E5usVdeMZ0lvzhdu6546s9nk381hULWfrInXzrioXWJjHAnZ2Yj2GaqKaCouooqg1NtaHpdjR3HOqgIZCYhqI5UVQNRVExVT360TLCEApBMIjpD+MMhRgVd+g4s4pFzjGudDBNFEUFVUNRdTTVjqrZ0HzJKINzULxJoNmJHrlroETHuhoOQjgMgSBGMMIgrfvn43ASNDtEDBRFQ1H06GtU7Gg2F3pyKkpaForDi6LaAA1ULfoaTQMlFMAMBSEQxAwEybbHW7vvUSxy9tYp0wvITE9i0/YSNu0osTYDsG1XBcV7K/nb829zx2+eoK7x0KLhYB9v2cW2ojJ+/MDTPPbs/whFItaQo8pMT2LBzPG0tPl5fdl6azMAgWCYd1ZvAmDB7HE9fg8KIYQQffW5KlQuPHM6X77wFNJTElC16Eu323QKRmRz6zUXkpme1BXrdNj4fzdeyiVnzSIxzovaMb3Cputd/7/TqvU7qalvJiM96ZCCJznBy9iRQ2hp87N8Xe/WC4iBw6noKB3/M9FBUaMFg+pEC0UgYKA4fJh2J6aiQEdhgWoD3YmiOaIHvIYJIQOncvSD+Fjk1Du+ClTU6HMVHV1zomsutHAETA3ccSiaLfoE1QZKNKdp96AoNjAVlLCJFj78VKSDqQqAgqooGKqGqeqouh3d1DEDEdCd4I7HVHUUha58qHZMuzuaM6JA2EQN9+6rLBY5e2vymDxMTDYcpkgBaG5p46cP/ZtX3/sIwzz6fVDWbirixw8+TWFJpbWp106fPYGURB9rNhaxc3eFtbnLxu17qKlvJj0lgezBqdZmIYQQos/69y/tAGcYJoUlldz/2EtceesDLLrhHn764DMcqGkgOcHLpDG5XbFnz5vEmOFZNDa38dCTr3DZTfez+MZ7+c1fltLa3n1H66raRjbuKMHtdDBnakG3tgmjh5GS6KN47z62FZd1axMD3+b2SlRVBQVQTEzFhqnasNmcYOqYjS2Y7SEUxQmqHUV1gO5C0V0oNjdobhTThmKoKIbK7rZP7tZ1OLHIWRVqQVWjU8hQVEzdhmnTsdlcmEETs6EZggZoLlAdKJoD1eYAmzuaU3d15SxvP/JZ/k7+SBhVVTEVQNEwVRuqzYVuc0FbELOhBSKA5sDUHGBzompOFN2NortBdaKYOoqhsae9d3fhikXO3kiI85KSGEdbW4CiPcdeVPS3nMxU5k8voLG5jdff/9ja3E1tQwvl+2pxu+wMy063NgshhBB99rkqVF7832p+cN8/WbV+Z9f87y1FpezcU4Gqqjjs0bPFqqIwfcIIIobBUy+/z7K1WwlHIhimSW19c49nMpev20ZLm5/83Ex83k/2oJg+fiSRiMn/Pljf4/PEwLa7vY4QBqpuAxQMVSGi2lF0F6ruQlWdqKaOavOgXWRCgY6me1F0D4rmQdVcKDhQTBfLmitoDrVZUxwiFjn/VbsJRbdhmmAoYKASwYZq86BqTlRsqKYDU/OgfwmUQQ5UzYuquaM5FScKThRcvNlYZO2+R2uaK9BsOpgKJmCqGqZiQ7G5o6/T1FEVF0amA+0SE83rQbF1/NM8qDijrxMPL9f2PCXJKhY5eyPB5ybO46SlPUBz69HfrxPlC6dMIcHnYc3GQkoqqqzNh6htaEJTNeK8n9yJUQghhDhWn6tCxemw8bVLFnRbc7L0kTuZP21Mt7jEeA/xPg9+f5DdpUc/Gw2wrbiMPWUHGJSawLRxeQAMzUxjxNDBlO+vYcP247vTtzh+trfXoup2DMAwTSImhLGhaG4UmwvF5iWgeQi0u9BmH0AdFUBVvaiKF0XxoajxgIcnatdauz6sE53zQLCRFjOCqtswu/6nEVa06NWEjisnbWocER3UsypRUtVosYIbRfWiKF4awibP1Rx6t6qePFn3UbQ4IjpLzTDMaIGkOjpyeqI5Qx5IDsCZ+1CdLlTVg4oHRYvmXNFSwdaW3l2tjEXO3lBVBdSB9XU8KjeTGRNG0NDcyhsf9K4oO9qaGSGEEKIvBtZfxuPIYdf5/re+yAWnT+u25uRIwoZBxDCsD/fIME2WrYtudjZlTLRQmTB6KF6Pk5Uf7yAQDFueIU4W9x1YhuZwYBgQMVUMFMImhEwFpWMalIKDireGEdqXjjGxCCW3GRQXKG5QnLzbupePW3pfrMYi57NN21CdTiKGQsRQiQBhQyGC1pHTiak6Kf2/kRgBJ5y6ExJMUDyABxQXjzWspSXSbu36sArDLag2JwYQRiVkqoQNExRb9DVqTgINSex7bRR42uH0YrDZozlNDyhu/ly/2trtEcUi58lo4fxJ+Dwu1m4sYm9F9z1XDsftclofEkIIIY7Z56ZQGTk0g7wh6fgDIf71f+93rVFZdMM9XQVGp2AwTCgUwWG3keD7ZBoXwLQJI/A4et6LYN3mXeyvbmBUXia52enMnpxPXUMLq9bvtIaKk8y7kRoUm52waRKKqARRCZkaYRygunE6vKR4PBjLx6FWZ2NM2sKKsUk8En8ajyfN5Ul6d6B3sBOdc1ljMTVOJ4aiEDIgFFEJmCohU8dUXaC68Tq8JCnxKO9MgaAT89SNLMkZw8Pxp/FE4hReaundtK9Ov9z3FkpCEhEDwpFoIRY0NYKmDqobVDfxTg/eplTU5VPB3Yr/jEIeS5nNI4mn8te4LDa39r4YI0Y5j6axuZWW1na8Lgc+T/fvnFgYnz+UqeOGU1PfzH/f/dDafFiZaUmEwmFq6putTUIIIUSffW4KFZ/HjaZqhEIhSitr8AdCpCXHc/Wi05nUcQWkU3Obn8oDtbidDq688BRSk+JIjPPy3avP54tnzeq6Y5hVc0sbH24uJt7j5vwF0xiUmsiq9Tupqm20hoqTzJP7V7AvIR5DsRMyTUIRCKAQQsNUnKB6SHQn4LJ7YeU0KhonMHvkEoZmbmZ/m8nIQbeRlTbH2u0RxSLn7SXPo6XmEDYNgkDQNAmgEjA0UN3oejSnFk6g5oOzaIvEc/HkR3G691PRbucLE/6Ox5li7faIfnngbRypWQRNg6BhEjAhQLRAQvXgcvhIcMdD3SA2fHQpdlc9X5zxN/zhVqqDmZw/7Ulrl0cVi5xHUtvQQlVtI263gxHDjn476eNJVRQWzp+My2Fn5cc7qDjQu5sG+LxuBqUm4A+EqNhfa20WQggh+kxL9Dl/Zn3wZLFo4Sx+8d0ruezcuZx/+nR8Hhc+j4vzT5/OZefO5ZzTprJpRwn1Ta20+f3MnDSK5MQ45k0r4LJz53LeaVMZOSwDhy16z//NhXvZXlwOQDgcYcrYPNJTEjhvwTQuOGM6QzJSqaprIhQOE44YvLd6M+3+YLefqamlnZmTRjEqN5NAMMRTLy+TedvHWWK8l1NmjGV/dT1rNhRam/vNO/VbWJAzB1cYFFPp2GvDhqLa0XU3imIH1QGqnb9UnsGQQVVMyXiL/cFU9tcnMjhxLq3hUppae7+2IRY5X6r7iEW5Z2O0tqApDhRFR1HtHTk9oNhBtdMS8fHPfacyIWcTY7M+YHtNAc1tDnIzzqes9h1C4d4tCq8LtVAaaeWUQZMIt7ehqfaunKrqQNNcXTk3BoaxumE8U4e8R87gjWyqGI8R8ZCbdSbFlS9buz6sWOQ8moQ4DxPyh+J02Fm2dis93XojOcHLfd+/imsWn8Fl584lJzMNgJzMNC47dy6XnTuXiQXDeHtldE+TedMKuOeOr3LF+YOMTE0AAP/0SURBVPO7viM1TWXmxFFd8RHD6PreA5g2fgQXnD6dhuY2nlj6Ns2tvZvKN2n0UBbMGs/u0v289OaaHn9+IYQQoi96vjTwGVTb0MIfn3qNvRXVGJHoupPW9gDL1m7luddWYFjWoqzdVMSjz71JfVMLpmniD4R4f80WfvOX53vcMbpTSUUVO3ZF/+iXlFexu3S/NUScxG7a8RjFXgjbXQQiEYKmid808RtgatHpUageVFT+sfxytjUMZ3HBvxk5ZCvBSJDJI26xdnlUscj55W2/pzk1hSAQMCMEDAN/x5UHtOj0KKdmpy3g5q8fXENz0MbXpj2C11tPMBRmxpgfWLs8onWNO7n3wP8IJw8mEA4RMAwCponfMAmhR3MqHhyGRnn1IP61/mqSnQ18Zf7fCBECI47RuZdauz2iWOQ8kuUfbuNAbSN5OYMYOyrH2nxCqIrCOadOwemw9elqisOuc/6C6WiawrJ1W+UOh0IIIfqFMiwjXv6i9COnw8aPb7yU3OxB/PGp1/hgnWzyeLzlZqfzk5suZ/3WXTz0xCvW5uNiYdoMrkucj60tiFP34rR5seseHDYvfo+Te2r3o7lGESHCxdOfZHXRDorq7qS+bQMfFT1g7a5XYpHzltxLOJUc9LCCU/fgsPlw2DzYdS8VLj9/aYxHt3txuZpYPO2vPPCmHafzKgr3/Z2S/W9au+uVPxTcQGYDOO1unFr09dl1L3a7j+VKKW+Hx2EqJtnpe1kw8knufmUBKfFjWVl4Jy1tx7YHSSxy9uS8BVP52kWnUbi3kp8//NwRT4oMJJ0/99Zd5fz6T0vk5iFCCCH6xUk99WugGZqZxq3XXMioYZls31XBs698QKTj6o04fk7U1K+DFbdWUKOHmJ05DTMSwVTsKJqTCq/JHcW/473Sf+BzDsflSmNz5RhKWhNZtum77KtbZe2q12KRc3X9dlKSshiVkBs9S65G9xz52FHFTVt+wfrKf5CTfD5B08m6simUNGzgw5330NCy29pVr71WvY65w08hSfdioIFmB1c8L4XW8YMNv6KyaRVDUs6mps3Dx5VzWFv8E3ZWPEMwdOwLuGORsyd7K6oYlZdNQV4WqUnxrNtUNOCnUI0ensW1i88gEAzzp6delzV5Qggh+o0UKv3g5qvO447rLubseZNISYyjsqqe3z7+Ek0tvZvbLT6dWBQqAHtaK1nVVsi84fNISklmM1V8bdVt7O/YCb6i4X0SXGNwuwfT3L6HytqV1i76LBY519Zvo14LMTVvOu7kBJ6rW85PNvyWto6NJIurlzI0+QJsDi/ltW/T3If1MIfz2v6VpKdkM2pIPsR7uWv34/yzeAkAgXAD+5rWMSTlbHTdSVHlEiJG97VixyIWOa0iEYNtxWVMGpPHmOHZKJrC1sJSa9iAkZudznevvgCP28Xfl77Fx1uPvUAVQgghrGTqVz+4+arzmD9tDP5AiK1Fe3n02TeprmuyhonjJBZTv4Q4ntKS47n16xfw5oqNXQvjB6K05Hhuv/YiXv9g/YD+OYUQQpycpFARQgghhBBCDDifm7t+CSGEEEIIIU4eUqgIIYQQQgghBhwpVIQQQgghhBADjhQqQgghhBBCiAFHChUhhBBCCCHEgCOFihBCCCGEEGLAkQ0fhTiCS+YuIWfQqQTCzTS1npiN9050Trc9lUvmLyUlPp8W/37aAzXWkH43OudSTpvwK9yuZGobC4kYAWtIv4tFTiGEEEIcO9lHRZz0jueGj5fOfRlNjSdshjAMP9sqnmB7yfPWsH4Vi5xXnrqciBEiYoQImW28u/m7NDbtsYb1m8FJM1kw7j7CRoiIGaItvJ9XV3/NGtavYpFTCCGEEMdOpn4JcQS7KpYRNoKEjQDoEcqrV1pD+l0scjY1l3XkDGJqrce1SAHYV7eaUCTQlbO+fbM1pN/FIqcQQgghjp0UKkIcwbbKfxI2AphmmBumPMysYUFrSL+LRc7d+98mbARxaC18d9p95KW5rSH9rrZ+D2EjyLjBm7lpxut4nJo1pN/FIuexSEuO5ze3f4XzFky1Ng0oJ8vPKYQQ4uT0uZn6lZzg5a5brgDgpw8+TW1DizXkU+mcfuRzO7se27mngh/e/69ucZ1uvuo85k8b0/XfwVCYPz71Gh+s23ZwmOiF4zn1C2B+/h/YUn4vvx+Wg7NOBb+CLRCggRBPh8p5I3CgK/YURyo3ufPISshAdXvwmypP1W/lz/s+7Nbn0ZzonLrqZO6o39FW/TPuSB0F9Spq0EQNtlNOO38IlLAz1NwV/01vLhfbs0hKGozidFFjBLn3wMe8W7ujW79HMiRlISmeCUy2vcg55iDMVgXVb2BEAmw1WnjAX0xDJFqkuTQbP3KPZJ4nE1d8CorNwQ5/HT/b9wG7WuusXR9WLHL2VVpyPLdfdzFDMlJY+sYqnvvvCmvIgDFiaAbfu+ZCvB4Xjz77Bu+t2WoNEUIIIY7Z52Yxvdtp57SZ4wB4b/Vm2v39e5Y6Md7LKTPG4rDpXY/VNjTz9spN3eI6zZw4kpzMtK7/jhgG6zYXU1pZ3S1OHF3n735/dT1rNhRamz+1QPMqfu4eh1EVxKm7cXm92A2DhHCI07Q4knQHq0IN/MA9nJudQ/DZ7KguN4rNhk1RmRI/hLFJw3ituvdF6InOaZhhhga28RVzOOH6IG6nD5fThSMSZpAB5+hJVCsGNWaQP3oL+IKejMvpQnE6UFQVj6Zzdmo+YbuD9Q29uwFAY1sxl6hBJjb6UAMqblccTocdV9BPrmnjbFsiGyNtpKh2HnePYYLmRXe6UZ0OFMUk1eHjvEET2eKvpbK93tp9j2KRsy9UReHbXz6HMXlZLP3f6sMWKbqmsWD2eL537cVc/cUFDE5LPOLYT4zzcuUF87nt6xey+Jw5VNU2Hva7ZuTQDG656ny+dcXZfOm8eVx4xgxGDctka2Ep/kD37826hmZ2le1nxoQRTBg9jMKSSmrqmrrFCCGEEMdKCpV+Ut/UyktvruG5V1fw4eZiZk3Op7m1/bCFypoNhTz36gqee3UFg9MSyRqUIoXKMTrehcrPB5+GrS2IDRN7JIzmb8ceCWNDwaYYjMPBl20pjFNdqKqKotrAiEAojKKaKHY7Ob4UMjyDea+md1ccYpHzJ6lzCLW04FQ1bKEgWrAdmxHBjoJTMVmgePiinkym6gBFRVE0MCIoRhgUFdXpYHpSLqUhP8Ut+6zdHyLfPZgvevIwA36cmGiBIHrQjw2wAQkKXKLGcYEtEZ+iY2o6iqJCOIxiRkDTcLidnJ42gVdrttMS9ltTHCIWOfvi3AVTOWf+ZHbsruDRZ/9HOGJ0a9c1jUULZ/Pdq89n3tQCvG4niqKwt7K6x7GfmhTH9Vcs5BtfOov83CxsNu2IJ0UmFeRy+3UXkTUoGVWNzgzWdY2M9CSmjBvOR1t20dre/W5pNXVNRAyD6eNGkJGWzIqPtxOx/NxCCCHEsZA1KkIcRbLmxDBDqKqCpmroqo6q6tjcPnRvPKpmw605UVAxTAVFAcU0UMJBCPohGEAJ+DkrYaS168M60TmvSJ0IhoKqqmiKiq7q6IqOrtrQPT50pxdF1XFrDhRFQdE0UBUUI4IZDEAogBkIoLS38bX0Gdbue3RtyhSMSBhVUVEVDV3VsKk6umbH5klAs7tRNAe6agdAVTVQiBZGoQBKOIDpD+AJ+rkme761+x7FImdv+bxuzpg9AX8oxJLXV+IPhKwhTBmby0VnziDe52ZPeRVbCvdaQ7pZtHA2syfnoygKazcVHfFqh9Nh44rz5+F1O9m5p4Kb7n6UxTfeywN/e5nmljYy0hK56Mye39s3l29g555Khg8dxKnToyeEhBBCiE/rpC9UnA4bX7tkAY//+kaef/gOljx8B3/95be5+KyZqIpiDQcgMd7HT75zGUt+fzvPP3wHf/759cycNMoaRm52Oj/69mL+df93WfrInSx5+A4e+/UNXHHBPHRtYC7CFf3r7MR8DNNENRUUVUdRbWiqDU23o7njUAcNgcQ0FM2Jomooioqp6tGPlhGGUAiCQUx/GGcoxKi4DGuKQ8Qi5xhXOphm9OqBqqGoOppqR9VsaL5klME5KN4k0OxEj9w1UKLTHNVwEMJhCAQxghEGaQ5r9z1K0OwQMVAUDUXRo69RsaPZXOjJqShpWSgOb/RqERqoWvQ1mgZKKIAZCkIgiBkIkm2Pt3bfo1jk7K1TpheQmZ7Epu0lbNpRYm0GYNuuCor3VvK359/mjt88QV3jkdfafbxlF9uKyvjxA0/z2LP/IxSJWEO6TBs/gqzBKVTVNvLg3/9DxYE6DNNkxUfbefHNNZimyei87G7r8DoFgmHeWR29erxg9jgc9k+mwAohhBDH6qQuVFRF4fbrLuaC06eREOdBURRURSE5wceFZ85gaNYna0A6xfvc/PjGS5mQPxRVU1EUhdSkOK699AxyMlO74pITvNx6zYVMHpOLy9VxdlVRSIzzcslZs7jigv49myoGJqeio3T8z0QHRY0WDKoTLRSBgIHi8GHanZiKAh2FBaoNdCeK5oge8BomhAycytEP4mORU+/4KlBRo89VdHTNia650MIRMDVwx6FotugTVBso0Zym3YOi2MBUUMImWrjnEwRWqgIQ/cwaqoap6qi6Hd3UMQMR0J3gjsdUdRSFrnyodky7O5ozokDYRA337qssFjl7a/KYPExMNhymSAFobmnjpw/9m1ff+wjDPPp9UNZuKuLHDz5NYUmltekQQ7PSsdt01m/bTVVtI3R8582cNIqz501GURQSE7ykJvdcoG3cvoea+mbSUxLIHvzJd6kQQghxrPr3L+0JNiQjlbzsdGobmvl/v3uKRTfcw2U33c+9j75ISdkBDOPQP+RupwO3w85r73/Elbc+wK2/+hsHahpI8HmYVJDbLbappY1X3vmQm3/+OItuuIcrb32A197/CNMwmVSQ2+OZRfHZsrm9MjpXXwEUE1OxYao2bDYnmDpmYwtmewhFcYJqR1EdoLtQdBeKzQ2aG8W0oRgqiqGyu+2Tu3UdTixyVoVaUNXoFDIUFVO3Ydp0bDYXZtDEbGiGoAGaC1QHiuZAtTnA5o7m1F1dOcvbj3yWv5M/EkZVVUwFUDRM1YZqc6HbXNAWxGxogQigOTA1B9icqJoTRXej6G5QnSimjmJo7Gnv3V24YpGzNxLivKQkxtHWFqBoz9GLiuMhKd6DYRjsq47eJGDymDzu/8HVfO+aC0lPiUdRFBw2ncxBydanAlDb0EL5vlrcLjvDstOtzUIIIUSfndSFSps/QHsghM/jYurY4eiaRjgSYc2GQn72+39TUlFlfQrhSIQlb6zksefewh8IsbeimvXbdqMoCpr2ya+jtqGFH97/L/6+9G3K99cA4A+EeGfVZloDQWw2DbtMb/jM291eRwgDVbcBCoaqEFHtKLoLVXehqk5UU0e1edAuMqFAR9O9KLoHRfOgai4UHCimi2XNFTSH2qwpDhGLnP+q3YSi2zBNMBQwUIlgQ7V5UDUnKjZU04GpedC/BMogB6rmRdXc0ZyKEwUnCi7ebCyydt+jNc0VaDYdTAUTMFUNU7Gh2NzR12nqqIoLI9OBdomJ5vWg2Dr+aR5UnNHXiYeXa9dbu+9RLHL2RoLPTZzHSUt7gObWo79fx0s4YuB2OPjlbVfyg+sXkZOZSjAU4aW31lK89+g3SKhtaEJTNeK8LmuTEEII0WcndaFSVdvIM698QCRicNGZM3jqd9/lnju+yhlzJhx2DUl1XRNvr9jY7bHDzfMeNyqHX952Jc88eBtLH7mTpY/cyX3fv0qupHzObG+vRdXtGIBhmkRMCGND0dwoNheKzUtA8xBod6HNPoA6KoCqelEVL4riQ1HjAQ9P1K61dn1YJzrngWAjLWYEVbdhdv1PI6xo0asJHVdO2tQ4IjqoZ1WipKrRYgU3iupFUbw0hE2eq1lj7b5HT9Z9FC2OiM5SMwwzWiCpjo6cnmjOkAeSA3DmPlSnC1X1oOJB0aI5V7RUsLWlzNp9j2KRszdUVYGOu2zFkt2mc9l5c8nPzSIUivDWio1888d/4p8vvkvEMDBNiIQPf0evw32XCiGEEMci9n8ZP6Vla7dy/U//wpLXVrC/up7crHSuv2Ihf/7Ftxg9PMsa3mtzp4zm+99cRH5uFvaD9kYRnz/3HViG5nBgGBAxVQwUwiaETAWlYxqUgoOKt4YR2peOMbEIJbcZFBcoblCcvNu6l49b9li7PqxY5Hy2aRuq00nEUIgYKhEgbChE0DpyOjFVJ6X/NxIj4IRTd0KCCYoH8IDi4rGGtbRE2q1dH1ZhuAXV5sQAwqiETJWwYYJii75GzUmgIYl9r40CTzucXgw2ezSn6QHFzZ/rV1u7PaJY5DwZtHXcdjgcibBq/U5u/vmj/Onp12luaSM50UeCz0MwGKSy6vBT3twuOYkjhBCi/5z0hQodC0z//cpybv7543z9h4+wZkMhCT4Pi78wxxraa3OnFuB02CgqqeS2X/2dRTfcw6Ib7uH23zxBc1v/7p0gBr53IzUoNjth0yQUUQmiEjI1wjhAdeN0eEnxeDCWj0OtzsaYtIUVY5N4JP40Hk+ay5McumfF0ZzonMsai6lxOjEUhZABoYhKwFQJmTqm6gLVjdfhJUmJR3lnCgSdmKduZEnOGB6OP40nEqfwUkvvpn11+uW+t1ASkogYEI5EC7GgqRE0dVDdoLqJd3rwNqWiLp8K7lb8ZxTyWMpsHkk8lb/GZbG5tffFGDHKeTSNza20tLbjdTnwedzW5hNiV+l+QuEw1XVN/P35t6g+6FbGU8cMJynBS31TG7X1h7/FcWZaEqFwmJr6ZmuTEEII0WcndaEye1I+99zxVc6eO6lrOlZ7e4DNhaWEwhGcjo47FB0Db0d/1fVN7K+pR9c0ZkwcyXWXn4XHdfS7KInPlif3r2BfQjyGYidkmoQiEEAhhIapOEH1kOhOwGX3wsppVDROYPbIJQzN3Mz+NpORg24jK61vhXMsct5e8jxaag5h0yAIBE2TACoBQwPVja5Hc2rhBGo+OIu2SDwXT34Up3s/Fe12vjDh73icKdZuj+iXB97GkZpF0DQIGiYBEwJECyRUDy6HjwR3PNQNYsNHl2J31fPFGX/DH26lOpjJ+dOetHZ5VLHIeSS1DS1U1TbidjsYMezot5M+Hjrv2jUoJYGbvnYemelJqIrCnCmj+dL5c9FUlVUbdhz2RI3P62ZQagL+QIiK/bXWZiGEEKLPlGEZ8YfeGuskMW9aAd++8gs9Ts0yIgbPvrqC519fCR23G77rlisA+OmDT1Pb8Mlc6kULZ3HF+fN5+j/LWPr6KgAuPXcOixfO7tqd2WpfdX23fm6+6jzmTxtjDetycHxudjo/uenyI651OfhnEUfW+ftcv3UXDz3xirW5X/0+/1pSm4K4TB2nzY1Dc+GyuXHa3CiooKiAwr36OC6f+xRZ3k0s2XY520rzMXX4qPQeyqtWWLs9oljk/FfBTajVVXhtPpy6C6fNjVN34dDdHfuoKBzAzb/dg7n2lD9jKg38fc31VDclgM3gzU3foM3f+ys60+JHccfgMzHq6/B05tTdOHU3Ns3RlfN12zCqkpu5Yuqf2Nfu4x8rvkkgYiOo1fDah9dYuz2iWOQ8kgvPmM6XLzyFrUVl3P2HZ3u8/XDn99jg1ERrU5edeyr44f3/gqN8R3Y6+Lvm1BljuO6ys3s8ybOtqIxf/mlJjxtRAsyYMIKbvnY+RSWVh/35hRBCiL7o+Sj8JLHq45089+oKDtQ0YESiCzzDkQilldXc+9iLXUXKsXjh9dW88cF6WjvmbRsRg9LKGh599k3KKqN3AROfPzfteIxiL4TtLgKRCEHTxG+a+A0wtej0KFQPKir/WH452xqGs7jg34wcspVgJMjkEbdYuzyqWOT88rbf05yaQhAImBEChoG/48oDWnR6lFOz0xZw89cPrqE5aONr0x7B660nGAozY8wPrF0e0brGndx74H+EkwcTCIcIGAYB08RvmITQozkVDw5Do7x6EP9afzXJzga+Mv9vhAiBEcfo3Eut3R5RLHIeyfIPt3GgtpG8nEGMHZVjbT4h3luzlQefeJnSypqu79TW9gBvrth4xCLFYdc5f8F0NE1h2bqtUqQIIYToFyf1FRUhOMFXVDotTJvBdYnzsbUFcepenDYvdt2Dw+bF73FyT+1+NNcoIkS4ePqTrC7aQVHdndS3beCjoges3fVKLHLeknsJp5KDHlZw6h4cNh8Omwe77qXC5ecvjfHodi8uVxOLp/2VB96043ReReG+v1Oy/01rd73yh4IbyGwAp92NU4u+PrvuxW73sVwp5e3wOEzFJDt9LwtGPsndrywgJX4sKwvvpKXt2PYgiUXOnpy3YCpfu+g0CvdW8vOHnztsYTDQdP7cW3eV8+s/LSEQDFtDhBBCiD7TEn3On1kfFOJkkhjv5ZQZY9lfXc+aDYXW5uOiuLWCGj3E7MxpmJEIpmJH0ZxUeE3uKP4d75X+A59zOC5XGpsrx1DSmsiyTd9lX92xT+eLRc7V9dtJScpiVEJu9Cy5Gt1z5GNHFTdt+QXrK/9BTvL5BE0n68qmUNKwgQ933kNDy25rV732WvU65g4/hSTdi4EGmh1c8bwUWscPNvyKyqZVDEk5m5o2Dx9XzmFt8U/YWfEMwdCxL+CORc6e7K2oYlReNgV5WaQmxbNuUxED/UzS6OFZXLv4DALBMH966vWuXe2FEEKIT+uknvolRCy9c2Ad3yn6I02DvDiHprA5rpZFq77FhupNAKwtuZuqhi2g6oQCPS9A7qtY5Hx41/P8ofp1Ilkp2Iam8mxoFd9a+wNqWqNTIF/f+iWCwXY0zYU/cPg7QvXFd9bfz1vGLvScVMzsRH6871F+ten3ADS27+G9wlsBFU11YRiH39ejL2KR0yoQDPPHf71KZVU9c6eMZvG5fbsZwomWm53Od75yLg67nX++9C5FJf13dUkIIYSQqV/ipBeLqV9CHE9pyfHc+vULeHPFRt5eGS1CB6K05Hhuv/YiXv9g/YD+OYUQQpycpFARQgghhBBCDDgy9UsIIYQQQggx4EihIoQQQgghhBhwpFARQgghhBBCDDhSqAghhBBCCCEGHClUhBBCCCGEEAOOFCpCCCGEEEKIAUcKFSGEEEIIIcSAI4WKEEIIIYQQYsCRQkUIIYQQQggx4EihIoQQQgghhBhwpFARQgghhBBCDDhSqAghhBBCCCEGHClUhBBCCCGEEAOOFCpCCCGEEEKIAUcKFSGEEEIIIcSAI4WKEEIIIYQQYsCRQkUIIYQQQggx4EihIoQQQgghhBhwpFARQgghhBBCDDhSqAghhBBCCCEGHClUhBBCCCGEEAOOFCpCCCGEEEKIAUcKFSGEEEIIIcSAI4WKEEIIIYQQYsCRQkUIIYQQQggx4EihIoQQQgghhBhwpFARQgghhBBCDDhSqAghhBBCCCEGHClUhBBCCCGEEAOOFCpCCCGEEEKIAUcKFSGEEEIIIcSAI4WKEEIIIYQQYsCRQkUIIYQQQggx4EihIoQQQgghhBhwpFARQgghhBBCDDhSqAghhBBCCCEGHClUhBBCCCGEEAOOFCpCHMGihbN49vff48H/dw1pyfHWZiGEEEIIcZxoiT7nz6wPCjGQ3HzVedxx3cVEDIPtxeXW5uPqKxedSlpSPC6nnT3lByitrLaGDBi52en87sfXMn3CCN5eucnaLD6Fzt/tGXMmsGbDTtr9QWvIgJKbnc6tX7+Qb1x+FlecP5/Lzp3LxWfNpKq2cUCPYSGEEOJgyrCMeNP64Mlg3rQCvn3lF7DbdGtTNzv3VPDD+/9lfXhA0DWNU2eO5ZKzZpGWHMcHH27joSdesYYB4PO6+fIF85k1OR+Py4ERMSg/UMc/XnyX9dt2W8N75Vff+zLDstL541Ov8cG6bdZmHHadX9z6ZTwuBz9+8Glq65utISfEzVedx/xpY3j6P8tY+voqa/NxtWjhLC49Zw77qur51Z+ep6q20Rpy3CxaOIsrzp9vffgQy9Zt5aEnXiE3O52f3HQ5lQdqB8yYT02K47rLzqQgbwgulx3DNGlsbuWdVZt47r8rCUci1qcMSJ2/25bWdn764NPUNrRYQwaMzPQkfvTtxaSnJHR7PBgKH/azfjSdn8GefJp+hRBCiCORqV8xoGsai78wh7/84nquv2Ih6SnxKIpiDevi87r54fWLOGPOBDwuBwCqpjIkI4XvXXsRp87o+QDiaPyBkPWhbrxuJy5n9OAS86SsZz+1pa+v4rKb7ueWXzx+QouUz4L508fwux9dw5Sxw3G57ACoikJinJfzF0xn1uRR1qeIfjBrUj5pyfGUVlZzx71PsuiGe1h0wz186ZbfSjEhhBDipHLSFiofrNvGl275bdcf4Qef+A/BUJideyq6Hlt0wz0D5szywaaMzeWiM2cQ73Ozp7yKLYV7rSHdXHzmDEbkDKahqZUH/vYyi2+8l5vufpSikkqcDhsXnjEDn9dtfdpRNTa3oiigqkceBqFQhGAwbH1YHGdLX1/VbSw//Z9l0HEF5eDHD3cVLpZGDM3gaxefhstpp7SyhnsffZHLbrqfxTfey48ffJrNO0uIhA3r00Q/yByUhGmavL1qE7v27rc2fypP/2dZt7EnBZAQQojj6aSd+mXVORVsT/mBIxYn08YP54rzTyErPQlVUwmGwmwrLuPPT79OdV1TV9yihbO4/Ny5PPniu3jcTs6aM5F4n5uIYbBlZykP//NV6puObfqHz+vme9dcwJqNRbz+/sd852vnMn/amK4pPAdLTvBy1y1XkJzg46/PvMG7a7Z0tQ3NTOPHN16K02Hngb+9zEdbirs992iONqVqUGoid910ObWNzV2/U1VROHPuRC48YwapyXGoikJ7e5C1mwr5+wvv0tzS1vX8g6ci/frPL3D1JacxY+IonA4bDU2tLHltJa8v+/igjDByaAZfuehUhg8djN2mY5gmkUgEm64f8nM6HTYuO3ce86cVEO9zYwL1jS289v7H/N+ba6JXgo5B5+98cGpi12P7qusPO+Xn5qvOY9KYPH776IucNnNc12v0B0J88OE2Hnv2zX6Z4tQ5FayncYLl9/3E8+9w3WVnMjQ7HYDyfTX88anXKSqp7PacnqYU7imv4rHn3qTQEtsX37piIWfOmUBpZQ2/eOTZHn9vVr35bHZ+zl96aw152elMGpNHY3O0gF8wYxynTB9DS7ufPz/zBms2FHb13TmuRuZmoGsa/kCINRt2HjJm6bjieem5s1kwazzxPg+qohAKh9E0jQM1DV3j4MIzpvPlC09hd9kBfvLg0wQsxXzn7+DNFRv589Ovd2vrrc6pc2NG5OB02DAiBlV1jTzxwjus29Tz5/3mq85j5sRR/Tod62jfFQfr6+f+4J/XHwhy9aLTSU2OB8NkU+FeHv5H9+/aQ8asaVLf2MJLb67h9fc/7va572vfx/KdoioKt15zITPGj+D9D7fxx3++2mOcEEKIvvvMLKbPyUxl2vgRNDS1HnYh8WXnzeW6xWeSEO9BUaNTrTRNZVBqIvOmFVBYUklNxwFRwfBsxucPZcjgVKaOzcPltKMoCqoajR+Smcrydds4lj9HwWCI99ZsoahkHyYwc+JIcjLT2FtZ3e3gCmD4kEGcPns8VbVNPPV/7xMMRQ+GMtOTuPqLpzNkUAo2m07Z/po+LzTPGpTMuFE5bC7cy/bicmZMGMG9d16Fx+1k044S0pLjOX3OBJpb23l75SZUReE7Xz2Xi8+aidfj7JquZrNpDM1KY9r4EXy0ZRet7QEAEuO9nDJjLOFwhAWzxjE+fyi6rgHgdNgpGJ5N+f5aKg7UQcdUoVu/fiEZ6UloWvQqj6IoaB1XfDp/TjoODr7/rUWcMn0MTkf0vVEUBbfTwbAhg9i4fQ/1Ta0cC7fTzmkzx+HzuLoea2nz897qzT0uop45cSTDhwxi6vgRjByW2fUadV1jWFYaJiZbi8qsT+uzguHZjBuV0+M44aDft8/t5LRZ40lLjk4pVBSFeJ+HkcMyWLl+J8FgdMpfcoKXH13/RaaMG9611ktRFZISvMydWkBVTQOl+2osWY4uIc7LpefMweO28+x/V7ClsNQacojefjY7P+fpyQnkDRmEqqq4HHaGDxnM+FE5qJqKw27D63Hx/tqtAMyYOJLbrrmQzEHJXVcPdb1zzA5n7cbCrvfV6bDxw28v5pTpY3A5HV1jXFNVFEXpNg7qG1uYMWEkyYk+duwq7zY1MDnBy2XnzkVRFP79nw+oquv7tMHRw7P46XcuY1j2oK4xpagKXo+L2ZPyUTWVrYWlJCd4ue/7V3HN4jO47Ny55GSmoWkqMyeO4rJz53b9m1gw7LDfjUfT+R118GfwcPr6uZ85cSRZg1JwOu1cctZM4rzu6LhVlUO+a9OS47nr5i8xcfSwT8Zsx+d+UsEwBqUmsm5TUdf3cl/6PtbvlGHZ6Sw+dy5Oh42keA/rt++hsbl78SuEEOLYHHnOz2fIqNxMFs6bBMDryz7mqtsfYvGN93LXH57lQE0D8T4Pl5w1y/o0khN9lFbWcNcfnuWym+7nz8+8gT8QYuSwDMaMyLaG97uEeC+6plHf1EJzm5/UpDi+d+1FPPCjrzMhfyhqxwF91qBk61N7LSneC8D4/KE4HTbGjsjGYf/kJgUHahoAmDN1NDMnjSIQDPOv/3ufK299gMtuup+HnnyF5pY2MtISOX/BtK7ndRqSkcrgtEQ+WLeNa3/wCFfd+Qe2F5fjctqZMHoodJwlveSsmTgcNlav38n1P/kzi264h6tuf4g1G4usXTIkI5W87HRqG5r5f797ikU33MNlN93PvY++SEnZAQzjWErIqNqGFm782V9ZdMM9fONHj7Cvut4acghVVfG6nezcU8FNdz/Klbc+wMr1O1BVlfEjo6/xRPF1HIz986X3uOym+/nVn5bS3NJGekoi40YM6YpbtHA2w7LT2bV3Pz/87b9YdMM9XPuDR3h75Sbsusb5p0/rNg56KyneQ5zPTZs/xK69+6zNhziWz2Z6SgIfbdnNw/96lVA4zJCMFHbsruCev7xAe3uQlMQ4EuK8+LxuLj93Lm6HnbdXbuLaHzwSnRL623+xa+9+MtKS+MIpU7r6PXveJMYMz6KxuY2Hnnyla7rab/6ytKsA71RV28jGHSW4nQ7mTC3o1jZh9DBSEn0U793HtuK+F6kOu86V559CvM9DUUklt/3q7yy64R6u/8mfWbOxCEVVOH3WBDLTk6xPPa6uOH8+Sx+5s9u/J+67mdyOK3cH683nvpPdpjNlTB71ja3c99hLLL7x3o6rICFyMlPJ7Ph++9L588hMT+JATQN3/eFZFt94L1fd/hCvL/sY0zCZNm4EEwtyj6nvY/1OqThQy47icoyIwcfb9lBW2ffiXgghRM8+N4XK9AkjifO6WbdlF48/9xbNbX4M02TTjhL+/MwbtPkDDBmcwqCDpvsAbNi2hx/+9p9s2lFCOBLhzeUb2LxzLy6Hnbycwd1ij6f29gDXX7GQh358HbMmjUJVVTbtKOGVdz+yhvZaU0s7ESOC2+XAYdcZOSyTfdX1pCfHkz04lcR4HzYteiYUYM7k0dh0jTc+WM+L/1uNPxAiHImwbO1WnvnPcsKRCPl5WYcc3Lb5A/z5qdd58In/RAuuljY+3FKMaZq4O24OMHH0UNJTEthdup/f/+OVrrPTzW1+AsFDr2K0+QO0B0L4PC6mjh2OrmmEIxHWbCjkZ7//NyUVVdanHFemabJ+227u/sOzVByowx8I8d7qrfgDIVTt8DdKOB7a/UH+8u83eOnNNYQjET7aUszu8ioUBTQ9+pH3uZ2MzsumsbmNPz71Gjt3VwBQ39TC40vepKSymvTkeAanHv8D4WP5bDa1tPHim6vZW16FPximzR9gyesrqalvImwaqKqCpkanfKUlJ7C1YwpZ5zSfnbsr+OdL79IeCJKfmwUdZ9SnTxhBxDB46uX3WbZ2K+FIBMM0qa1v7nE6z/J122hp85Ofm9ltndj08SOJREz+98H6Hp93NCOHZpCTlUp1XRN/+Md/u8ZzVW0jv3/yP+wpO0BCnIuCEUO6FdaLbriHZeu2EgyFefCJ/3RbS3KkKbHHQ28+9wfbsH0Pt9/zJKvX78QwTT7aspvahmZ0XcemawxKTaQgLzva7zNvsGlHCYZp0tzm5/Hn3mLdll24XHbGjPykGO9t33yK75RAMMxv/rKUxTfdx8P/+O8xvd9CCCF69rkpVJLiPRiGwbbi0kP+kFTsr6GxuQ2H047bGb07Uadtu8oOuTvW7vL90SlJHVczToSZk0ZxxpwJ2GwaO3aX86P7/8Vdf3iWppboVIRwpO9/HP2BIJGO50ULEw+bdpSg6zoTRw/D7bKjqgp1jdEccT4XgWC4x2lMRXsr8QfDuJx2vG5nt7bG5jY27Szp9thLb67hizfe27XWIi05HrtNp3Rf7SFz/XtSVdvIM698QCRicNGZM3jqd9/lnju+yhlzJqAfVFydKKFwhGXrtnUbK/WNzYT6YW1KX5Xuq2ZZx7SnTo3N3aesJCfGkRjnJiHOw29/eHW3M+RP/+42crPTsdvtZKQd/0LlWD6b+6rru4orgLJ9NWza0X2MAWQPTsZh1xk3KoclD9/R7XX+7OYv4XY6iPO5SYjzkhjvId7nwe8Psrv0gLWrHm0rLmNP2QEGpSYwbVwedKwdGzF0MOX7a9iwfY/1Kb3SeSW1sqqua4pUJ38gRPmBWjRVI877yfTEE6GnxfRX3f4Qu8sO/X315nN/sG3FZd3WCzU0tXDT3Y929e922nE47dTUNbOntPtNAgzTZFdp9OpdUrynWxu96JsB+J0ihBDic1SoAJiYvToIPhqHvXsxczy1tQcxDBPTNNlbUc2v/7SUH/32qa6FzkMyUjFNk4r9fZ9uEAkbmCakJsaTn5eJYZgsW7uNmvomCg6a1tbW7u/6/4ZpEOzhCkd/6Uvfy9Zu5fqf/oUlr61gf3U9uVnpXH/FQv78i28xenj0LLnomaoqcJS7vR2rNn+QgD+I22nr9VXH/vpsWmladG1JX4QNg4jRuzuSGabJsnXRonDKmGihMmH0ULweJys/3vGpX5Pcbe9Q4UiEYPj4/F7kO0UIIQaW43OkMgC1tQfQVI2J+YeuF8gclEK8z01La/shZ56tHHadsSOyiRgRmlrarc39rmxfNU0tbYTCEV58czUfb93V1ZaZnsSoYZkEgmHK9tV2e15v7K+pJxgOo2oKY0fkUF3XSOGeCvaUH2BIRgo5GanoqkokEj1o8wdCuBx2JoweZu2KETkZOO06jc2t1HdcgemLQDCEYRgkJ8R1ezwtOZ68IYc/2G1uaePfryzn5p8/ztd/+AhrNhSS4POw+AtzrKHiII3NrbS0tlNT18QNB00bOvjfFd/9LSvX77A+9aiqahrYV12PpmqcOmMMTofNGtJNf302e1JV20gwFGbdpuJDXl/nv5vufpSGphaCwTChUASH3UaCr/vtvqdNGIHH0fMJinWbd7G/uoFReZnkZqcze3I+dQ0trFq/0xraa50nKHIyU0lLju/W5nTYyEpPJhgKf6729gmFI4TDYdKS4xmRk9GtTVUU8oYM7jhp0/0KVF/Jd4oQQgwcn5tCZdOOEvyBEFPHD+faS8/A53aiKgozJ43ixq+cg9vpYEth6SG3UU1O9JGcEF1snpmexK1fv4jcIYOoqm3i4z7eDvhYVNU2smN3OXabzlcuOpWZk0ahKgqZ6Ul856vnkpoUx56yA2wpPHTaS28lxfvIz81gx+5KDNNk8869uJ1Oxo3KIWwY1DZEd6TfuH0PpmmycP5kLjpzBk6HDV3TOG/BVK64cD6aqrJ2Y9Eh03d6o6SsijZ/kHGjcrjg9GnomsbMSaP4xa1X9rhgePakfO6546ucPXcSvo6pZu3tATYXlhIKR456cPx5V9vQwt7yKpITfdxy9fmMG5XTb9NbjI49PIKhMKOGZfKLW7/MpIJcdE1D1zTGjcrhh9cvYvakfPgUn83e2Lm7goamViaNGca3rlhI1qAUa0iX5jY/lQdqcTsdXHnhKaQmxZEY5+W7V5/PF8+a1XXjCqvmljY+3FxMvMfN+QumMSg1kVXrd36qIqKwpJLqukZSk+K45erzGZqZBh3fQT/41iKGZadzoKaBDduP/XN/sqnYX0v5vlq8biff+NLZjM8f2rWB6M1Xnce0sXk0Nkffi2NxrN8pqqLwvWsvYsnvb+fGr56L2screEIIIQ7vc7OPSuetdedNK+hxKkjZvhp+9afnuw4uOves6Ik/EOLRZ9/gvTXd1wH0Vk/7dFjt3FPR9TrSkuP5fzdc2uMBe2Nz9E42R7tlaE+SE338/JYrSE9JwB8Ide3F0rl/SkpSHMFQuGs/BqfDxo+uX9xtWlgn0zTZUlTGb/78fNc6jc79FFpa2w+7B0knVVH40Q2LmWi5WhOORCgpr2J4zuBuezh0vt+dtyg9mBExePbVFTz/+kprU68c6b2n44D27t//u2tu++H2rTh4P4mexmRf9WUfFWu+nn7GEUMzuP26i7sKcauDx2BfqYrCN750NqfPHNfjAf7B46ovn03r59z6mnsac4sWzuLSc+YcthA7eFxNHz+Cm752Hi7LWrUDNY3Y7dH9V3oay517GiXEeWhubecXjyyhuBd3PDuSU2eM4brLzu7xALndH+Svz/7vkLVIHOa9/rQ691HpycHvJX383NPHPVpGD8/i9msvIt536DqUcCTC0jdW8dx/V3Q91pe+j/U7pfP1+txOGptbuesPz7K3otoaJoQQ4hgcegTxGWWYJn/4x39Z8vpK6ptaus76t7YHeGvFRn784DNHPQMaDIXZVlTGXb//9zEXKceiqraRnz/8LB9tKe4qAsKRCNuKyvjFI0uOqUgBwDS7fg/1TS2UlEcXqO6vrqeiKjp9IhgKs786entifyDEL/+0hDdXbKS5tR3TjK6daWhq5YX/reIXDz93yI0HesswTR584hXWbSruutPSgZoG7n/sJdZuOvT2xKs+3slzr67gQE0DRsfUtHAkQmllNfc+9mKPBxSiu6KSSn7023/y0ZZi2tt7vzaoNwzT5M9Pv869j71I8d59Xfv/GBGDAzUNPPfqClZ9HJ0a1R+fzSNZ+voq7n/sJUorq4+68ebaTUU8+tyb1De1YJom/kCI99ds4Td/+aQA70lJRRU7dkU/hyXlVey2LPY+Fu+t2XrIz935ub/7D8/2WKR81m0vLucXjyxhW1FZtzFVWlnD/Y+91K1I6atj/U6R2xMLIcTx85m5otLfOs9e9+ZMnBDi883psPHjGy8lN3tQv17JEEIIIT7PPjdXVIQQ4ngYmpnGT75zGaOGZbJzTyVrNxZaQ4QQQghxDKRQEUKIY3DzVeex9JE7+e0Pr2bUsEwqq+r5479e/dS3JBZCCCFElBQqQgjxKfgDIT7aUszPH372U62lEUIIIUR3skZFCCGEEEIIMeDIFRUhhBBCCCHEgCOFihBCCCGEEGLAkUJFCCGEEEIIMeBIoSKEEEIIIYQYcKRQEUIIIYQQQgw4UqgIIYQQQgghBhy5PbE46eVmp/OTmy5n/dZdPPTEK9bmfpUQn0NK8hhczgRsNi823UVLaylbd7xoDe03sciZnjaB+LgcHI547DYPuuZkR/HzNDaWW0P7haKoZGbMxOcZhM0Rh133YLfZWbn2d9bQfhOLnC53Mhlpk3A4k7Dbvdh0N7oKqz582Brab2IxfmKR80SPWSGEEMefluhz/sz6oBAnk8R4L6fMGMv+6nrWbCi0Nver2TNvZvCgMSQlZpOYmIHPl0w4EqasYo01tN+c6JyJ8cOYPvU6UpPzSErKIiFhED5fMrW1e2hqrrCG94vRoy5m9MizSU4ZRnJiJvHxaXhc8ewoes0a2m9ikXPS2K+SkzOLlOQcEhMziY9LRdNsFO95xxrab070+CEGOWMxZoUQQhx/MvVLiD5wOlzYbHY0Te96TEHpFtMpLi6T4blfYEz+ZUwa/3WmT/kOkydeZw07qhOdU1XtOBxOdJsNVdW6HleUnnMmJ+czcvh5jCu4kskTv8GMqTczdMhca9gRKajY7U50zYaiRL+WjMPkA4WszNnkj7iI8WO+zJRJ1zNj6s3WoKOKSU5VwW53oGl613toHOaatsMZx9Ahp1Ew6otMHHcVUyffwIyp37GGHdWJHj/EIGcsxmxfXHruHO6+5QoS47zWpgFDVRRu/PI53HbNhTgdNmuzEELEhBQqQvSB2XFQWblvOzt2vsXGzS+xvajn6Wbjx17JyBFnkjdsFjlDJpOZkU+8N9UadlSxyAlgmia7S1awbfsbrN/4HNXVO6whuNxJTJt8DSOGn86woTPIyZ5AxuCRuJzx1tBe8be3UFj0Llu3v8aGjc9amwHIG3oW48ZcwvC8Uxk2dDpDssaSMXikNazXTmTOzpqkvq6cHTvfYvPW/7J1e8/ToQpGLqYg/zzycueRM2QK2ZkFJCUMtoYdVSzGTyxyEqMxezQXnzWTi8+cSZzXhc32SRE10NjtOvFxbmZOGsU3Lz8b9TBFnhBCnEhSqBzFpV+YwxP33sTFZ820NonPoc6/3UW7X2V74YvsLnmTurpiaxgAdt2Gw+5A0234A+00NTcQMSPWsKOKRU6AYLCNjZufZmfxy5SUvk97oMEagmJquJxu7DY7qqrQ2tZCU1MDpnlsBzl1jXvZuuN5CotfobR8ubUZAEXtPGNvwzANWlqaaG5utIb12onM2flbqazawPbCFyne/SoV+z60RHVSolcJdJ1QKEhzcwP+YMAadFSxGD+xyEmMxuyRjM8fyiVnz6S6rolf/el5qmp7HjOZ6Uncds2F/Puh23jivpvJzU63hgCgaxpXXDCPx399I88/fAdLHr6Dv/7y25xz6pTDFha97dsfCPHbx/+PHcXlzJ0ymsXnzrGGCCHECSeFylEMTk/E53Ghqj3/ERCfTwrRM6OZg6aRP+JCxo/9GlMnfpsZU25GVT6Z7gJQsW8zpWVrKdm7jA2bnu7W1hcnOme447S4qugMyT6F0aMWMXHs1UyddAMzJnWfgmSaJrv3rKKsbA279rzFzuJXu7X3ltJxJt7rHUzusLMoyL+cSeOvYfrk7zB5/Ne7xba1NrBnz0pKy9ewo/Dlbm19EYucKtH3KylpOCPzOqcgfYvpU24hO2t2t9ia2hL2lq1mb9kKtm5f0q2tL070+CEGOWMxZg/H53Vz9aIFqIrKC2+s7LFIyc1O566bL+fBH13D7Mn52PTuv5ODOew6d3zjIi45axYJcR4URUFVFJITfFx9yYJDCou+9N3JHwjx2JI3aWxtY+G8SYzKzbSGCCHECSWFihDHQFF0srPmUlCwiGFD55KdOYGMjFEMzhiBx9P9jGV5+Vq27VjCrj1v0NRc1q2tL054zo7FE+PGfJn8kecwdMgssrLGkzF4JClpOR1B0RgT2LLtObYXvkBJ6buYpnFQR33QcVZ47OjLGJF7BkOHTCMrYxyDB48gOWlIt9C2YD1btj/HzqKXKK9c3a2tT2KSUwUUJo+7mtxh8xmSHZ3ylDE4j5Skod1CGxpL2bp9CUW7XqWqelu3tr444eMnFjljMWYPY8HMsWQNSmbjjhKWrT30fVMVha9efBpjR+YQihi8v2YLre2Hv2I2Z8poxucPpbG5jYeefIXLbrqfK299gH/93/sEwxHOmjORoZlpcAx9H2xvRTX/W74Br9vJhWfMOOyVGiGEOBFO+kIlNzudH317Mf+6/7ssfeROljx8B4/9+gauuGAeuvbJfODkBC8P/+wb/Op7X2bk0AzuveNrLPn97TzfEX/KjLFdsYsWzmLpI3ey9JE7mT9tDABXnD+/67Glj9x5xEvo4rPDbvcyfsxizj7955xz9n24XWkoKB1X2Ey8Hh9Opxu73UHEMAgE/Ghq94+V2bUyoXdikdMXN4gZU67l3LPvY8a0q7HpHtSuPk08bi9OpwvdZiMcDhMOBrs93zT6PlUnLW0082bdwnkLH2D4sHnYNHdXm67puN0eHA4nqqYSCoUwOhc+dLD8Z6/EImde7qksmP8Dzlv4WzIzJmDTHSiKgqIo+OIScLk82O1OMBWCgQB0XIX4RN+SxmL8xCJnLMZsb/ncTk6dMY42f5BX3/3wkHEEYJgmH24pZv223dz880d55TBxnSaMHoamqrz89lqWrd1KOBLBHwjx4v9W88GH24j3uZlYMAyOoW+r91Zvoaa+mTEjsikYnm1tFkKIE+akLlSSE7zces2FTB6Ti8tlh44zSYlxXi45axZXXDDf+hSGZqbz05suJy9nEKqmonTEX3XJaXKZWxxiXMEicobMweGIx+tKxuX0Ybd5UVC6zsCGQ0GKd3/Arl3L2Lr9ZRqauu/boHbcUaq3YpFz6sSvk5Y2Fl134fNm4LC78XUsaDY7DnCaW2opLHqP4t3vsHVn94XRnTG9Fe/LZMaUb5KQMBSb7sLjTcFh95AQH72CYRI9iKyp3UNR8XsUFv+PrTte6N6J0bczvbHImZM9m4JRF+HxpOOwx+F2JaJrbpzOhG5n8MvKN1C8exk7il5jl+VWxYe7W9bhxGL8xCLniR6zfTEyN4u05Hiqahsp2ltpbe7yyjsf8otHllBd12RtOoTP48LEpM3fveAC2FW6H8M0yMn85CYEfenbqqq2kR27y/G4HOTnZVmbhRDihOnbX4YBqKmljVfe+ZCbf/44i264hytvfYDX3v8I0zCZVJCLz+3sFu+w6+i6yqvvfcSVtz7Arb/6GwdqGvB5XIzu+EJe+voqFt1wD4tuuIdl67YC8PR/lnU9tuiGe7jq9ofYXXagW9/isycttQDDMAAVVbPjcsShqjo+36CuW9q2tdexeeu/2VH0IqVlyw45A65Y5uIfTSxyul0pGIaBomjYdAdOu6/r8kHnLV5r6wrZtuN5Cov/S3nlSksPfZOaFn2NhmGgqhoO3YWuObDr0RMOnWsb9patYtvOFyje/Qb7D2y29NK3qTqxyNn1XpqgaTpOuxdNsxPvy+x6LwG27VjK9p1L2V3y9iH7fph9PICPxfiJRc4TPWb7IntwMg67TklFNYFg2Np8TPZV1aGpGhefOYPx+UNRFQWf28niL8xh8Rdmox10W+b+sK24HMM0GJ7T9zvNCSFEf+nbX8ABprahhR/e/y/+vvRtyvfXQMdiwHdWbaY1EMRm07Dbu//xC4bC/PuV5Ty+5C38gRB7K6pZv203iqKgaSf1r0McB5FIhEgkQjgcJBBoo6FpP+3tzdQ1lnTFmAdthGF3eBkyZBZ5uaeh667og3080IxlzlAoiN/fSkPzAerrrTt6f3Jm3+NJY3juaWRmTERRPjkw7DVT/SRnOEirv5GW1lpq6ku7hR3cbVJSHiOHn0FiQvSEQp/Ph8cgp2GYHflCBIJ+mlpraW2rp75hzycxptFt2lPG4AmMHH4GHk8S8Mli/96K5fiJRc4TNmb7IHNQCoqisL+6ztp0zP63fAP1TS2kpyTw0+9cxpKH7+CJ+27m8vPmkpzgs4Z/anUNLYRCBnG+jvdHCCFioG9/GQagcaNy+OVtV/LMg7d1rR+57/tXHXIlpVNtQzPL1m7p9lhdY0u3/xaiU3VNMYYRPQBrb2+kubWWin1bqKvd1RXTefjlixvMaXO/z8SxX2LCmMtJiM/Crvd9g7dY5GxsrsIwIoRC7bS219HSUktNXVG3mM4rDoMHT+D0U/4fBfkXM37Mpdh0L7q9bwczNbU7CYWDGEYEv7+FltY6GluqOVAVvYLZqTNnQf6FzJ15M6NHXcTQ7NnR9Qh9nBIVi5x19SUYRqQjZxMtLTXUNlRSWraqK8Y0DBRFQdcdzJ11C1MnXUNB/iUMTh+NXff2ee1GLMZPLHKe6DHbF7rWt3HSG3srqvnVH59nW1EZ4Uh0mmI4EmHH7nLeX7MF0zQJR/o2Vo6kvrGZUEceIYSIlZO6UJk7ZTTf/+Yi8nOzsNv6Nm1AiN7YUfgCtXWltPvbaGtvoaa2jJ27ut+WtvPQYFz+F7HZPADougOvKwlNt+Ow9+0gLBY5i4r+Q2NzLX5/Oy2tTVQe2M6Gzf/sFqMADoePiWO+hGFEUBQdu92D15WMTXV0iz2ahsYSine9SVtbE/6An+aWRvbsXc6uPf/rFqcoGqkpo8kdeiqGEUFTbTidPjyuRJKT87rFHk0scu7Z+zYVlZto97fR7m+jsbGa4l2vUt/4yRUVRVEwTZXhuaeTEJ+DYUbQNTtuZzxOp4eUpL7ljMX4iUXOEz1mB4LdZQf48YNPc9lN97Pohnu47Kb7+dFvnyIYjmCaJnsr+m86ssflQJPb8gshYuzkLlSmFuB02CgqqeS2X/29a/3I7b95guY2vzVciD5r9zfw0YY/8sHKu1m28i7WffwgigIj8s4gKTG6CFvpmBefkDA0ugbCBFAwjAiRSBiH/ZM7S/VGLHLW1O1gzbr7WLbyLj5YeTcbNz/GoPRxjBx+Jk5n9ADSAOJ9Q1FUW8e6CwMFCEeCmBEDo4+b9O0te4/lq3/FshU/Y/mqu9lb+jZDsmcwPHcBWseeD4qikpSY17W2xDSji6DD4SD+HjbzO5pY5Ny64+noe7niLlau/Q0NjbvIG3YqOUNmdUwzU1AUNVqkGEbHFCkFTJNwOEQ41G7t8ohiMX5ikTMWY7a3yvfXAjAoNTp973gaPTyL6eOHU9/Uxvqtu63Nx2xQWhIOu35Mi/GFEKK/nNSFirdjeld1fRP7a+rRNY0ZE0dy3eVn4XH1z9myto57z58+azxjR3TfU0F8/owcfjanzLmNMfkXMiJ3AXbdg2azAdDQdCA6Zz4YwO9vpqGlirb2BvYd2GTtpk9ikXPW9OuZMfU6CvIvYkjWZGw2DwrQ1h7NF4lECAYDtLY10thczYGaXcewguMTXncKp867g0njr2TcmMWkpY5E16MHru3+xq6cgWA7La31NLXWUFfXfW1JX8UiZ3raGE6b/wPGFlzC5AlfRdfc6JqOgkJbazRnOBzGH2ilqbWa5pZ66ho+WedxLGIxfmKR80SP2SMpKa/GHwgxNDMVh2WdZH/QNY2RQzP41pfO5sc3XIbP7eLtVRupONB/a2LyhgxCVVTKKqPrP4UQIhZO6kJlU2EJhmEwe1I+Tz1wK8/+/nvccd3FjBya0W+bVG3cXkK7P0h6SgJ33fIl2UflcywpMZeRw79AJGKAYsNh9+FyxhMfH72tdWnZMsKhIIYRpt3fTEtLLcW73u22cLqvYpEzb9gCkpNGEYkYaKoDlyMep81HSvJIWlqrKKtYhxEJE44EaWtvpKmlmj2l71m76ZPR+RdhtydgGKDrLjzOROy6G5czgdKyD6ir2/vJeoS2emrryigqfs3aTZ/EIueEsV8CUwM07DYPHmcSuuYBTEpK36W9rRHDiBAItNLSWs++A1sOvUVyH8Ri/MQiZyzG7JEUllRSXddIRloSE0dH9zbpycF7dnWurfS5ndz3/atY+sidPPPgbcybVgAH7QW29JE7efb33+PXt3+FM+dOxKapvL16M0v+u+KY+7byed3k52bS2NzGh5uLrc1CCHHCnNSFyguvr+aND9Z37bhrRAxKK2t49Nk3++0s0NpNRTz5wjscqGnAiPTt1qTisyUxYVjXwmiF6J49JiahQCsA5RWr2brzBaqqiqmtKWF3yXtsLzz2g0xilDMhfgiGEcE0ouNdQY0esIejU5C27VjC7r0fUFNbQlV1IVu2PUdp2XJLL30T35nTNFE6pkKZZgSnI3o3o3XrH6G8cj11daXs27+Fjzc+Rv1Bd5Q6Fic6Z2LCMHTd1fG7PXjfEJNgqJWmln18vPlv7N+/ndq6vZRVfMi6j/9o6aVvYjF+YpEzFmP2SJpb2li5fgd2m8YpM8b124mzToZp0tTSxtpNRfy/B5/mz0+/3qcNHY/mC6dMIjM9iR27yimpqLI2CyHECaMMy4jvv283IWIgNzudn9x0Oeu37uKhJ7pv6tafhmTPZfTICwDQNDv2jjn11dU7WbHmt5bo/hGLnONGX0FGxkQAbDYXdt2JYUYoK1/LRxv/Zg3vF3Nm3Y7XnQooOOxudN1OJBJk45bnKCl93xreL050Trc7hXmz7gBAVTXsdg+aqtLe3sRrb33PGt4vYjF+YpEzFmP2aHxeN3fffDmDUhP56zNv8O6a7nebHKhyMlP58Y2XoqDwm7+8QFHJ4TesFEKI4+2kvqIixIm0/8AGWppromdqQ+20tdbR1FRF+b6PrKH9JhY5Kw98RDAUwDAiBAIttLTVUlNXxq49b1tD+82BA5sJR0Id04GaaGmtpWLftuNSMHQ60Tnb2mqoOug2vm1t9TQ311BW8bE1tN/EYvzEImcsxuzRNLe0sfT1VRiGyVcuPpXRwwf+Du9Oh41rF59JvMfNa+9/LEWKECLmtESf82fWB4U4mSTGezllxlj2V9ezZkOhtbnfRCJBGptKcDkzMIH29kZKy5dTWnZ8DmyJUc729loCwRYctkSMiElLSzWFu1+mvqH/7ihkVVdfjE33oaouwpEQDY0VbCt8jnDH1J3jIRY5a+u243Smg2kjEGijuqaQbTv/bQ3rN7EYP7HIGYsx2xul+2qw2TQm5Q8jPy+bj7bs6pqqPNA4HTa+85VzmVAwjOUfbufJF945TrcaEEKI3pOpX+Kkd6KmfgkhxLG49Nw55Odm8bu//4fmljZr84CgKgo3fuUcVFXl4X++2rWppBBCxJIUKkIIIYQQQogBR9aoCCGEEEIIIQYcKVSEEEIIIYQQA44UKkIIIYQQQogBRwoVIYQQQgghxIAjhYoQQgghhBBiwJFCRQghhBBCCDHgSKEihBBCCCGEGHBkHxVx0juRGz4mxOeQkjwGlzMBm82LTXfR0lrK1h0vWkP7TSxypqdNID4uB4cjHrvNg6452VH8PI2N5dbQfqEoKpkZM/F5BmFzxGHXPdhtdlau/Z01tN/EIqfLnUxG2iQcziTsdi823Y2uwqoPH7aG9ptYjJ9Y5BRCCPHZoyX6nD+zPijEySQx3sspM8ayv7qeNRsKrc39avbMmxk8aAxJidkkJmbg8yUTjoQpq1hjDe03JzpnYvwwpk+9jtTkPJKSskhIGITPl0xt7R6amius4f1i9KiLGT3ybJJThpGcmEl8fBoeVzw7il6zhvabWOScNPar5OTMIiU5h8TETOLjUtE0G8V73rGG9psTPX6IUU4hhBCfPTL1S4g+cDpc2Gx2NE3vekxB6RbTKS4uk+G5X2BM/mVMGv91pk/5DpMnXmcNO6oTnVNV7TgcTnSbDVXVuh5XlJ5zJifnM3L4eYwruJLJE7/BjKk3M3TIXGvYESmo2O1OdM2GokS/lozD5AOFrMzZ5I+4iPFjvsyUSdczY+rN1qCjiklOVcFud6Bpetd7aBzmmrbDGcfQIadRMOqLTBx3FVMn38CMqd+xhh3ViR4/xChnb1167hzuvuUKEuO81qYB5WT5OYUQ4nj6TBYqudnpPHHfzTz8s2+QnCBf8qL/mB0HlZX7trNj51ts3PwS24t6nm42fuyVjBxxJnnDZpEzZDKZGfnEe1OtYUcVi5wApmmyu2QF27a/wfqNz1FdvcMagsudxLTJ1zBi+OkMGzqDnOwJZAweicsZbw3tFX97C4VF77J1+2ts2PistRmAvKFnMW7MJQzPO5VhQ6czJGssGYNHWsN67UTm7KxJ6uvK2bHzLTZv/S9bt/c8Hapg5GIK8s8jL3ceOUOmkJ1ZQFLCYGvYUcVi/MQiZ29cfNZMLj5zJnFeFzbbJ0X4QKMqCknxPkbnZnLr1y/A6bBZQ4QQ4nPhM1moCHG8dJ5wL9r9KtsLX2R3yZvU1RVbwwCw6zYcdgeabsMfaKepuYGIGbGGHVUscgIEg21s3Pw0O4tfpqT0fdoDDdYQFFPD5XRjt9lRVYXWthaamhowzZ7Pnh9NXeNetu54nsLiVygtX25tBkBRO8/Y2zBMg5aWJpqbG61hvXYic3b+ViqrNrC98EWKd79Kxb4PLVGdlOiVLV0nFArS3NyAPxiwBh1VLMZPLHIezfj8oVxy9kyq65r41Z+ep6q25/cvMz2J2665kH8/dBtP3Hczudnp1hAWLZzF0kfuPOK/g0+UdZ48s8Z0/lu0cFa3/g3T5K/PvMHyj7aTPzyLb15+Nuphr/YJIcRnlxQqQhwDhejZ2MxB08gfcSHjx36NqRO/zYwpN6Mqn0x3AajYt5nSsrWU7F3Ghk1Pd2vrixOdM9xxWlxVdIZkn8LoUYuYOPZqpk66gRmTuk9BMk2T3XtWUVa2hl173mJn8avd2ntL6TgT7/UOJnfYWRTkX86k8dcwffJ3mDz+691i21ob2LNnJaXla9hR+HK3tr6IRU6V6PuVlDSckXmd0+a+xfQpt5CdNbtbbE1tCXvLVrO3bAVbty/p1tYXJ3r8EKOcPfF53Vy9aAGqovLCGyt7LFJys9O56+bLefBH1zB7cj42vfvPd6IZpsnflr5D+b4aZk4axZypo60hQgjxmSeFihDHQFF0srPmUlCwiGFD55KdOYGMjFEMzhiBx9P9DGx5+Vq27VjCrj1v0NRc1q2tL054zo7FE+PGfJn8kecwdMgssrLGkzF4JClpOR1B0RgT2LLtObYXvkBJ6buYpnFQR33QcdZ47OjLGJF7BkOHTCMrYxyDB48gOWlIt9C2YD1btj/HzqKXKK9c3a2tT2KSUwUUJo+7mtxh8xmSHZ3ylDE4j5Skod1CGxpL2bp9CUW7XqWqelu3tr444eMnRjl7smDmWLIGJbNxRwnL1h76O1QVha9efBpjR+YQihi8v2YLre2Hv3q19PVVLLrhnh7/PfvqcgzDoKikktqGlm7P27mn4pD4RTfcw9LXV3WL69Tc0sYL/4uOswsWTJMpYEKIz52TvlDRNY0rLpjHY7++gSUP38HSR+7kV9/7Mh6XwxrKzVedxzMP3sa8aQVMGz+cP971TZY8fAdLfn87P77x0kMWLfq8bq6/YiH/uP8Wlj5yJ0sevoO//vLbnHPqFLkM/zlht3sZP2YxZ5/+c845+z7crjQUFFRVAUy8Hh9Opxu73UHEMAgE/Ghq94+V2bUyoXdikdMXN4gZU67l3LPvY8a0q7HpHtSuPk08bi9OpwvdZiMcDhMOBrs93zT6PlUnLW0082bdwnkLH2D4sHnYNHdXm67puN0eHA4nqqYSCoUwOhc+dLD8Z6/EImde7qksmP8Dzlv4WzIzJmDTHSiKgqIo+OIScLk82O1OMBWCgQB0XIX4RN+SxmL8xCJnb/ncTk6dMY42f5BX3/3wkPeUjqsXH24pZv223dz880d55TBxR5OZnsSCmeNpafPz+rL11uZjsnZjIaWV1WRnpDB7cr61WQghPtNO6kLF6bDx/268lEvOmkVinLereLDp+hELiXnTCvjetReRnpKAqiiomsrE0cO48avndD0vLTmeX956JWfMmdBV9KiKQnKCj69/8XS+89Vzj5hDfDaMK1hEzpA5OBzxeF3JuJw+7DYvCkrXVYNwKEjx7g/YtWsZW7e/TENT971G1I47SvVWLHJOnfh10tLGousufN4MHHY3vo4FzWbHAVtzSy2FRe9RvPsdtu7svjC6M6a34n2ZzJjyTRIShmLTXXi8KTjsHhLio1cwTKKFT03tHoqK36Ow+H9s3fFC906Mvn3+YpEzJ3s2BaMuwuNJx2GPw+1KRNfcOJ0J3a46lZVvoHj3MnYUvcYuy62KD3e3rMOJxfiJRc7eGpmbRVpyPFW1jRTtrbQ2d3nlnQ/5xSNLqK5rsjb12umzJ5CS6GPNxiJ27u6fW3kHgmHWbSpG1zTGjeq8kimEEJ8Px+cvwwly9rxJjBmeRWNzGw89+QqX3XQ/i2+8l9/8ZelhL9vbbTpTxuRR39jKfY+9xOIb7+WPT72GPxAiJzOVzEHJAHzp/HlkpidxoKaBu/7wLItvvJerbn+I15d9jGmYTBs3gokFudbuxWdMWmoBhmEAKqpmx+WIQ1V1fL5BXbe0bWuvY/PWf7Oj6EVKy5YdcgZcsczFP5pY5HS7UjAMA0XRsOkOnHZf1+WDztsS19YVsm3H8xQW/5fyypWWHvomNS36Gg3DQFU1HLoLXXNg1+1w0NqGvWWr2LbzBYp3v8H+A5stvfRtelkscna9lyZomo7T7kXT7MT7MrveS4BtO5ayfedSdpe8fcheNWYfD+BjMX5ikbO3sgcn47DrlFRUEwiGrc39JiczlfnTC2hsbuP19z+2NgMwalhm1wL6px64lV/ediWTx+RZww6xc3c57YEgWYNScNiPz+9JCCEGor79BRxAVEVh+oQRRAyDp15+n2VrtxKORDBMk9r65iNett+wfQ+33/Mkq9fvxDBNPtqym9qGZnRdx6ZrDEpNpCAvmzZ/gD8/8wabdpRgmCbNbX4ef+4t1m3ZhctlZ8zI7vPXxWdPJBIhEokQDgcJBNpoaNpPe3szdY0lXTHmQRth2B1ehgyZRV7uaei6K/pgHw80Y5kzFAri97fS0HyA+nrrLvSfnNn3eNIYnnsamRkTUZTD77FyWKb6Sc5wkFZ/Iy2ttdTUl3YLO7jbpKQ8Rg4/g8SELDjkMLcXYpDTMMyOfCECQT9NrbW0ttVT37DnkxjT6DbtKWPwBEYOPwOPJwn4ZLF/b8Vy/JzInL2VOSgFRVHYX11nbepXXzhlCgk+D2s2FlJSUWVtPoTTYSM/N4s7v3kxl547x9rcTUNzG4FgCJfTjtfttDYLIcRn1vH5y3ACJMZ7iPd58PuD7C49YG0+om3FZTS3tHX9d0NTCzfd/ShX3f4Qu8sO4HbacTjt1NQ1s6d0f7fnGqbJrtJ9ACTFe7q1ic+e6ppiDCN6ANbe3khzay0V+7ZQV7urK6bz8MsXN5jT5n6fiWO/xIQxl5MQn4Vd7/s+PrHI2dhchWFECIXaaW2vo6Wllpq6om4xnVccBg+ewOmn/D8K8i9m/JhLseledHvHwWYv1dTuJBQOYhgR/P4WWlrraGyp5kDV1m5xnTkL8i9k7sybGT3qIoZmz46uoenjlKhY5KyrL8EwIh05m2hpqaG2oZLSsk8WT5uGgaIo6LqDubNuYeqkayjIv4TB6aOx694+r92IxfiJRc7e0rW+vWfHYlRuJjMmjKChuZU3Pjh0bcrusgNcdftDXYvnL7vpfn72+39TtHcfmqpy2oxxpCUffu+htnY//kDI+rAQQnzmnbSFSqewYRAx+jYdo7fCkQjB8PGbKiAGvh2FL1BbV0q7v4229hZqasvYuav7bWk7D8DG5X8Rmy1avOq6A68rCU2347D37SAsFjmLiv5DY3Mtfn87La1NVB7YzobN/+wWowAOh4+JY76EYURQFB273YPXlYxNPfTmFUfS0FhC8a43aWtrwh/w09zSyJ69y9m153/d4hRFIzVlNLlDT8UwImiqDafTh8eVSHLy0afMHCwWOffsfZuKyk20+9to97fR2FhN8a5XqW/85IqKoiiYpsrw3NNJiM/BMCPomh23Mx6n00NKUt9yxmL8xCLnQLJw/iR8HhdrNxaxt6La2nyIcCTC5p17efy5t2htD+ByOY54pcRms2HTrDdZEEKIz76TtlAJBsOEQhEcdhsJvk/u3AMwbcIIPI7ovPNjEQpHCIfDpCXHMyIno1ubqijkDRmMaZpU7D++UwlE7LX7G/howx/5YOXdLFt5F+s+fhBFgRF5Z5CUGJ36p3RMM0xIGBpdA2ECKBhGhEgkjMPefXweTSxy1tTtYM26+1i28i4+WHk3Gzc/xqD0cYwcfiZOZ/QA0gDifUNRVFvHugsDBQhHgpgRA6OPm/TtLXuP5at/xbIVP2P5qrvZW/o2Q7JnMDx3AVrHHhaKopKUmNe1tsQ0owv3w+Eg/h42oDyaWOTcuuPp6Hu54i5Wrv0NDY27yBt2KjlDZnVMM1NQFDVapBhGxxQpBUyTcDhEONRu7fKIYjF+YpGzt8r31wIwKDU6la6/jc8fytRxw6mpb+a/7x5u886euZ12NEUlHA4TCh/+85Oa6MPtdtDS2k59Y6u1WQghPrNO2kKluc1P5YFa3E4HV154CqlJcSTGefnu1efzxbNmoWrH/tIq9tdSvq8Wr9vJN750NuPzh6IqColxXm6+6jymjc2jsbmNDzf3vNOy+OwaOfxsTplzG2PyL2RE7gLsugfNFt3boKHpQHQ9QjCA399MQ0sVbe0N7DuwydpNn8Qi56zp1zNj6nUU5F/EkKzJ2GweFKCtPZovEokQDAZobWuksbmaAzW7jmEFxye87hROnXcHk8Zfybgxi0lLHYmuRw9c2/2NXTkDwXZaWutpaq2hrq772pK+ikXO9LQxnDb/B4wtuITJE76KrrnRNR0FhbbWaM5wOIw/0EpTazXNLfXUNXyyzuNYxGL8xCLn4ZSUV+MPhBiamdrvC9FVRWHh/Mm4HHZWfryDigO9O3nldNg4c84EbvjKObhcdgr37KOio6DqSe6QQTjtNvZV1x9x/aUQQnzWHPvR/ADw/tqttPuDjBiawZ9/fj2P/foG5k4toLq+mfqm7htt9YVhmjz76nIam1vJTE/ip9+5jCUP39HVv4HJG8vX92rBpPjsSErMZeTwLxCJGKDYcNh9uJzxxMdnAlBatoxwKIhhhGn3N9PSUkvxrne7LZzuq1jkzBu2gOSkUUQiBprqwOWIx2nzkZI8kpbWKsoq1mFEwoQjQdraG2lqqWZP6XvWbvpkdP5F2O0JGAbouguPMxG77sblTKC07APq6vZ+soamrZ7aujKKil+zdtMnscg5YeyXwNQADbvNg8eZhK55AJOS0ndpb2vEMCIEAq20tNaz78CWQ2+R3AexGD+xyHkkhSWVVNc1kpGWxMTRw6zNXRYtnNV1R677vn8VPrcTn9vJfd+/iqWP3Nm1B9fBpo4bzvhROdTUN/P2yo3d2g42b1oBzzx4W7c7fn3rioUkJ/jYXXaAJ5a+fdgCRFUUJhXkEgxFWL1+p7VZCCE+007qQmXtpiIefe5N6ptaME0TfyDE+2u28Ju/PP+pFx5uLy7nF48sYVtRGcFQdJ2KETEorazh/sde4rn/rrA+RXzGJSYM61oYrXQcQJiYhALRqRjlFavZuvMFqqqKqa0pYXfJe2wvPPaDTGKUMyF+CIYRwexY+6WgRg/Yw9EpSNt2LGH33g+oqS2hqrqQLdueo7RsuaWXvonvzGmaKB1ToUwzgtPhA2Dd+kcor1xPXV0p+/Zv4eONj1F/0B2ljsWJzpmYMAxdd3X8bg/eN8QkGGqlqWUfH2/+G/v3b6e2bi9lFR+y7uM/Wnrpm1iMn1jkPJLmljZWrt+B3aZxyoxx/bb/laoonHPqFJwOW5+uptCxRqVsXw2PL3mLH9z3T6pqG60hXeZMHc2o3EzK99ewYfvxKeaEEGKgUoZlxPd8GkeIk0Rudjo/uely1m/dxUNPdN+IsD8NyZ7L6JEXAKBpduwdc+qrq3eyYs1vLdH9IxY5x42+goyMiQDYbC7suhPDjFBWvpaPNv7NGt4v5sy6Ha87FVBw2N3oup1IJMjGLc9RUvq+NbxfnOicbncK82bdAYCqatjtHjRVpb29idfe+p41vF/EYvzEIufR+Lxu7r75cgalJvLXZ97g3TVbrCEDUufPnZacwJ+eeo3lH223hgghxGfaSX1FRYgTaf+BDbQ013RNB2prraOpqYryfR9ZQ/tNLHJWHviIYCjQMQWphZa2Wmrqyti1521raL85cGAz4UioYzpQEy2ttVTs23ZcCoZOJzpnW1sNVQfdxretrZ7m5hrKKnreHLA/xGL8xCLn0TS3tLH09VUYhslXLj6V0cOj++IMZKqi8PVFC8ganMKqDTulSBFCfC5piT7nz6wPCnEySYz3csqMseyvrmfNhkJrc7+JRII0NpXgcmZgAu3tjZSWL6e07Pgc2BKjnO3ttQSCLThsiRgRk5aWagp3v0x9w25raL+pqy/GpvtQVRfhSIiGxgq2FT5HuGO62fEQi5y1ddtxOtPBtBEItFFdU8i2nf+2hvWbWIyfWOTsjdJ9NdhsGpPyh5Gfl81HW3bR2h6whg0IqqLwtUsWcPqs8ezYVcFDT/yHcOT43IZfCCEGMpn6JU56J2rqlxDi5HfpuXPIz83id3//T7eNfweay86bS0FeFvc//vKA/jmFEOJ4kkJFCCGEEEIIMeDIGhUhhBBCCCHEgCOFihBCCCGEEGLAkUJFCCGEEEIIMeBIoSKEEEIIIYQYcKRQEUIIIYQQQgw4UqgIIYQQQgghBhy5PbE46Z3IfVQS4nNISR6Dy5mAzebFprtoaS1l644XraH9JhY509MmEB+Xg8MRj93mQdec7Ch+nsbGcmtov1AUlcyMmfg8g7A54rDrHuw2OyvX/s4a2m9ikdPlTiYjbRIOZxJ2uxeb7kZXYdWHD1tD+00sxo8QQgjRH2RnenHSO1E70wPMnnkzgweNISkxm8TEDHy+ZMKRMGUVa6yh/eZE50yMH8b0qdeRmpxHUlIWCQmD8PmSqa3dQ1NzhTW8X4wedTGjR55NcsowkhMziY9Pw+OKZ0fRa9bQfhOLnJPGfpWcnFmkJOeQmJhJfFwqmmajeM871tB+c6LHjxBCCNFfZOqXEH3gdLiw2exomt71mILSLaZTXFwmw3O/wJj8y5g0/utMn/IdJk+8zhp2VCc6p6racTic6DYbqqp1Pa4oPedMTs5n5PDzGFdwJZMnfoMZU29m6JC51rAjUlCx253omg1FiX4tGYfJBwpZmbPJH3ER48d8mSmTrmfG1JutQUcVk5yqgt3uQNP0rvfQOMw1bYczjqFDTqNg1BeZOO4qpk6+gRlTv2MNO6oTPX76Yv70Mdz3/avIzU63Ng0oo4dn8dsfXs2UscOtTUIIIY4jKVSE6AOz46Cyct92dux8i42bX2J7Uc/TzcaPvZKRI84kb9gscoZMJjMjn3hvqjXsqGKRE8A0TXaXrGDb9jdYv/E5qqt3WENwuZOYNvkaRgw/nWFDZ5CTPYGMwSNxOeOtob3ib2+hsOhdtm5/jQ0bn7U2A5A39CzGjbmE4XmnMmzodIZkjSVj8EhrWK+dyJydNUl9XTk7dr7F5q3/Zev2nqdgFYxcTEH+eeTlziNnyBSyMwtIShhsDTuqWI2fo5kzZTTXLD6DxHgPDofN2jygJMX7SEmM44YvL2T08CxrsxBCiONEChUh+qDzhHvR7lfZXvgiu0vepK6u2BoGgF234bA70HQb/kA7Tc0NRMyINeyoYpETIBhsY+Pmp9lZ/DIlpe/THmiwhqCYGi6nG7vNjqoqtLa10NTUgGn2fMb+aOoa97J1x/MUFr9CaflyazMAitp5lcCGYRq0tDTR3NxoDeu1E5mz87dSWbWB7YUvUrz7VSr2fWiJ6qREr2zpOqFQkObmBvzBgDXoqGI1fo4kMz2Jr1x0KpFIhN8+/n9sL+557VNinJdrFp/Bv+7/Ls88eBvzphVYQwC4+arzWPrInT3+e/hn3yA5wWt9SpfTZozlmQdvY+kjd/Kr733Z2gzAio+28/fn38Jht3P9FV8gLfnYCnEhhBB9I4WKEMdAITolKnPQNPJHXMj4sV9j6sRvM2PKzajKJ1NsACr2baa0bC0le5exYdPT3dr64kTnDHecilcVnSHZpzB61CImjr2aqZNuYMak7lOQTNNk955VlJWtYdeet9hZ/Gq39t5SOs7+e72DyR12FgX5lzNp/DVMn/wdJo//erfYttYG9uxZSWn5GnYUvtytrS9ikVMl+n4lJQ1nZF7ntLlvMX3KLWRnze4WW1Nbwt6y1ewtW8HW7Uu6tfXFiR4/h6MqCl9ffAbJ8V7eWL6hxyIlNSmO2665kD/9/Jucc+oUXC67NaRf5GSmcuVFp6DrGmbnpafDeG/NVt5fu4WMtES+dP48a7MQQojjQAoVIY6BouhkZ82loGARw4bOJTtzAhkZoxicMQKPp/t8+/LytWzbsYRde96gqbmsW1tfnPCcHYsnxo35Mvkjz2HokFlkZY0nY/BIUtJyOoKiMSawZdtzbC98gZLSdzFN46CO+qDj9P/Y0ZcxIvcMhg6ZRlbGOAYPHkFy0pBuoW3BerZsf46dRS9RXrm6W1ufxCSnCihMHnc1ucPmMyQ7Os0qY3AeKUlDu4U2NJaydfsSina9SlX1tm5tfXHCx89hTBs/nPzcLEoqqvi/N3te0L9o4WxmT85HURTWbiqipq7JGnKIYCjMg0/8h0U33NPt340/+yu1DS3WcJwOG9cuPpN4j5tVH+8gFD76laOlr69kf00DU8cNZ3x+9/dJCCFE/zvpCxVd07jignk8/usbef7hO1jy8B388a5vMm28LHoUn57d7mX8mMWcffrPOefs+3C70lBQUFUFMPF6fDidbux2BxHDIBDwo6ndP1Zm18qE3olFTl/cIGZMuZZzz76PGdOuxqZ7ULv6NPG4vTidLnSbjXA4TDgY7PZ80zj6QZ5VWtpo5s26hfMWPsDwYfOwae6uNl3Tcbs9OBxOVE0lFAphWM54H+UEeI9ikTMv91QWzP8B5y38LZkZE7DpDhRFQVEUfHEJuFwe7HYnmArBQAA6rnx8om9JYzF++uLs+ZPRNIXXln2MPxCyNgPw8ZZdbCsq48cPPM1jz/6PUKTv4+toLjxzBqPyMlj+0XY+3LLL2tyj2oYWVq/ficth5+y5E63NQggh+tlJXag47Dp3fOMiLjlrFglxHhRFQVUU0lMSuOPai/niwu5TKIToq3EFi8gZMgeHIx6vKxmX04fd5kVB6bpqEA4FKd79Abt2LWPr9pdpaOo+lUXtuKNUb8Ui59SJXyctbSy67sLnzcBhd+PrWETdOSWmuaWWwqL3KN79Dlt3dl+MfbRpM1bxvkxmTPkmCQlDsekuPN4UHHYPCfHRKxgm0QPTmto9FBW/R2Hx/9i644X/z96dx0dV34v/f52ZM2dmMpNMNgLZV0I29iUiIKAgVm1dKO5tXarWUqu3Vu1ye6+2195aa6/2it97/bW9dtMWBK11XyoiIIsLCNn3BQJJZrJNZiaTmTO/PyYJzIFABgMT8PN8PPjD+bznvE3mJDmf83m/Pyf0IGp4fTCRyJmZfj5F067EYpmMUYkhyhyHrI/CZIoNWXVqad1Dbf0WKmtep06zVfFoO3SNJhLnz1ilJyeSkZJIT6+L8uOUfA3b9VkNP3niOaobD2qHxsWMgiwuXz6PQx3d/Pnvm8M6f3fsqcbp8pCZlnTC3hdBEATh8zs9f43OkJWLZzG7MId2ey+/+N+NrPnOL7nxe7/mhTe24/X5uej8GaLpUfhckiYVoaoqoEOnVzAbY9DpZKKjp4xsaetyO9hX9lcqa16kuWXLMXfAJU39/8lEImeUORFVVZEkPQbZiEmJHlk+GN6W2O6oprzyBaprX6X14HbNEcIzKSn4Naqqik6nxyibkfVGFDnYizDcT9HU8iHlVZuorX+TQ4f3aY4SXnlZJHKOfJYB0OtlTIoVvV7BFp068lkClFdupKJqI/WN7x7zrJpAmJOGSJw/Y5U+JZEok4kORy+HOrq0w5+LYpC59+Yvs3Hdg2z4zf38fz9fy82rLyTaemTVDCAh1so3r1mB3+fnf55/87hlYSfS0tZBh6MXW3QUKUnx2mFBEARhHIX3F3CCmVOci9fn5w+b3mX3Z7WogQCegUGe/8cH7KtqwhZtIS8j/O08BWGY3+/H7/fj83kZGHDR3XsIt7sPR0/jSEzgqAdhKEYrGRkLyc1Zjiybgy+GeaEZyZyDg148nn66+w7T1aW9433kzr7FkkReznJSU2YhSaM/Y2VUAd2RnD4v/Z4enP12OruaQ8KOPmx8fC75eSuIiw1uDzv2e+BDIpBTVQND+QYZ8Hro7bfT7+qiq7vhSExADSm1SkmeSX7eCiyW4EXwcLP/WEXi/BmrpEQbikFPR1f4O6aFQ6fXEW+z8uUL5/Oze68fuWGlkyRuumIZUybF8voHn1JeE37/zYDXR1+/G1mvJ9YmVlQEQRBOp9Pz1+gMiI2xkhgXg8lo4IE7rj5mS8r5M/JQDHqSEsWKinDqOjprUdXgRZ/b3UNfv50Dbftx2I/UtA9f8kXHJLN88Q+YVXI9M4uvI9aWhiKHfyETiZw9fe2oqp/BQTf9bgdOp51OR01IzPCKQ3LyTC5a+q8UFVzFjOJrMMhWZGXoAneMOu1VDPq8qKofj8eJs99Bj7ODw+1lIXHDOYsKrmDxefdQOO1KstLPD/bQhFkSFYmcjq5GVNU/lLMXp7MTe/dBmls+HIkJqCqSJCHLRhYvvJd5s2+jqOBqkicXosjWsPtFInH+jJVerwt/UjsGTz77SkgD/R0/XsfGN7fj9nhJm5LAxUP9JEsXFHPe7Gnsq2pmw6vbtIcZs56+fu1LgiAIwmlw1k5U9DqGmkMF4fSprN6E3dGM2+PC5XbSaW+hqi50W9rhi77pBV/FYLAAIMtGrOZ49LKCUQnvwi8SOWtq/kFPnx2Px42zv5eDhyvYs+9PITESYDRGM6v4elTVjyTJKIoFqzkBg84YEnsy3T2N1Na9jcvVi2fAQ5+zh4amrdQ1vBUSJ0l6JiUWkpO1DFX1o9cZMJmisZjjSEjIDYk9mUjkbGh6lwMHP8PtceH2uOjp6aC27jW6eo6sqEiSRCCgIy/nImJtmagBP7JeIcpkw2SykBgfXs5InD8Tjb3byXMvf8DHZXVIkkRCXDQAMwqzUAwyswqz2fDUAyM3tu69+csoBplp2alsXPcgzz52DznpoTuhHc1sDO98FwRBEE7NWTtRsXc76XW6cHkGeOjJ54/ZknL12kf56nd+yUujbH8pCGPh9nTz8Z6n+WD7T9my/WF2f/IEkgRTc1cQHxdswpaGejliY7OCPRABAAlV9eP3+zAqoTXyJxOJnJ2OSnbufowt2x/mg+0/Ze++3zJl8nTy81ZiMgUvWlXAFp2FpDMM9V2oSIDP7yXgV1HDfDBgU8tmtu74OVu2PcTWD39KU/O7ZKSXkpdzIXo52CMhSTri43JHeksCgWDjvs/nxXOcB1CeTCRyllU+F/wstz3M9l2/oLunjtzsZWRmLBwqM5OQJF1wkqKqQ2VZEgQC+HyD+Abd2kOeUCTOn7Fqt/fgHfQxKe70r3TrJAnz0BPvXe7wH5Q5GqMikxAXjXfQx6GO8M8HQRAEYezO2okKQHlNC2ajwrduuISFs6dhGvqjJAinS37eKpYuuo/igiuYmnMhimxBbwied929h4P9CN4BPJ4+up3tuNzdtB3+THuYsEQi58IFd1E673aKCq4kI20OBoMFCXC5g/n8fj9e7wD9rh56+jo43Fl3Ch0cR1ijElm25AFmz7iR6cVrSJqUjywHL5bdnp6RnANeN87+Lnr7O3E4QntLwhWJnJOTill+wQ8pKbqaOTO/jqyPQtbLSEi4+oM5fT4fnoF+evs76HN24eg+0ltyKiJx/oymsbWdfreHSfExTJkUpx0eN1mpSdx32xXMLszB5Rlg595gGaO2RGz43xPP/gPvoI+qhgOsXvsoN9//JPUth7WHBSB5UjzxNit9/W4c3Sd/vosgCIJw6s7qicrr739Ma5udKZPi+P43r+Qvv/5eSJ/KUw/dIbaPFMZNfFwO+Xlfwu9XQTJgVKIxm2zYbKkANLdswTfoRVV9uD19OJ12auveC2mcDlckcuZmX0hC/DT8fhW9zojZaMNkiCYxIR9nfzstB3aj+n34/F5c7h56nR00NG/WHiYshQVXoiixqCrIshmLKQ5FjsJsiqW55QMcjqYjPTSuLuyOFmpqX9ceJiyRyDmz5HoI6AE9isGCxRSPrLcAARqb38Pt6kFV/QwM9OPs76Lt8P5jt0gOQyTOnxM5cMhOa5ud+FgrpTOnaodHLJlfxPNP3MfGdQ/yzCNrSZ4UF7Kr18Z1D7L6koUj8T///k0hv/sf/9EtnDd7Gj5VZdObO/is8vNN9o42szCLGKuZ/dXNYe8YJgiCIITnrJ6o2Lud/OTJ53ln2176+t1h7YUvCOGKi80eaYyWhkpLAgQYHAg21rYe2EFZ1Sba22uxdzZS37iZiupTv8gkQjljbRmoqp+AGtyKV0IXvGD3BUuQyis3UN/0AZ32Rto7qtlfvp7mlq2ao4THNpwzEEAaKoUKBPyYjMHegt2frqP14Kc4HM20HdrPJ3t/S9dRu1idijOdMy42G1k2D31vj35WSQDvYD+9zjY+2fd7Dh2qwO5oouXAR+z+5GnNUcITifPnRNRAgHc//AyfX2Xx3MLTsgoeCATo63ezc0813//P/+PFt3ZoQ05ZQqyVlYtn4fJ42bq7XDssCIIgjDMpO8Umru6Fs1pO+mT+7bvX8WlZHU8+G/ogwvGUkb6YwvyvAKDXKyhDdfwdHVVs2/m4Jnp8RCLn9MIbSEkJ7pJkMJhRZBNqwE9L6y4+3vt7bfi4WLTwfqxRkwAJoxKFLCv4/V727l9PY/P72vBxcaZzRkUlsmThAwDodHoUxYJep8Pt7uX1d76vDR8XkTh/TkYnSfx47RpmTMvkxbd28tw/tmhDJqw7rruYlYtn8f6uMp7646vaYUEQBGGcndUrKoJwJh06vAdnX+dIOZCr30FvbzutbR9rQ8dNJHIePPwx3sGBoRIkJ06XnU5HC3UN72pDx83hw/vw+QeHSpB6cfbbOdBWflomDMPOdE6Xq5P2o7YOdrm66OvrpOXAJ9rQcROJ8+dk1ECAv76ylV6nm8uWz2NZabE2ZEJaVlrM0gUltLU7eP7l03OOCIIgCKH0cdGmh7QvCsLZJM5mZWlpCYc6uti5p1o7PG78fi89vY2YTSkEALe7h+bWrTS3nL6LlkjkdLvtDHidGA1xqP4ATmcH1fUv09Vdrw0dN46uWgxyNDqdGZ9/kO6eA5RXr8c3VG52OkQip91Rgck0GQIGBgZcdHRWU171V23YuInE+TMWju4+ep39zC3JoyQ/g+rGg3Q6Jm5j+tySPO687mJ8fj9P/uEVmg92akMEQRCE00CUfglnvTNV+iUIwvi6YEExly2by5PPvsLBdod2eMIozEvj9msu5tlN/xzXxnxBEAThxMRERRAEQRAEQRCECUf0qAiCIAiCIAiCMOGIiYogCIIgCIIgCBOOmKgIgiAIgiAIgjDhiImKIAiCIAiCIAgTjpioCIIgCIIgCIIw4YiJiiAIgiAIgiAIE46YqAiCIAiCIAiCMOGI56gIZ70z+cDHWFsmiQnFmE2xGAxWDLIZZ38zZZUvakPHTSRyTk6aiS0mE6PRhmKwIOtNVNa+QE9PqzZ0XEiSjtSU84i2TMFgjEGRLSgGhe27/ksbOm4ikdMclUBK0myMpngUxYpBjkLWwYcfPaUNHTeROH8EQRAEYTzo46JND2lfFISzSZzNytLSEg51dLFzT7V2eFydf949JE8pJj4unbi4FKKjE/D5fbQc2KkNHTdnOmecLZsF825nUkIu8fFpxMZOITo6Abu9gd6+A9rwcVE47SoK81eRkJhNQlwqNlsSFrONyprXtaHjJhI5Z5d8nczMhSQmZBIXl4otZhJ6vYHahn9qQ8fNmT5/BEEQBGG8iNIvQQiDyWjGYFDQ6+WR1ySkkJhhMTGp5OV8ieKCa5k941YWzL2bObNu14ad1JnOqdMpGI0mZIMBnU4/8rokHT9nQkIB+XmXM73oRubMuoPSefeQlbFYG3ZCEjoUxYSsNyBJwV9L6ij5QCIt9XwKpl7JjOKbmDv7Lkrn3aMNOqmI5NRJKIoRvV4e+QzVUda0jaYYsjKWUzTtq8yafjPz5qyldN7d2rCTOtPnTzguWFDMYz+4mZz0ydqhCaUwL43Hf3QLc0vytEOCIAjCafSFmagkxFp56qE7eOqhO0iItWqHBWFMAkMXlQfbKqiseoe9+16ioub45WYzSm4kf+pKcrMXkpkxh9SUAmzWSdqwk4pEToBAIEB94zbKK97k073r6eio1IZgjopn/pzbmJp3EdlZpWSmzyQlOR+zyaYNHROP20l1zXuUVbzOnr1/0w4DkJt1MdOLryYvdxnZWQvISCshJTlfGzZmZzLn8Jyky9FKZdU77Ct7lbKK45dgFeWvoajgcnJzlpCZMZf01CLiY5O1YScVqfPnZBbNLeS2NSuIs1kwGg3a4Qkl3hZNYlwMa2+6hMK8NO2wIAiCcJqcExOVa760iGd/+V2uuvg87ZAgjKvhG+419a9RUf0i9Y1v43DUasMAUGQDRsWIXjbgGXDT29eNP+DXhp1UJHICeL0u9u57jqral2lsfh/3QLc2BCmgx2yKQjEo6HQS/S4nvb3dBALHv2N/Mo6eJsoqX6C69hWaW7dqhwGQdMOrBAbUgIrT2UtfX482bMzOZM7h78rB9j1UVL9Ibf1rHGj7SBM1TAqubMkyg4Ne+vq68XgHtEEnFanz50RSJ8fztSuX4ff7efx3f6ei9vi9T3ExVm5bs4I//+pfeP6J+1gyv0gbcgyT0cAj993IxnUPHvc9OemTefaxe9i47sHj/lt9ycKQeIBtH1fwfy+8g1FRuOuGL5GUcGoTcUEQBCE858REJXlyHNEWMzrdqV0cCUK4JIIlUalT5lMw9QpmlHyDebO+Tence9BJR0psAA607aO5ZReNTVvY89lzIWPhONM5fUO34nWSTEb6UgqnrWZWyS3Mm72W0tmhJUiBQID6hg9padlJXcM7VNW+FjI+VtLQ3X+rNZmc7IspKriO2TNuY8Gcu5kz49aQWFd/Nw0N22lu3Ull9cshY+GIRE4dwc8rPj6P/NzhsrlvsWDuvaSnnR8S22lvpKllB00t2yir2BAyFo4zff6MRidJ3LpmBQk2K29u3XPcScqk+Bjuu+0K/t/P7uTSZXMxmxVtyKi+ftVy8rNTUYeXksbJ5p1lvL9rPylJcVz/5SXaYUEQBOE0OCcmKoJwpkmSTHraYoqKVpOdtZj01JmkpEwjOWUqFktovX1r6y7KKzdQ1/AmvX0tIWPhOOM5h5onphffREH+pWRlLCQtbQYpyfkkJmUOBQVjAsD+8vVUVG+isfk9AgH1qAOFYej2f0nhtUzNWUFWxnzSUqaTnDyVhPiMkFCXt4v9FeupqnmJ1oM7QsbCEpGcOkBizvRbyMm+gIz0YJlVSnIuifFZIaHdPc2UVWygpu412jvKQ8bCccbPn1HMn5FHQU4ajQfa+fvbx2/oX33J+Zw/pwBJktj1WQ2djl5tyHEtKy1m6YISWts6aWxt1w6HqGo4wOq1jx7zb+MbH2pDR2x8YzuHOruZNz2PGQWhn5MgCIIw/s7aicrqSxaOLNVfML8YgBu+fEHIEv6zj91z3CbNOFs0/3b3tWz4zf288NQD/M/P7uK82dO0YURbo7jrhkv446/uZeO6B9nw1AM888i3uXTZXHSaptt7br78hGUGP//+TSGvC2cHRbEyo3gNqy76GZeueowocxIS0tDqXQCrJRqTKQpFMeJXVQYGPOh1oT9WgZHOhLGJRM7omCmUzv0ml616jNL5t2CQLehGjhnAEmXFZDIjGwz4fD58Xm/I+wNq+OVBSUmFLFl4L5df8mvyspdg0EeNjMl6magoC0ajCZ1ex+Dg4DF3yE/lhnkkcubmLOPCC37I5Zc8TmrKTAyyEUmSkCSJ6JhYzGYLimKCgIR3YACGVj6OCC9pJM6fcKy6YA56vcTrWz7BMzCoHQbgk/11lNe08JNfP8dv//YWg/6Tn19JCTauXnU+A14vz/ztLQZ9Pm3I52bvdrLj0yrMRoVVi2dphwVBEIRxdtZOVE6VLTqKn3znGmYWZKHT65AkiUnxMXzzmhVkph5pGk1KsPHI925kxaKZWMxGGCpZSIiN5tavXsTdX7/smMmKcO6ZXrSazIxFGI02rOYEzKZoFIMVCWlk1cA36KW2/gPq6rZQVvEy3b2hpSy6oR2lxioSOefNupWkpBJk2Uy0NQWjEkX0UBN1YOjqvM9pp7pmM7X1/6SsKrQZezhmrGzRqZTOvZPY2CwMshmLNRGjYiHWFlzBCBC8MO20N1BTu5nq2rcoq9wUehA1vJ+/SOTMTD+fomlXYrFMxqjEEGWOQ9ZHYTLFhqw6tbTuobZ+C5U1r1On2ap4tB26RhOJ82es0pMTyUhJpKfXRflxSr6G7fqshp888RzVjQe1Q8elkyRuXn0RyYmxvLb5k+OWk42XHXuqcbo8ZKYliY1ZBEEQTrPT89foDNj4xocjS/VbdpcB8Nw/toQs4d98/5PUtxwOeV+UyUiUUeH19z/mxu/9mu/9/Pcc7uwmNtrC7KKckbjrv7yE1MnxHO7s5uH//htrvvNLbr7/Sd7Y8gkBNcD86VOZdVS8cG5KmlSEqqqADp1ewWyMQaeTiY6eMrKlrcvtYF/ZX6mseZHmli3H3AGXNPX/JxOJnFHmRFRVRZL0GGQjJiV6ZPlgeFtiu6Oa8soXqK59ldaD2zVHCM+kpODXqKoqOp0eo2xG1htR5GAvwnA/RVPLh5RXbaK2/k0OHd6nOUp45WWRyDnyWQZAr5cxKVb0egVbdOrIZwlQXrmRiqqN1De+e8yzagJhThoicf6MVfqURKJMJjocvRzq6NIOn7KrVy1kfkku2z+tZNObo5duHW1adurI6vtffv09HrnvRuYU52rDjtHS1kGHoxdbdBQpSfHaYUEQBGEchfcX8Bzg8/vZ8OZ2frv+HTwDgzQd6ODT8nokSUKvD347pkyKoyg3HZdngP95/k0+q2xEDQToc3n43fp32L2/DrNZoTg/tH5dOPf4/X78fj8+n5eBARfdvYdwu/tw9DSOxASOehCGYrSSkbGQ3JzlyLI5+GKYF5qRzDk46MXj6ae77zBdXdq70kfu7FssSeTlLCc1ZRaSNPozVkYV0B3J6fPS7+nB2W+ns6s5JOzow8bH55Kft4K42OD2sOGt4UQmp6oGhvINMuD10Ntvp9/VRVd3w5GYgBpSapWSPJP8vBVYLMGL4OFm/7GKxPkzVkmJNhSDno6u8HdMG01hXhqXLptDW2c3f3l5yzHlemNhMhooyEnjwTuv4prLFmmHQwx4ffT1u5H1emJtYkVFEAThdDo9f40msA5HL+9u2xvymqPHGfLfUSYFo0mh09FHQ/OhkDE1EKCuuQ2AeJslZEw493R01qKqwYs+t7uHvn47B9r247DXjcQMXxZFxySzfPEPmFVyPTOLryPWloYih38hE4mcPX3tqKqfwUE3/W4HTqedTkdNSMzwikNy8kwuWvqvFBVcxYziazDIVmRl6AJ3jDrtVQz6vKiqH4/HibPfQY+zg8PtwdXRYcM5iwquYPF591A47Uqy0s8P9tCEWRIViZyOrkZU1T+UsxensxN790GaW47c9Q+oKpIkIctGFi+8l3mzb6Oo4GqSJxeiyNaw+0Uicf6MlX6o3Ha8mIwGbrpiKYrBwJ9f2ky7/eQToPqWw9x8/5MjK+/XfvdXPPSbv1LT1IZep2N56fSTbj/c09evfUkQBEE4Db5wE5Vw+Px+vKehIVM4e1RWb8LuaMbtceFyO+m0t1BVF7ot7fBF3/SCr2IwBCevsmzEao5HLysYlfAu/CKRs6bmH/T02fF43Dj7ezl4uII9+/4UEiMBRmM0s4qvR1X9SJKMoliwmhMw6IJ9XGPV3dNIbd3buFy9eAY89Dl7aGjaSl3DWyFxkqRnUmIhOVnLUFU/ep0BkykaizmOhISTl+kcLRI5G5re5cDBz3B7XLg9Lnp6Oqite42uniMrKpIkEQjoyMu5iFhbJmrAj6xXiDLZMJksJMaHlzMS50+kpCTFkzolEbNJ4cE7rw7ZTGVadiqKQebem7/MxnUPcs/Nl2vfDkO/5/dVNfG79e/Q7x7AbDZijTJpw0KYjeGd74IgCMKpEROV4xj0+fH5fCQl2JiamRIyppMkcjOSCQQCHDjkCBkzyHoSYqNDYpcuKMFiHPszAISJxe3p5uM9T/PB9p+yZfvD7P7kCSQJpuauID4uWPonDZWaxMZmBXsgAgASqurH7/dhVI7sLDUWkcjZ6ahk5+7H2LL9YT7Y/lP27vstUyZPJz9vJSZT8KJVBWzRWUg6w1DfhYoE+PxeAn4VNcwHAza1bGbrjp+zZdtDbP3wpzQ1v0tGeil5OReil4M9EpKkIz4ud6S3JBAINu77fF48x3kA5clEImdZ5XPBz3Lbw2zf9Qu6e+rIzV5GZsbCoTIzCUnSBScpqjpUliVBIIDPN4hv0K095AlF4vwZq3Z7D95BH5PiTrxiEQlRJgW9pMPn8zHoG/1cNioyCXHReAd9HOoI/3wQBEEQxu6cmKi43MGnNV+0cAYlUz9/38iBQ3Za2+xYo0zccf0qZhRkoZMk4mKs3HPz5cwvyaWnz8VH+4483dnlHkCSJBbNKWBSfMxI7KVL56Ab6n0Rzn75eatYuug+iguuYGrOhSiyBb3BAEB37+FgP4J3AI+nj25nOy53N22HP9MeJiyRyLlwwV2UzrudooIryUibg8FgQQJc7mA+v9+P1ztAv6uHnr4ODnfWnUIHxxHWqESWLXmA2TNuZHrxGpIm5SPLwYtlt6dnJOeA142zv4ve/k4cjtDeknBFIufkpGKWX/BDSoquZs7MryPro5D1MhISrv5gTp/Ph2egn97+DvqcXTi6j/SWnIpInD+jaWxtp9/tYVJ8DFMmxWmHw6Yt4zr6X1XDAbyDPp549h+sXvsoTz4bulPdMJPRwMpFM1n7tUsxmxWqG9o4cMiuDRuRPCmeeJuVvn43ju6xPd9FEARBODXnxBX03opG3B4vkxNjefje60/6HJWTUQMB/vbaVnr6+kmdHM+/330tG556gN/+51oWzytCJcCbWz+l8cCRB4oN/z/kZEzhf35210isa8CLyxOcSAlnt/i4HPLzvoTfr4JkwKhEYzbZsNlSAWhu2YJv0Iuq+nB7+nA67dTWvRfSOB2uSOTMzb6QhPhp+P0qep0Rs9GGyRBNYkI+zv52Wg7sRvX78Pm9uNw99Do7aGjerD1MWAoLrkRRYlFVkGUzFlMcihyF2RRLc8sHOBxNR3poXF3YHS3U1L6uPUxYIpFzZsn1ENADehSDBYspHllvAQI0Nr+H29WDqvoZGOjH2d9F2+H9x26RHIZInD8nMnwTKD7WSunMqdrhEUvmF/H8E/excd2DPPPIWpInxYWUcW1c9yCrL1mofduYHH3s4R2/vnXDJSTERlPfcphnN757wob8mYVZxFjN7K9uxt4d2t8oCIIgjK9zYqKy67Ma/rDpnxzu7Eb1h7d96Ggqalv5j3UbKK9pwTsY7FNR/SrNBzv51W9fYv2r20Lid31Ww99e3Uqv0wVDdc97Khr42VPr6ekLviac3eJis0cao6Wh0r4AAQYHgo21rQd2UFa1ifb2WuydjdQ3bqai+tQvMolQzlhbBqrqJ6AGf5YkdMELdl+wBKm8cgP1TR/QaW+kvaOa/eXraW7ZqjlKeGzDOQMBpKFSqEDAj8kYLKXc/ek6Wg9+isPRTNuh/Xyy97d0HbWL1ak40znjYrORZfPQ9/boZ5UE8A720+ts45N9v+fQoQrsjiZaDnzE7k+e1hwlPJE4f05EDQR498PP8PlVFs8txGQMruxEks/vp6Wtk99teIcfPvanEzbkJ8RaWbl4Fi6Pl627y7XDgiAIwjiTslNso986EoSzQE76ZP7tu9fxaVndqOUd4yEjfTGF+V8BQK9XUIbq+Ds6qti283FN9PiIRM7phTeQkhJ86rbBYEaRTagBPy2tu/h47++14eNi0cL7sUZNAiSMShSyrOD3e9m7fz2Nze9rw8fFmc4ZFZXIkoUPAKDT6VEUC3qdDre7l9ff+b42fFxE4vw5GZ0k8eO1a5gxLZMX39rJc//Yog2ZsO647mJWLp7F+7vKeOqPr2qHBUEQhHF2TqyoCMKZcOjwHpx9nSPlQK5+B7297bS2fawNHTeRyHnw8Md4BweGSpCcOF12Oh0t1DW8qw0dN4cP78PnHxwqQerF2W/nQFv5aZkwDDvTOV2uTtqP2jrY5eqir6+TlgOfaEPHTSTOn5NRAwH++spWep1uLls+j2WlxdqQCWlZaTFLF5TQ1u7g+ZdPzzkiCIIghNLHRZse0r4oCGeTOJuVpaUlHOroYueeau3wuPH7vfT0NmI2pRAA3O4emlu30txy+i5aIpHT7bYz4HViNMSh+gM4nR1U179MV3e9NnTcOLpqMcjR6HRmfP5BunsOUF69Ht9QudnpEImcdkcFJtNkCBgYGHDR0VlNedVftWHjJhLnz1g4uvvodfYztySPkvwMqhsP0umYuI3pc0vyuPO6i/H5/Tz5h1doPtipDREEQRBOA1H6JZz1zlTplyAI4+uCBcVctmwuTz77CgfbQ7d7n0gK89K4/ZqLeXbTP/ms8tT7lARBEITwiImKIAiCIAiCIAgTjuhREQRBEARBEARhwhETFUEQBEEQBEEQJhwxUREEQRAEQRAEYcIRExVBEARBEARBECYcMVERBEEQBEEQBGHCERMVQRAEQRAEQRAmHLE9sXDWO5PPUYm1ZZKYUIzZFIvBYMUgm3H2N1NW+aI2dNxEIufkpJnYYjIxGm0oBguy3kRl7Qv09LRqQ8eFJOlITTmPaMsUDMYYFNmCYlDYvuu/tKHjJhI5zVEJpCTNxmiKR1GsGOQoZB18+NFT2tBxE4nzRxAEQRDGg3gyvXDWO1NPpgc4/7x7SJ5STHxcOnFxKURHJ+Dz+2g5sFMbOm7OdM44WzYL5t3OpIRc4uPTiI2dQnR0AnZ7A719B7Th46Jw2lUU5q8iITGbhLhUbLYkLGYblTWva0PHTSRyzi75OpmZC0lMyCQuLhVbzCT0egO1Df/Uho6bM33+CIIgCMJ4EaVfghAGk9GMwaCg18sjr0lIITHDYmJSycv5EsUF1zJ7xq0smHs3c2bdrg07qTOdU6dTMBpNyAYDOp1+5HVJOn7OhIQC8vMuZ3rRjcyZdQel8+4hK2OxNuyEJHQoiglZb0CSgr+W1FHygURa6vkUTL2SGcU3MXf2XZTOu0cbdFIRyamTUBQjer088hmqo6xpG00xZGUsp2jaV5k1/WbmzVlL6by7tWEndabPn3BcsKCYx35wMznpk7VDE0phXhqP/+gW5pbkaYcEQRCE0+icmqisXDSTpx++kw2/uZ+N6x5k47oHeeqhO0iItWpDBeGUBIYuKg+2VVBZ9Q57971ERc3xy81mlNxI/tSV5GYvJDNjDqkpBdisk7RhJxWJnACBQID6xm2UV7zJp3vX09FRqQ3BHBXP/Dm3MTXvIrKzSslMn0lKcj5mk00bOiYet5Pqmvcoq3idPXv/ph0GIDfrYqYXX01e7jKysxaQkVZCSnK+NmzMzmTO4TlJl6OVyqp32Ff2KmUVxy/BKspfQ1HB5eTmLCEzYy7pqUXExyZrw04qUufPySyaW8hta1YQZ7NgNBq0wxNKvC2axLgY1t50CYV5adphQRAE4TQ5ZyYqKxfP4tY1K5icGItOP/qXpZMk5s/I41c/vIUNTz3Az79/kzZEEEY1fMO9pv41KqpfpL7xbRyOWm0YAIpswKgY0csGPANuevu68Qf82rCTikROAK/Xxd59z1FV+zKNze/jHujWhiAF9JhNUSgGBZ1Oot/lpLe3m0Dg+HfsT8bR00RZ5QtU175Cc+tW7TAAkm54lcCAGlBxOnvp6+vRho3Zmcw5/F052L6HiuoXqa1/jQNtH2mihknBlS1ZZnDQS19fNx7vgDbopCJ1/pxI6uR4vnblMvx+P4//7u9U1B6/9ykuxspta1bw51/9C88/cR9L5hdpQ45hMhp45L4b2bjuwVHfI+v13PCVJfzuP7/DC089wIanHuDph7/FykUztaEAbPu4gv974R2MisJdN3yJpIRTm4gLgiAI4Rn9iv4sopMklpUWI+t1vL9zPzff/ySr1z7K6rWP8p2HnsHe7UQnSSwvLeGph+7kwTuuJjstCd2oZR6CcGISwZKo1CnzKZh6BTNKvsG8Wd+mdO496KQjJTYAB9r20dyyi8amLez57LmQsXCc6Zy+oVvxOkkmI30phdNWM6vkFubNXkvp7NASpEAgQH3Dh7S07KSu4R2qal8LGR8raejuv9WaTE72xRQVXMfsGbexYM7dzJlxa0isq7+bhobtNLfupLL65ZCxcEQip47g5xUfn0d+7nDZ3LdYMPde0tPOD4nttDfS1LKDppZtlFVsCBkLx5k+f0ajkyRuXbOCBJuVN7fuOe4kZVJ8DPfddgX/72d3cumyuZjNijZkVF+/ajn52amow0tJGjpJ4nu3foWrL15IbIwFSZLQSRKTE23cce3FXHv58csWN+8s4/1d+0lJiuP6Ly/RDguCIAinwTkxUYmzWbBFW+hxunjx7Z30uTzaEDJSJnHTlcuYnGijs6uPrR9XaEMEYcwkSSY9bTFFRavJzlpMeupMUlKmkZwyFYsltN6+tXUX5ZUbqGt4k96+lpCxcJzxnEPNE9OLb6Ig/1KyMhaSljaDlOR8EpMyh4KCMQFgf/l6Kqo30dj8HoGAetSBwjB086Ck8Fqm5qwgK2M+aSnTSU6eSkJ8Rkioy9vF/or1VNW8ROvBHSFjYYlITh0gMWf6LeRkX0BGerDMKiU5l8T4rJDQ7p5myio2UFP3Gu0d5SFj4Tjj588o5s/IoyAnjcYD7fz97eM39K++5HzOn1OAJEns+qyGTkevNuS4lpUWs3RBCa1tnTS2tmuHAVi5aBZzSnLwDAzypxff49rv/opv/nAdO/fWIOkkVi6aSWbq8cvdNr6xnUOd3cybnseMgtDPSRAEQRh/58REZZhnYBCX+9hJCkDzwQ6qGg7y4ls7+M5Dz9B8sEMbIgjHUBQrM4rXsOqin3HpqseIMichIaHTSUAAqyUakykKRTHiV1UGBjzodaE/VoGRzoSxiUTO6JgplM79JpeteozS+bdgkC3oRo4ZwBJlxWQyIxsM+Hw+fF5vyPsDavjlQUlJhSxZeC+XX/Jr8rKXYNBHjYzJepmoKAtGowmdXsfg4OAxd8hHuWF+QpHImZuzjAsv+CGXX/I4qSkzMchGJElCkiSiY2Ixmy0oigkCEt6BARha+TgivKSROH/CseqCOej1Eq9v+QTPwKB2GIBP9tdRXtPCT379HL/921sM+k9+fiUl2Lh61fkMeL0887e3GPT5tCHoJIkLSovQ63S8tvljXnpnFz6/n65eJ//vuTdoPWTHZo1i+rThiXgoe7eTHZ9WYTYqrFo8SzssCIIgjLOzdqKyZH4Rzz9xHxvXPcgzj6wleVIcyZPieOaRtSON9BvXPcjqSxYCoAYC/PKZTfz57+/jG8MfPUEAmF60msyMRRiNNqzmBMymaBSDFQlpZNXAN+iltv4D6uq2UFbxMt29oaUsuqEdpcYqEjnnzbqVpKQSZNlMtDUFoxJF9FATdWDo6rzPaae6ZjO19f+krCq0GXs4Zqxs0amUzr2T2NgsDLIZizURo2Ih1hZcwQgQ/BnttDdQU7uZ6tq3KKvcFHoQNbzSzUjkzEw/n6JpV2KxTMaoxBBljkPWR2EyxYasOrW07qG2fguVNa9Tp9mqeLQdukYTifNnrNKTE8lISaSn10X5cUq+hu36rIafPPEc1Y0HtUPHpZMkbl59EcmJsby2+ZPjlpMBJCXGkhgbQ4/TxQcfHVmdiouxcuvqC5kyKRadTkduxpSQ9x1tx55qnC4PmWlJYqMWQRCE0+z0/DUShHNE0qQiVFUFdOj0CmZjDDqdTHT0lJEtbV1uB/vK/kplzYs0t2w55g64pKn/P5lI5IwyJ6KqKpKkxyAbMSnRI8sHw9sS2x3VlFe+QHXtq7Qe3K45QngmJQW/RlVV0en0GGUzst6IIgd7EYb7KZpaPqS8ahO19W9y6PA+zVHCKy+LRM6RzzIAer2MSbGi1yvYolNHPkuA8sqNVFRtpL7x3WOeVRMIc9IQifNnrNKnJBJlMtHh6OVQR5d2+JRdvWoh80ty2f5pJZve/FA7PCLKpGA0KfQ5PXT3OIm2RnHrmotY9/CdXLCgGIMc/LonJ8Zq3zqipa2DDkcvtugoUpLitcOCIAjCOArvL+AE8sHucq6/93FWr32UO368jraOLto6urjjx+tGGulXr32UjW+M/kdLEE7G7/fj9/vx+bwMDLjo7j2E292Ho6dxJCZw1IMwFKOVjIyF5OYsR5bNwRfDvNCMZM7BQS8eTz/dfYfp6tLelT5yZ99iSSIvZzmpKbOQpNGfsTKqgO5ITp+Xfk8Pzn47nV3NIWFHHzY+Ppf8vBXExQa3hw1vDScyOVU1MJRvkAGvh95+O/2uLrq6G47EBNSQUquU5Jnk563AYgleBA83+49VJM6fsUpKtKEY9HR0hb9j2mgK89K4dNkc2jq7+cvLW44p1zueAa+XL6+Yz3//++1ctmweikFPQ2s7L7yxHe/gsSVjRxvw+ujrdyPr9cTaxIqKIAjC6XR6/hoJwjmio7MWVQ1e9LndPfT12znQth+HvW4kZviyKDommeWLf8CskuuZWXwdsbY0FDn8C5lI5Ozpa0dV/QwOuul3O3A67XQ6akJihlcckpNnctHSf6Wo4CpmFF+DQbYiK0MXuGPUaa9i0OdFVf14PE6c/Q56nB0cbi8LiRvOWVRwBYvPu4fCaVeSlX5+sIcmzJKoSOR0dDWiqv6hnL04nZ3Yuw/S3HLkBkpAVZEkCVk2snjhvcybfRtFBVeTPLkQRbaG3S8SifNnrPR6XfiT2hMwGQ3cdMVSFIOBP7+0mXb72CZAU7NSWL3qfKxmIwcO23n0mU18/z//j9ZDdgBU/4m/5z19/dqXBEEQhNNATFQE4QQqqzdhdzTj9rhwuZ102luoqgvdlnb4kmZ6wVcxGCwAyLIRqzkevaxgVMK78ItEzpqaf9DTZ8fjcePs7+Xg4Qr27PtTSIwEGI3RzCq+HlX1I0kyimLBak7AoDOGxJ5Md08jtXVv43L14hnw0OfsoaFpK3UNb4XESZKeSYmF5GQtQ1X96HUGTKZoLOY4EhJyQ2JPJhI5G5re5cDBz3B7XLg9Lnp6Oqite42uniMrKpIkEQjoyMu5iFhbJmrAj6xXiDLZMJksJMaHlzMS50+kpCTFkzolEbNJ4cE7rw7pT5yWnYpikLn35i+zcd2D3HPz5Qz6/PiGmuw7HL2s+9Nr3Puz37H7s+BzZZKT4lAMMm2dxz4z6GhmY3jnuyAIgnBqxERFEE7A7enm4z1P88H2n7Jl+8Ps/uQJJAmm5q4gPi7YhC0NlZrExmYFeyACABKq6sfv92FUjuwsNRaRyNnpqGTn7sfYsv1hPtj+U/bu+y1TJk8nP28lJlPwolUFbNFZSDrDUN+FigT4/F4CfhU1zAcDNrVsZuuOn7Nl20Ns/fCnNDW/S0Z6KXk5F6If6hWQJB3xcbkjvSWBQLBx3+fz4jnOAyhPJhI5yyqfC36W2x5m+65f0N1TR272MjIzFg6VmUlIki44SVHVobIsCQIBfL5BfINu7SFPKBLnz1i123vwDvqYFBeZBya227uxd/Whqir/3PEZ7+3cP1IqZjIamF+Sh6qqNB04rH3rCKMikxAXjXfQx6GO8M8HQRAEYezEREUQwpCft4qli+6juOAKpuZciCJb0BsMAHT3Hg72I3gH8Hj66Ha243J303b4M+1hwhKJnAsX3EXpvNspKriSjLQ5GAwWJMDlDubz+/14vQP0u3ro6evgcGfdKXRwHGGNSmTZkgeYPeNGphevIWlSPrIcvFh2e3pGcg543Tj7u+jt78ThCO0tCVckck5OKmb5BT+kpOhq5sz8OrI+ClkvIyHh6g/m9Pl8eAb66e3voM/ZhaP7SG/JqYjE+TOaxtZ2+t0eJsXHMGVSnHY4bPUth0Me8Hv0v6qGA3gHfTzx7D9YvfZRnnz2FQa8Pj4uC5bAXbZsHpdfOA9Zrycuxsp3v/FlstMnc9jew4efVGpTjUieFE+8zUpfvxtH99ie7yIIgiCcmi/UROXn379ppCzghi9fAMC07NSR15566A6x3aQwqvi4HPLzvoTfr4JkwKhEYzbZsNlSAWhu2YJv0Iuq+nB7+nA67dTWvRfSOB2uSOTMzb6QhPhp+P0qep0Rs9GGyRBNYkI+zv52Wg7sRvX78Pm9uNw99Do7aGjerD1MWAoLrkRRYlFVkGUzFlMcihyF2RRLc8sHOBxNR3poXF3YHS3U1L6uPUxYIpFzZsn1ENADehSDBYspHllvAQI0Nr+H29WDqvoZGOjH2d9F2+H9x26RHIZInD8ncuCQndY2O/GxVkpnTtUOjzje9vNHl3EdvfV8uF5+ZxeVdQewRpm4ZfVF/O033+e3/7mW0plTGfD6eOH1bdi7ndq3jZhZmEWM1cz+6uYTxgmCIAif3xdqoiIIn0dcbPZIY7Q09OyGAAEGB4KNta0HdlBWtYn29lrsnY3UN26movrULzKJUM5YWwaq6iegBrfildAFL9h9wRKk8soN1Dd9QKe9kfaOavaXr6e5ZavmKOGxDecMBJCGSqECAT8mYzQAuz9dR+vBT3E4mmk7tJ9P9v6WrqN2sToVZzpnXGw2smwe+t4e/aySAN7BfnqdbXyy7/ccOlSB3dFEy4GP2P3J05qjhCcS58+JqIEA7374GT6/yuK5hZiMwZWdM8kzMMgvf/sS72zbS797AADVr9J8sJNf/fYlNu8M3VzhaAmxVlYunoXL42Xr7iPPYREEQRBODyk7xXbq9RqCMAHkpE/m3757HZ+W1fHks6EPIhxPGemLKcz/CgB6vYIyVMff0VHFtp2Pa6LHRyRyTi+8gZSU4FO3DQYzimxCDfhpad3Fx3t/rw0fF4sW3o81ahIgYVSikGUFv9/L3v3raWx+Xxs+Ls50zqioRJYsfAAAnU6PoljQ63S43b28/s73teHjIhLnz8noJIkfr13DjGmZvPjWTp77xxZtyIR1x3UXs3LxLN7fVcZTf3xVOywIgiCMM7GiIghjdOjwHpx9nSPlQK5+B7297bS2fawNHTeRyHnw8Md4BweGSpCcOF12Oh0t1DW8qw0dN4cP78PnHxwqQerF2W/nQFv5aZkwDDvTOV2uTtqP2jrY5eqir6+TlgOfaEPHTSTOn5NRAwH++spWep1uLls+j2WlxdqQCWlZaTFLF5TQ1u7g+ZdPzzkiCIIghNLHRZse0r4oCGeTOJuVpaUlHOroYueeau3wuPH7vfT0NmI2pRAA3O4emlu30txy+i5aIpHT7bYz4HViNMSh+gM4nR1U179MV3e9NnTcOLpqMcjR6HRmfP5BunsOUF69Ht9QudnpEImcdkcFJtNkCBgYGHDR0VlNedVftWHjJhLnz1g4uvvodfYztySPkvwMqhsP0umYuI3pc0vyuPO6i/H5/Tz5h1doPtipDREEQRBOA1H6JZz1zlTplyAI4+uCBcVctmwuTz77CgfbHdrhCaMwL43br7mYZzf9k88qT71PSRAEQQiPmKgIgiAIgiAIgjDhiB4VQRAEQRAEQRAmHDFREQRBEARBEARhwhETFUEQBEEQBEEQJhwxUREEQRAEQRAEYcIRExVBEARBEARBECYcMVERBEEQBEEQBGHCERMVQRAEQRAEQRAmHPEcFeGsdyYf+BhryyQxoRizKRaDwYpBNuPsb6as8kVt6LiJRM7JSTOxxWRiNNpQDBZkvYnK2hfo6WnVho4LSdKRmnIe0ZYpGIwxKLIFxaCwfdd/aUPHTSRymqMSSEmajdEUj6JYMchRyDr48KOntKGCIAiC8IUnVlQEIQxzZn2DgvyVZGeVkpkxk5SUfGy2DG3YuDrTOeNs2cyd9XWm5V1ITtZ8MtKnk5IylRhrqjZ03BTkX8nMktXk5V1ATuZc0tOKSErM1oaNq0jkLJn2VQqmXUpeziKyMueQllqIzZasDRMEQRAEQUxUBCE8JqMZg0FBr5dHXpOQQmKGxcSkkpfzJYoLrmX2jFtZMPdu5sy6XRt2Umc6p06nYDSakA0GdDr9yOuSdPycCQkF5OddzvSiG5kz6w5K591DVsZibdgJSehQFBOy3oAkBX8tqaPkA4m01PMpmHolM4pvYu7suyidd4826KQiklMnoShG9Hp55DNUR1nTNppiyMpYTtG0rzJr+s3Mm7OW0nl3a8PGTVKCjV/c/zUuv3CedmhCKcxL4/Ef3cLckjztkCAIgnCOOacmKisXzeTph+9kw2/uZ+O6B9m47kGeeugOEmKt2lBBOCWBoYvKg20VVFa9w959L1FRc/xysxklN5I/dSW52QvJzJhDakoBNuskbdhJRSInQCAQoL5xG+UVb/Lp3vV0dFRqQzBHxTN/zm1MzbsouOKTPpOU5HzMJps2dEw8bifVNe9RVvE6e/b+TTsMQG7WxUwvvpq83GVkZy0gI62ElOR8bdiYncmcw3OSLkcrlVXvsK/sVcoqjl/CV5S/hqKCy8nNWUJmxlzSU4uIjz09qy9JCTbuv/0qstMnE2U2aocnlHhbNIlxMay96RIK89K0w4IgCMI55JyZqKxcPItb16xgcmIsOv3xvyydJLFqyWyefvhbbHjqAV546gF+95/f4YavLEHWH7lzLAijGb7hXlP/GhXVL1Lf+DYOR602DABFNmBUjOhlA54BN7193fgDfm3YSUUiJ4DX62Lvvueoqn2Zxub3cQ90a0OQAnrMpigUg4JOJ9HvctLb200gMNrKxIk5epooq3yB6tpXaG7dqh0GQNINrzIZUAMqTmcvfX092rAxO5M5h78rB9v3UFH9IrX1r3Gg7SNN1DApuLIlywwOeunr68bjHdAGfW46SeLm1ReRlTKJTW/tYP2r27QhAMh6PSsWzeTph7/FC089wD03X64NgaG4qy4+b+T37MZ1D/LnX/0LP7prNZPiY7ThI3LSJ/Pjb6/hj7+6lxeG3vfz79+kDWPbxxX83wvvYFQU7rrhSyQlnNqkWBAEQZj4jn9Ff5bRSRLLSouR9Tre37mfm+9/ktVrH2X12kf5zkPPYO92YlRkfvCtq7n92pVMTrShkyQkSSI2xsLVFy/kWzdeoj2sIIxKIjixTZ0yn4KpVzCj5BvMm/VtSufeg046UqIFcKBtH80tu2hs2sKez54LGQvHmc7pG1rK0UkyGelLKZy2mlkltzBv9lpKZ4eWIAUCAeobPqSlZSd1De9QVftayPhYSUNLDlZrMjnZF1NUcB2zZ9zGgjl3M2fGrSGxrv5uGhq209y6k8rql0PGwhGJnDqCn1d8fB75ucNlc99iwdx7SU87PyS2095IU8sOmlq2UVaxIWRsPFy6fC7zS3KprD/A39/eqR1G1utZ86VF/O9/3MVdN1zC5ETbqGWAAAvnTOOaSxeN/J4FMJsV5pbk8ZPvXHPMCndwonQh/3n/15hTnIPFbDzh8QE27yzj/V37SUmK4/ovL9EOC4IgCOeIc2KiEmezYIu20ON08eLbO+lzebQhDHh91DYfoqHlML/4342s+c4v+eYP17Fzbw0AswqzSE9O1L5NEI5LkmTS0xZTVLSa7KzFpKfOJCVlGskpU7FYJofEtrbuorxyA3UNb9Lb1xIyFo4znnOoeWJ68U0U5F9KVsZC0tJmkJKcT2JS5lBQMCYA7C9fT0X1Jhqb3yMQUI86UBiGLlBLCq9las4KsjLmk5YyneTkqSTEh24g4PJ2sb9iPVU1L9F6cEfIWFgiklMHSMyZfgs52ReQkR4s00tJziUxPisktLunmbKKDdTUvUZ7R3nI2OcVbY1ixfkz8QwOsuGN7XgGBrUhzC3J4cqVpdiio2hobWd/dZM2JITfp1Lfcohf/n8vcu13f8W13/0VT/7hFfqcLibF2yiaGvo9vXT5XC5bOhe/P8CWXWU88Ms/sOY7v2T12kf50a/+HBJ7tI1vbOdQZzfzpucxoyD0eyYIgiCcG86Jicowz8AgLvexk5Rh61/dxv2P/oHdn9WiBgJ09Tr544vvYe/qw2I2kZWWpH2L8AWnKFZmFK9h1UU/49JVjxFlTkJCQqeTgABWSzQmUxSKYsSvqgwMeNDrQn+sAiOdCWMTiZzRMVMonftNLlv1GKXzb8EgW9CNHDOAJcqKyWRGNhjw+Xz4vN6Q9wfU8MvLkpIKWbLwXi6/5NfkZS/BoI8aGZP1MlFRFoxGEzq9jsHBQdThZp0hmv8ck0jkzM1ZxoUX/JDLL3mc1JSZGOTgioEkSUTHxGI2W1AUEwQkvAMDMLRydsQpJB2jpQuKSJ0cz2cVjXxW2agdBqC87gC1TQf5/Qvv8sAvnsXR49SGhNj+aSU/fvwv7NxTjc/vx+f3s2VXGTVNbQQCwYnMsOGJktfn55m/vsGTf3iFuqZDx3zfj8fe7WTHp1WYjQqrFs/SDguCIAjngLN2orJkfhHPP3EfG9c9yDOPrCV5UhzJk+J45pG1I430G9c9yOpLFmrfelzeQR+HOo6twRe+2KYXrSYzYxFGow2rOQGzKRrFYEVCGlk18A16qa3/gLq6LZRVvEx3b+izRnRDO0qNVSRyzpt1K0lJJciymWhrCkYliuihJvzA0EVjn9NOdc1mauv/SVlVaDP/cMxY2aJTKZ17J7GxWRhkMxZrIkbFQuzQtssBghOfTnsDNbWbqa59i7LKTaEHUU9cHqQViZyZ6edTNO1KLJbJGJUYosxxyPooTKbYkFWnltY91NZvobLmdeoa/hlyjNF2eBsPc4pzCRBgzyiTFIA+p4t/f/KvvLb54zFNILRMRgNXXXweRXkZ1DW18Ul53chYflYKk+JtVDUcYPPOspD3jcWOPdU4XR4y05KOKSkTBEEQzn7hXc2cg2ZOy8IWE8Whji6aD7Zrh4UvuKRJRaiqCujQ6RXMxhh0Opno6CkjW9q63A72lf2VypoXaW7ZcswdcEnTP3IykcgZZU5EVVUkSY9BNmJSokeWD4b7BeyOasorX6C69lVaD27XHCE8k5KCX6Oqquh0eoyyGVlvRJEVOKofp6nlQ8qrNlFb/yaHDu/THCW88rJI5Bz5LAOg18uYFCt6vYItOnXkswQor9xIRdVG6hvfpbfvQMgxAmFOOscqNsZKYlwMLtcANQ0HtcOfS0KslaceuoON6x7kL7/+Hjd85QL2VTXxy9++FFJelp6cgFGR6bD38ONvr+Evv/4eG9c9yIbf3M9//fg2ZhflhBxXq6Wtgw5HL7boKFKS4rXDgiAIwlnu9PwFPAM+2F3O9fc+zuq1j3LHj9fR1tFFW0cXd/x43Ugj/eq1j7LxjQ+1bx1RmJfGtZcvwuUe4NlN/2TA69OGCF9wfr8fv9+Pz+dlYMBFd+8h3O4+HD1H7kAHjnoQhmK0kpGxkNyc5ciyOfhimBeakcw5OOjF4+mnu+8wXV3ap9AfubNvsSSRl7Oc1JRZSNLoz1gZVUB3JKfPS7+nB2e/nc6u5pCwow8bH59Lft4K4mKDW9KGfW8/AjlVNTCUb5ABr4fefjv9ri66uhuOxATUkFK9lOSZ5OetwGIJXngPN/uPt9joKGIsJpzuAfr6XdrhcaWTJOZNz+UHd15FXMyRlQ+9XockSaxYNJM5xTmYjIZgvF5HRkoi9912BQtmTD3qSKEGvD76+t3Iej2xNrGiIgiCcK4J72rmHJKTPpm7v3YZRkXhjy++R0Wt9qJMEKCjsxZVDU4a3O4e+vrtHGjbj8N+pHxl+DoyOiaZ5Yt/wKyS65lZfB2xtjQUOfyLp0jk7OlrR1X9DA666Xc7cDrtdDqCG00MG15xSE6eyUVL/5WigquYUXwNBtmKrAxNkMao017FoM+LqvrxeJw4+x30ODs43B5a/jOcs6jgChafdw+F064kK/38YA9NmCVRkcjp6GpEVf1DOXtxOjuxdx+kueXIDZSAqiJJErJsZPHCe5k3+zaKCq4meXIhimwNu99orHQ6CTS9TePF3u3kOw89w+q1j3Lj937Nf/3fP+js6qMgJ41vXrNCG06fy8OLb+0YudF038//j5rGg5hNCksXFGvDQ/T09WtfEgRBEM4Rp+ev1AQ3oyCLH337q8RYo/jdhrdPqTZa+GKorN6E3dGM2+PC5XbSaW+hqi50W9rhy8jpBV/FYLAAIMtGrOZ49LKCUQlv4hCJnDU1/6Cnz47H48bZ38vBwxXs2fenkBgJMBqjmVV8ParqR5JkFMWC1ZyAQRfeQwK7exqprXsbl6sXz4CHPmcPDU1bqWt4KyROkvRMSiwkJ2sZqupHrzNgMkVjMceRkJAbEnsykcjZ0PQuBw5+htvjwu1x0dPTQW3da3T1HFlRkSSJQEBHXs5FxNoyUQN+ZL1ClMmGyWQhMT68nBONZ2CQrR+Vs+5Pr+LyDBy3n+S1zR/x57+/j7072KjfeKCdv/z9fVyeAeJO0ntiNoZ37gmCIAhnjy/cROXChdN54ParMMgy/++5N/jnh9oadEE4wu3p5uM9T/PB9p+yZfvD7P7kCSQJpuauID4u2IQtDfVyxMZmBXsgAgASqurH7/dhVI7sLDUWkcjZ6ahk5+7H2LL9YT7Y/lP27vstUyZPJz9vJSZT8EJRBWzRWUg6w1DfhYoE+PxeAn4VNcwHSza1bGbrjp+zZdtDbP3wpzQ1v0tGeil5OReil4M9NpKkIz4ud6S3JBAINu77fF48x3kA5clEImdZ5XPBz3Lbw2zf9Qu6e+rIzV5GZsbCoTIzCUnSBScpqjpU1idBIIDPN4hv0K095Ljo6evH2e/GajYSbQnvfDkVHq8PVQ0Ey+GGWn06u/oY9PnIy5gy8syVYVFm40k3hTAqMglx0WIzFEEQhHPUif8KnEN0ksRXLzmf26+9GI/Xy+O/+zvbPq7QhgnCCeXnrWLpovsoLriCqTkXosgW9IZgXX137+FgP4J3AI+nj25nOy53N22HP9MeJiyRyLlwwV2UzrudooIryUibg8FgQQJc7mA+v9+P1ztAv6uHnr4ODnfWnUIHxxHWqESWLXmA2TNuZHrxGpIm5SPLwYtnt6dnJOeA142zv4ve/k4cjtDeknBFIufkpGKWX/BDSoquZs7MryPro5D1MhISrv5gTp/Ph2egn97+DvqcXTi6R9+R6/Owdztpt/cQFWVkanaKdnjcmIwG5hbncuf1q4gyG9lf3UR3b3DlpKK2ha6efqZPy+KmK5dhMhrQSRIzCrL4xtUXYlRkymtGfw5Q8qR44m1W+vrdOLp7tcOCIAjCWU4fF216SPvi2SbKpLD8vOkAbN6xD7cn9BkPANnpk7n9+lVEmRTMRoVlpSVce9nikH8XLChm556q475fmLjibFaWlpZwqKOLnXuqtcPjJj4uh1kzbiIQCKDTGzGbbBgVC5JepqLyHwQCfuJtuSCBz+fF63XR1LydlgOjb+hwMpHImZt9IRnpiwgEAhjkKKJMsch6I2oAKqpfxmiMJdoyGTWgMugbwDPgpL7xHXp6T/0ifub0G7DFZAASimLFYopFQofdUUdt/RvEx+ZjNEajqj4GBz309nVQWfXiKa1wDItEzkWl96DXm9DpZEzGaKKMsfhVleq6t+jtbSIxvgi93oDfP4h30EOnvZY9+/6oPcy4iY2xMLMgC5NRYcuusuNONRNirTz2g5u5bc0Krr1sMZmpwedNZaYmjfzunFWUzbvbg5Pje26+nAduv2pkbPWqhSyZX0RsdBRlNS2s+/Nr+IaWVPrdA1gtJkryMijMS2P1qoVcc+kilpWWYI0yUVHbyv/+9c2ReK2lpcXMn5HHzr01fLB7fB+GKQiCIETeF2ZFRRA+r7jY7JHGaGlolS5AgMGBYDNv64EdlFVtor29FntnI/WNm6mo1jyHI0yRyBlry0BV/QTU4MWhhC7YaO8LliCVV26gvukDOu2NtHdUs798Pc0tWzVHCY9tOGcggDRUChUI+DEZowHY/ek6Wg9+isPRTNuh/Xyy97d0HbUL2qk40znjYrORZfPQ9/boZ90E8A720+ts45N9v+fQoQrsjiZaDnzE7k+e1hxlfG39qJzD9h5yM6dQMi1TOzwufH4/LW2d/P6Fd/mPp9aHbE8MsOHVbfx2wzsc7uxBDQQIBAL09bt55Z8f8cj/23BM/LCEWCsrF8/C5fGydbeYpAiCIJyLpOwU2/FuognCWSMnfTL/9t3r+LSsjiefDX0Q4XjKSF9MYf5XANDrFZShPpCOjiq27XxcEz0+IpFzeuENpKQEn/RtMJhRZBNqwE9L6y4+3vt7bfi4WLTwfqxRkwAJoxKFLCv4/V727l9PY/P72vBxcaZzRkUlsmThAwDodHoUxYJep8Pt7uX1d76vDT9jLr9wHt+4cjnVTQf52XEmEhPVHdddzMrFs3h/VxlP/fFV7bAgCIJwDhArKoIwRocO78HZ1xlcXRh04+p30NvbTmvbx9rQcROJnAcPf4x3cABV9TMw4MTpstPpaKGu4V1t6Lg5fHgfPv8gqurD7enF2W/nQFv5aZkwDDvTOV2uTtqP2nra5eqir6+TlgOfaEPPqLe37qGsrpVp2anced2qY5raJ6JlpcUsXVBCW7uD518+PZ+XIAiCEHnnRI+K8MV2pnpU/H4vPb2NmE0pBAC3u4fm1q00t5y+C6VI5HS77Qx4nRgNcaj+AE5nB9X1L9PVXa8NHTeOrloMcjQ6nRmff5DungOUV6/HN1RudjpEIqfdUYHJNBkCBgYGXHR0VlNe9Vdt2Bnl96uU17YwuziX4rx0JL1EWfWp9xudbnNL8rjzuovx+f08+YdXaD7YqQ0RBEEQzhGi9Es4652p0i9BOJclJdj43q1f4e1te0ca4yeiwrw0br/mYp7d9E8+qzz1niFBEARh4hMTFUEQBEEQBEEQJhzRoyIIgiAIgiAIwoQjJiqCIAiCIAiCIEw4YqIiCIIgCIIgCMKEIyYqgiAIgiAIgiBMOGKiIgiCIAiCIAjChCMmKoIgCIIgCIIgTDhie2LhrHcmn6MSa8skMaEYsykWg8GKQTbj7G+mrPJFbei4iUTOyUkzscVkYjTaUAwWZL2JytoX6Olp1YaOC0nSkZpyHtGWKRiMMSiyBcWgsH3Xf2lDx00kcpqjEkhJmo3RFI+iWDHIUcg6+PCjp7ShgiAIgvCFJ1ZUBCEMc2Z9g4L8lWRnlZKZMZOUlHxstgxt2Lg60znjbNnMnfV1puVdSE7WfDLSp5OSMpUYa6o2dNwU5F/JzJLV5OVdQE7mXNLTikhKzNaGjatI5CyZ9lUKpl1KXs4isjLnkJZaiM2WrA0TBEEQBEFMVAQhPCajGYNBQa+XR16TkEJihsXEpJKX8yWKC65l9oxbWTD3bubMul0bdlJnOqdOp2A0mpANBnQ6/cjrknT8nAkJBeTnXc70ohuZM+sOSufdQ1bGYm3YCUnoUBQTst6AJAV/Lamj5AOJtNTzKZh6JTOKb2Lu7LsonXePNuikIpJTJ6EoRvR6eeQzVEdZ0zaaYsjKWE7RtK8ya/rNzJuzltJ5d2vDxk1Sgo1f3P81Lr9wnnZoQinMS+PxH93C3JI87ZAgCIJwjjmnJiorF83k6YfvZMNv7mfjugfZuO5BnnroDhJirdpQQTglgaGLyoNtFVRWvcPefS9RUXP8crMZJTeSP3UludkLycyYQ2pKATbrJG3YSUUiJ0AgEKC+cRvlFW/y6d71dHRUakMwR8Uzf85tTM27KLjikz6TlOR8zCabNnRMPG4n1TXvUVbxOnv2/k07DEBu1sVML76avNxlZGctICOthJTkfG3YmJ3JnMNzki5HK5VV77Cv7FXKKo5fwleUv4aigsvJzVlCZsZc0lOLiI89PasvSQk27r/9KrLTJxNlNmqHJ5R4WzSJcTGsvekSCvPStMOCIAjCOeScmaisXDyLW9esYHJiLDr9yb8sk9HAI/fdyMZ1D/L8E/exZH6RNkQQjjF8w72m/jUqql+kvvFtHI5abRgAimzAqBjRywY8A256+7rxB/zasJOKRE4Ar9fF3n3PUVX7Mo3N7+Me6NaGIAX0mE1RKAYFnU6i3+Wkt7ebQGC0lYkTc/Q0UVb5AtW1r9DculU7DICkG15lMqAGVJzOXvr6erRhY3Ymcw5/Vw6276Gi+kVq61/jQNtHmqhhUnBlS5YZHPTS19eNxzugDfrcdJLEzasvIitlEpve2sH6V7dpQwCQ9XpWLJrJ0w9/ixeeeoB7br5cGzIiPyuFn917A3/7zffZuO5B/vLr7/Gju1YzKT5GGxoiKcHG0w/fycZ1D/LsY/eQkz5ZG8K2jyv4vxfewago3HXDl0hKOLVJsSAIgjDxnfyK/iygkySWlRYj63W8v3M/N9//JKvXPsrqtY/ynYeewd7t1L6Fr1+1nPzsVNTh29WCEAaJYElU6pT5FEy9ghkl32DerG9TOvcedNKREi2AA237aG7ZRWPTFvZ89lzIWDjOdE7f0M+GTpLJSF9K4bTVzCq5hXmz11I6O7QEKRAIUN/wIS0tO6lreIeq2tdCxsdKGvpxtFqTycm+mKKC65g94zYWzLmbOTNuDYl19XfT0LCd5tadVFa/HDIWjkjk1BH8vOLj88jPHS6b+xYL5t5Letr5IbGd9kaaWnbQ1LKNsooNIWPj4dLlc5lfkktl/QH+/vZO7TCyXs+aLy3if//jLu664RImJ9pGLQME+MpF83n43uspmpqOrA+esyajgbklefzkO9eMusKtkyTuvH4VSQm2k/5e3ryzjPd37SclKY7rv7xEOywIgiCcI86JiUqczYIt2kKP08WLb++kz+XRhoRYVlrM0gUltLZ10tjarh0WhJOSJJn0tMUUFa0mO2sx6akzSUmZRnLKVCyW0LvAra27KK/cQF3Dm/T2tYSMheOM5xxqnphefBMF+ZeSlbGQtLQZpCTnk5iUORQUjAkA+8vXU1G9icbm9wgE1KMOFIahC+CSwmuZmrOCrIz5pKVMJzl5KgnxoRsIuLxd7K9YT1XNS7Qe3BEyFpaI5NQBEnOm30JO9gVkpAfL9FKSc0mMzwoJ7e5ppqxiAzV1r9HeUR4y9nlFW6NYcf5MPIODbHhjO56BQW0Ic0tyuHJlKbboKBpa29lf3aQNCVHT1Mahji7+9spWbvzer7n2u7/iTy9txjMwSPKkOBbOKdC+BYA1ly1iRn4mVQ0H6LCffLVq4xvbOdTZzbzpecwoCP2eCYIgCOeGc2KiMswzMIjLfeJJSlKCjatXnc+A18szf3uLQZ9PGyIIIxTFyoziNay66GdcuuoxosxJSEjodBIQwGqJxmSKQlGM+FWVgQEPel3oj1VgpDNhbCKRMzpmCqVzv8llqx6jdP4tGGQLupFjBrBEWTGZzMgGAz6fD5/XG/L+gBp+eVlSUiFLFt7L5Zf8mrzsJRj0USNjsl4mKsqC0WhCp9cxODh4zF32k9x0P65I5MzNWcaFF/yQyy95nNSUmRhkI5IkIUkS0TGxmM0WFMUEAQnvwAAMrZwdcQpJx2jpgiJSJ8fzWUUjn1U2aocBKK87QG3TQX7/wrs88ItncfQcu0J9tIraVv7lkd+z/vVteAYG8fn9vPT2TvZVNaHT6cjNmKJ9C4V5aaxaPIu2zm6e3fjeMd/347F3O9nxaRVmo8KqxbO0w4IgCMI54KydqCyZX8TzT9zHxnUP8swja0meFEfypDieeWTtSCP9xnUPsvqShSPvGa7FTk6M5bXNn1BRe3qeCSGcO6YXrSYzYxFGow2rOQGzKRrFYEVCGlk18A16qa3/gLq6LZRVvEx3b+h5pRvaUWqsIpFz3qxbSUoqQZbNRFtTMCpRRA814QeGLhr7nHaqazZTW/9PyqpCm/mHY8bKFp1K6dw7iY3NwiCbsVgTMSoWYoe2XQ4QnPh02huoqd1Mde1blFVuCj2IOnr50fFEImdm+vkUTbsSi2UyRiWGKHMcsj4Kkyk2ZNWppXUPtfVbqKx5nbqGf4YcY7Qd3sbDnOJcAgTYM8okBaDP6eLfn/wrr23+eEwTiJNp6+gK+W+T0cCtqy/CqCisf3Urju7ekPET2bGnGqfLQ2Za0qglZYIgCMLZK7yrmbPc1asWMr8kl+2fVrLpzQ+1w4JwjKRJRaiqCujQ6RXMxhh0Opno6CkjW9q63A72lf2VypoXaW7ZcswdcEnTP3IykcgZZU5EVVUkSY9BNmJSokeWD4b7EeyOasorX6C69lVaD27XHCE8k5KCX6Oqquh0eoyyGVlvRJEVOKofp6nlQ8qrNlFb/yaHDu/THCW88rJI5Bz5LAOg18uYFCt6vYItOnXkswQor9xIRdVG6hvfpbfvQMgxAmFOOscqNsZKYlwMLtcANQ0HtcPjKnVyPFlpSThdHsqrQ0sRv3ntxWSlJvHqex+x9eOKkLGTaWnroMPRiy06ipSkeO2wIAiCcJY7PX8Bz4APdpdz/b2Ps3rto9zx43W0dXTR1tHFHT9eN9JIv3rto2x8IzghKcxL49Jlc2jr7OYvL28ZlzuDwrnP7/fj9/vx+bwMDLjo7j2E292Ho+fIHejAUQ/CUIxWMjIWkpuzHFk2B18M80IzkjkHB714PP109x2mq0u74njkzr7FkkReznJSU2YhSaM/Y2VUAd2RnD4v/Z4enP12OruaQ8KOPmx8fC75eSuIiw1uSRv2T3AEcqpqYCjfIANeD739dvpdXXR1NxyJCaghpXopyTPJz1uBxRK88B5u9h9vsdFRxFhMON0D9PW7tMPjxmQ08K3rLyHBZuW19z9mf82R7/ey0mIWzppGZf0BNr0V/s2jAa+Pvn43sl5PrE2sqAiCIJxrwruaOUuZjAZuumIpisHAn1/aTPsYGjUFAaCjsxZVDU4a3O4e+vrtHGjbj8NeNxIzfB0ZHZPM8sU/YFbJ9cwsvo5YWxqKHP7FUyRy9vS1o6p+Bgfd9LsdOJ12Oh01ITHDKw7JyTO5aOm/UlRwFTOKr8EgW5GVoQnSGHXaqxj0eVFVPx6PE2e/gx5nB4fby0LihnMWFVzB4vPuoXDalWSlnx/soQmzJCoSOR1djaiqfyhnL05nJ/bugzS3HLkoD6gqkiQhy0YWL7yXebNvo6jgapInF6LI1rD7jcZKp5NA09s03kxGA3d/7TIK8tLY+nEFG47a+jgpwcY1ly7GPTDAbze8fdxG/rHo6evXviQIgiCcI07vX6kJIiUpntQpiZhNCg/eeXVID8u07FQUg8y9N3+ZjesePOGzAYQvnsrqTdgdzbg9LlxuJ532FqrqQrelHb6MnF7wVQwGCwCybMRqjkcvKxiV8CYOkchZU/MPevrseDxunP29HDxcwZ59fwqJkQCjMZpZxdejqn4kSUZRLFjNCRh04T0ksLunkdq6t3G5evEMeOhz9tDQtJW6hrdC4iRJz6TEQnKylqGqfvQ6AyZTNBZzHAkJuSGxJxOJnA1N73Lg4Ge4PS7cHhc9PR3U1r1GV8+RFRVJkggEdOTlXESsLRM14EfWK0SZbJhMFhLjw8s5UURbo/jhXV9lwcypbN1dzro/vx6ykj0tJ5U4m5W4GCu//tGtI7+Th3sOo6NMPPaDm4/pNdQyG8M79wRBEISzxxdioiIIp8rt6ebjPU/zwfafsmX7w+z+5AkkCabmriA+LtiELQ1dfMXGZgV7IAIAEqrqx+/3YVSO7Cw1FpHI2emoZOfux9iy/WE+2P5T9u77LVMmTyc/byUmU3DSowK26CwknWGo70JFAnx+LwG/ihrmgyWbWjazdcfP2bLtIbZ++FOamt8lI72UvJwL0cvBHhtJ0hEflzvSWxIIBBv3fT4vnuM8gPJkIpGzrPK54Ge57WG27/oF3T115GYvIzNj4VCZmYQk6YKTFFUdKuuTIBDA5xvEN+jWHnJc9PT14+x3YzUbibaEd76cTEpSPP/xL9dTlJPGux/u47//+Co+f3jnx1gYFZmEuGi8gz4OdYT/2QiCIAgT2xdiolLfcjjkIZBH/6tqOIB30McTz/6D1Wsf5clnQ3czEoSj5eetYumi+yguuIKpOReiyBb0BgMA3b2Hg/0I3gE8nj66ne243N20Hf5Me5iwRCLnwgV3UTrvdooKriQjbQ4GgwUJcLmD+fx+P17vAP2uHnr6OjjcWXcKHRxHWKMSWbbkAWbPuJHpxWtImpSPLAcvnt2enpGcA143zv4uevs7cThCe0vCFYmck5OKWX7BDykpupo5M7+OrI9C1stISLj6gzl9Ph+egX56+zvoc3bh6B59R67Pw97tpN3eQ1SUkanZKdrhU1Y0NZ1/v/tapkyKY9PbO3jm+TeP2xN4dJ/h0f+Gew77XB7u/8WzIb2GWsmT4om3Wenrd4e1W5ggCIJwdvhCTFQEYTzEx+WQn/cl/H4VJANGJRqzyYbNlgpAc8sWfINeVNWH29OH02mntu69kMbpcEUiZ272hSTET8PvV9HrjJiNNkyGaBIT8nH2t9NyYDeq34fP78Xl7qHX2UFD82btYcJSWHAlihKLqoIsm7GY4lDkKMymWJpbPsDhaDrSQ+Pqwu5ooab2de1hwhKJnDNLroeAHtCjGCxYTPHIegsQoLH5PdyuHlTVz8BAP87+LtoO7z92i+RxtLeiAQmJRXMK0I2yIUJCrJWnHrpjpDTrgvnFAFwwv3jktZ9//6aR+JuuWEpifAyyXs9XLzmfDU89EFJu+/wT97FkftFRGU7dzMIsYqxm9lc3Y+8+8fNdBEEQhLOPmKgIwhjFxWaPNEZLQ8/lCRBgcCDYzNt6YAdlVZtob6/F3tlIfeNmKqo/30VmJHLG2jJQVT8BNbgVr4QueMHuC5YglVduoL7pAzrtjbR3VLO/fD3NLVs1RwmPbThnIIA0VAoVCPgxGaMB2P3pOloPforD0Uzbof18sve3dB21C9qpONM542KzkWXz0Pf26GfdBPAO9tPrbOOTfb/n0KEK7I4mWg58xO5PntYcZXxt/aicw/YecjOnUDItUzs8oSXEWlm5eBYuj5etu8u1w4IgCMI5QMpOsR27Ji8IZ5Gc9Mn823ev49OyutNaupeRvpjC/K8AoNcrKEN9IB0dVWzb+bgmenxEIuf0whtISQk+6dtgMKPIJtSAn5bWXXy89/fa8HGxaOH9WKMmARJGJQpZVvD7vezdv57G5ve14ePiTOeMikpkycIHANDp9CiKBb1Oh9vdy+vvfF8bfsZcfuE8vnHlcqqbDvKzp9af8u5bZ9od113MysWzeH9XGU/98VXtsCAIgnAOECsqgjBGhw7vwdnXOVIO5Op30NvbTmvbx9rQcROJnAcPf4x3cGCoBMmJ02Wn09FCXcO72tBxc/jwPnz+waEStl6c/XYOtJWflgnDsDOd0+XqpP2oraddri76+jppOfCJNvSMenvrHsrqWpmWncqd160atQRsIllWWszSBSW0tTt4/uXT83kJgiAIkaePizY9pH1REM4mcTYrS0tLONTRxc491drhceP3e+npbcRsSiEAuN09NLdupbnl9F0oRSKn221nwOvEaIhD9QdwOjuorn+Zru56bei4cXTVYpCj0enM+PyDdPccoLx6Pb6hcrPTIRI57Y4KTKbJEDAwMOCio7Oa8qq/asPOKL9fpby2hdnFuRTnpSPpJcqqP9+mAafT3JI87rzuYnx+P0/+4RWaD3ZqQwRBEIRzhCj9Es56Z6r0SxDOZUkJNr5361d4e9te3t3++XaNO50K89K4/ZqLeXbTP/ms8tR7hgRBEISJT0xUBEEQBEEQBEGYcESPiiAIgiAIgiAIE46YqAiCIAiCIAiCMOGIiYogCIIgCIIgCBOOmKgIgiAIgiAIgjDhiImKIAiCIAiCIAgTjpioCIIgCIIgCIIw4YiJiiAIgiAIgiAIE454jopw1juTD3yMtWWSmFCM2RSLwWDFIJtx9jdTVvmiNnTcRCLn5KSZ2GIyMRptKAYLst5EZe0L9PS0akPHhSTpSE05j2jLFAzGGBTZgmJQ2L7rv7Sh4yYSOc1RCaQkzcZoikdRrBjkKGQdfPjRU9pQQRAEQfjCEysqghCGObO+QUH+SrKzSsnMmElKSj42W4Y2bFyd6Zxxtmzmzvo60/IuJCdrPhnp00lJmUqMNVUbOm4K8q9kZslq8vIuICdzLulpRSQlZmvDxlUkcpZM+yoF0y4lL2cRWZlzSEstxGZL1oYJgiAIgiAmKoIQHpPRjMGgoNfLI69JSCExw2JiUsnL+RLFBdcye8atLJh7N3Nm3a4NO6kznVOnUzAaTcgGAzqdfuR1STp+zoSEAvLzLmd60Y3MmXUHpfPuIStjsTbshCR0KIoJWW9AkoK/ltRR8oFEWur5FEy9khnFNzF39l2UzrtHG3RSEcmpk1AUI3q9PPIZqqOsaRtNMWRlLKdo2leZNf1m5s1ZS+m8u7Vh4yYpwcYv7v8al184Tzs0oRTmpfH4j25hbkmedkgQBEE4x5xTE5WVi2by9MN3suE397Nx3YNsXPcgTz10BwmxVm2oIJySwNBF5cG2Ciqr3mHvvpeoqDl+udmMkhvJn7qS3OyFZGbMITWlAJt1kjbspCKREyAQCFDfuI3yijf5dO96OjoqtSGYo+KZP+c2puZdFFzxSZ9JSnI+ZpNNGzomHreT6pr3KKt4nT17/6YdBiA362KmF19NXu4ysrMWkJFWQkpyvjZszM5kzuE5SZejlcqqd9hX9iplFccv4SvKX0NRweXk5iwhM2Mu6alFxMeentWXpAQb999+Fdnpk4kyG7XDE0q8LZrEuBjW3nQJhXlp2mFBEAThHHLOTFRWLp7FrWtWMDkxFp3++F/WpPgY7vnG5fzxV/eycd2DbHjqAX77n2u54StLkPVH7hwLwmiGb7jX1L9GRfWL1De+jcNRqw0DQJENGBUjetmAZ8BNb183/oBfG3ZSkcgJ4PW62LvvOapqX6ax+X3cA93aEKSAHrMpCsWgoNNJ9Luc9PZ2EwiMtjJxYo6eJsoqX6C69hWaW7dqhwGQdMOrTAbUgIrT2UtfX482bMzOZM7h78rB9j1UVL9Ibf1rHGj7SBM1TAqubMkyg4Ne+vq68XgHtEGfm06SuHn1RWSlTGLTWztY/+o2bQgAsl7PikUzefrhb/HCUw9wz82Xa0NG5Gel8LN7b+Bvv/k+G9c9yF9+/T1+dNdqJsXHaEPJSZ/Mj7+9hr/8+nvB38u/uZ+nH76TVUtmozvOCte2jyv4vxfewago3HXDl0hKOLVJsSAIgjDxHf+K/iyjkySWlRYj63W8v3M/N9//JKvXPsrqtY/ynYeewd7tBOCGr1zABQuKsQzdMdRJEnExVq6+eCHfuvESzVEFYXQSwYlt6pT5FEy9ghkl32DerG9TOvcedNKREi2AA237aG7ZRWPTFvZ89lzIWDjOdE7f0FKOTpLJSF9K4bTVzCq5hXmz11I6O7QEKRAIUN/wIS0tO6lreIeq2tdCxsdKGlpysFqTycm+mKKC65g94zYWzLmbOTNuDYl19XfT0LCd5tadVFa/HDIWjkjk1BH8vOLj88jPHS6b+xYL5t5Letr5IbGd9kaaWnbQ1LKNsooNIWPj4dLlc5lfkktl/QH+/vZO7TCyXs+aLy3if//jLu664RImJ9pGLQME+MpF83n43uspmpo+cgPIZDQwtySPn3znmmNWuL957UrmFOdgMhoA0Ol1TE6M5ZtrVnD1qoUhscM27yzj/V37SUmK4/ovL9EOC4IgCOeIc2KiEmezYIu20ON08eLbO+lzebQhALgHvGz/pJL7fv5/rF77KDff/yRvbPmEgBqgICf1mD+ggjAaSZJJT1tMUdFqsrMWk546k5SUaSSnTMVimRwS29q6i/LKDdQ1vElvX0vIWDjOeM6h5onpxTdRkH8pWRkLSUubQUpyPolJmUNBwZgAsL98PRXVm2hsfo9AQD3qQGEYugAuKbyWqTkryMqYT1rKdJKTp5IQH7qBgMvbxf6K9VTVvETrwR0hY2GJSE4dIDFn+i3kZF9ARnqwTC8lOZfE+KyQ0O6eZsoqNlBT9xrtHeUhY59XtDWKFefPxDM4yIY3tuMZGNSGMLckhytXlmKLjqKhtZ391U3akBA1TW0c6ujib69s5cbv/Zprv/sr/vTSZjwDgyRPimPhnIKQ+H6Xh9c2f8xd//Y/rF77KHf92/+wc28Nkk5iTklOSOzRNr6xnUOd3cybnseMgtDvmSAIgnBuOCcmKsM8A4O43MefpAA88/xbPP67v9N4oB2AvqE/kF19LlQ1gP8Ur62Ec5eiWJlRvIZVF/2MS1c9RpQ5CQkJnU4CAlgt0ZhMUSiKEb+qMjDgQa8L/bEKjHQmjE0kckbHTKF07je5bNVjlM6/BYNsQTdyzACWKCsmkxnZYMDn8+HzekPeH1DDLy9LSipkycJ7ufySX5OXvQSDPmpkTNbLREVZMBpN6PQ6BgcHUYebdYZo/nNMIpEzN2cZF17wQy6/5HFSU2ZikI1IkoQkSUTHxGI2W1AUEwQkvAMDMLRydsQpJB2jpQuKSJ0cz2cVjXxW2agdBqC87gC1TQf5/Qvv8sAvnsXRE1yhHk1FbSv/8sjvWf/6NjwDg/j8fl56eyf7qprQ6XTkZkwJiX/k6Rf43YZ3aLcHS+na7T28ueUTPJ5BVP/oX7u928mOT6swGxVWLZ6lHRYEQRDOAWftRGXJ/CKef+I+Nq57kGceWUvypDiSJ8XxzCNrRxrpN657kNWXHL90gKEG0huvWEZsjJltn1TQ3XviP8DCF8/0otVkZizCaLRhNSdgNkWjGKxISCOrBr5BL7X1H1BXt4Wyipfp7g191ohuaEepsYpEznmzbiUpqQRZNhNtTcGoRBE91IQfGLo673Paqa7ZTG39PymrCm3mH44ZK1t0KqVz7yQ2NguDbMZiTcSoWIgd2nY5QHDi02lvoKZ2M9W1b1FWuSn0IOro5UfHE4mcmennUzTtSiyWyRiVGKLMccj6KEym2JBVp5bWPdTWb6Gy5nXqGv4ZcozRdngbD3OKcwkQYM8okxSAPqeLf3/yr7y2+eNjJm6noq2jS/tSiKzUJK7/8hIkncQ72/doh0Ps2FON0+UhMy1JrIgLgiCcg8K7mjkHHD3B+X8//RYzC7J4/h9b2TBKA6nwxZY0qQhVVQEdOr2C2RiDTicTHT1lZEtbl9vBvrK/UlnzIs0tW465Ay5p+kdOJhI5o8yJqKqKJOkxyEZMSvTI8sFwP4LdUU155QtU175K68HtmiOEZ1JS8GtUVRWdTo9RNiPrjSiyAkf14zS1fEh51SZq69/k0OF9mqOEtwQaiZwjn2UA9HoZk2JFr1ewRaeOfJYA5ZUbqajaSH3ju/T2HQg5RiDMSedYxcZYSYyLweUaoKbhoHZ4XKVOjicrLQmny0N59bGliKsvWThyc+nxH93ClElxPP2X19m8s0wbGqKlrYMORy+26ChSkuK1w4IgCMJZ7vT8BTwDPthdzvX3Ps7qtY9yx4/X0dbRRVtHF3f8eN1II/3qtY+y8Y0PtW8NYTIauO7yxXz96uXH3WFG+GLz+/34/X58Pi8DAy66ew/hdvfh6DlyBzpw1IMwFKOVjIyF5OYsR5bNwRfDvNCMZM7BQS8eTz/dfYfp6tI+hf7Iz4fFkkReznJSU2YhSaM/Y2VUAd2RnD4v/Z4enP12OruaQ8KOPmx8fC75eSuIiw1uSRv2vf0I5FTVwFC+QQa8Hnr77fS7uujqbjgSE1BDSvVSkmeSn7cCiyV44T3c7D/eYqOjiLGYcLoH6Ot3aYfHjclo4FvXX0KCzcpr73/M/prQ7/fxRFvM3HXDJVy6bK52KMSA10dfvxtZryfWJlZUBEEQzjXhXc2cA7QTnL+/swu/P8AlF8xm2Xkl2nDhC66jsxZVDU4a3O4e+vrtHGjbj8NeNxIzfB0ZHZPM8sU/YFbJ9cwsvo5YWxqKHP7FUyRy9vS1o6p+Bgfd9LsdOJ12Oh01ITHDKw7JyTO5aOm/UlRwFTOKr8EgW5GVoQnSGHXaqxj0eVFVPx6PE2e/gx5nB4fbQ++gD+csKriCxefdQ+G0K8lKPz/YQxNmSVQkcjq6GlFV/1DOXpzOTuzdB2luOXIDJaCqSJKELBtZvPBe5s2+jaKCq0meXIgiW8PuNxornU4CTW/TeDMZDdz9tcsoyEtj68cVo65cb3zjw5GbS/f87Hd8sLscg0HPtZctpmRq6IYGWj19/dqXBEEQhHPE6f0rNcHZu5388cX3eH3LJxhkmenThncyEoSgyupN2B3NuD0uXG4nnfYWqupCt6UdvoycXvBVDAYLALJsxGqORy8rGJXwJg6RyFlT8w96+ux4PG6c/b0cPFzBnn1/ComRAKMxmlnF16OqfiRJRlEsWM0JGHThPSSwu6eR2rq3cbl68Qx46HP20NC0lbqGt0LiJEnPpMRCcrKWoap+9DoDJlM0FnMcCQm5IbEnE4mcDU3vcuDgZ7g9LtweFz09HdTWvUZXz5EVFUmSCAR05OVcRKwtEzXgR9YrRJlsmEwWEuPDyzlRRFuj+OFdX2XBzKls3V3Ouj+/PqYel9ZDnTzx7D/4tKwBa5SJabmp2pAQZmN4554gCIJw9vhCT1SGDQztYOQ7wQ4zwheT29PNx3ue5oPtP2XL9ofZ/ckTSBJMzV1BfFzwTq80dPEVG5sV7IEIAEioqh+/34dRObKz1FhEImeno5Kdux9jy/aH+WD7T9m777dMmTyd/LyVmEzBSY8K2KKzkHSGob4LFQnw+b0E/CpqmA+WbGrZzNYdP2fLtofY+uFPaWp+l4z0UvJyLkQvB3tsJElHfFzuSG9JIBBs3Pf5vHiO8wDKk4lEzrLK54Kf5baH2b7rF3T31JGbvYzMjIVDZWYSkqQLTlJUdaisT4JAAJ9vEN+gW3vIcdHT14+z343VbCTaEt75cjIpSfH8x79cT1FOGu9+uI///uOr+PzhnR8Dg4MEAgH8J9iO0ajIJMRF4x30cagj/M9GEARBmNi+0BOVhFgrV6xYwJcumIPb42X33mptiCCEyM9bxdJF91FccAVTcy5EkS3oDcEH1XX3Hg72I3gH8Hj66Ha243J303b4M+1hwhKJnAsX3EXpvNspKriSjLQ5GAwWJMDlDubz+/14vQP0u3ro6evgcGfdKXRwHGGNSmTZkgeYPeNGphevIWlSPrIcvHh2e3pGcg543Tj7u+jt78ThOHmvw4lEIufkpGKWX/BDSoquZs7MryPro5D1MhISrv5gTp/Ph2egn97+DvqcXTi6R9+R6/Owdztpt/cQFWVkanaKdviUFU1N59/vvpYpk+LY9PYOnnn+zTGtpAybnBjL169azvzpU+nu6+fT8nptyIjkSfHE26z09btxdPdqhwVBEISznD4u2vSQ9sWzTZRJYfl50wHYvGMfbk/oMx4YmpQ89oObuW3NCq69bDHXXraYL1+0gJmF2ej1Ol56ZydvbT3xVpjCxBRns7K0tIRDHV3s3HP6JpvxcTnMmnETgUAAnd6I2WTDqFiQ9DIVlf8gEPATb8sFCXw+L16vi6bm7bQcOPGGDicSiZy52ReSkb6IQCCAQY4iyhSLrDeiBqCi+mWMxliiLZNRAyqDvgE8A07qG9+hp/fUL+JnTr8BW0wGIKEoViymWCR02B111Na/QXxsPkZjNKrqY3DQQ29fB5VVL57SCsewSORcVHoPer0JnU7GZIwmyhiLX1WprnuL3t4mEuOL0OsN+P2DeAc9dNpr2bPvj9rDjJvYGAszC7IwGRW27Co77lRT+7szMzUJgMzUpJHfpbOKsnl3e3By/C+3foWMlEnodDqK8tK55tJFI3HXXraYqy4+j3Z7D80HO8hJn8x//eSbfO3KZSPjly2fR0FOKoODPn7/wrujPt8FYGlpMfNn5LFzbw0f7B7fh2EKgiAIkfeFXlFxu73sr27iZ/+9nvWjNHkKwrC42OyRxmgJ0EkSAQIMDgSbeVsP7KCsahPt7bXYOxupb9xMRbXmORxhikTOWFsGquonoAZLbiR0wUZ7X7AEqbxyA/VNH9Bpb6S9o5r95etpbtmqOUp4bMM5AwGkoVKoQMCPyRgNwO5P19F68FMcjmbaDu3nk72/peuoXdBOxZnOGRebjSybh763Rz/rJoB3sJ9eZxuf7Ps9hw5VYHc00XLgI3Z/8rTmKONr60flHLb3kJs5hZIJ0KMXCATo63ezc081D/7yD2zZNfr2xAmxVlYunoXL42XrbjFJEQRBOBdJ2Sm2491EE4SzRk76ZP7tu9fxaVkdTz4b+iDC8ZSRvpjC/K8AoNcrKEN9IB0dVWzb+bgmenxEIuf0whtISQk+6dtgMKPIJtSAn5bWXXy89/fa8HGxaOH9WKMmARJGJQpZVvD7vezdv57G5ve14ePiTOeMikpkycIHANDp9CiKBb1Oh9vdy+vvfF8bfsZcfuE8vnHlcqqbDvKzp9bjGRjUhkxId1x3MSsXz+L9XWU89cdXtcOCIAjCOeALvaIiCOE4dHgPzr7O4OrCoBtXv4Pe3nZa2z7Who6bSOQ8ePhjvIMDqKqfgQEnTpedTkcLdQ3vakPHzeHD+/D5B1FVH25PL85+Owfayk/LhGHYmc7pcnXSftTW0y5XF319nbQc+EQbeka9vXUPZXWtTMtO5c7rVp0Vz5NaVlrM0gUltLU7eP7l0/N5CYIgCJF3TvSoCF9sZ6pHxe/30tPbiNmUQgBwu3tobt1Kc8vpu1CKRE63286A14nREIfqD+B0dlBd/zJd3aM3NX9ejq5aDHI0Op0Zn3+Q7p4DlFevxzdUbnY6RCKn3VGByTQZAgYGBlx0dFZTXvVXbdgZ5ferlNe2MLs4l+K8dCS9RFn1qfcbnW5zS/K487qL8fn9PPmHV2g+2KkNEQRBEM4RovRLOOudqdIvQTiXJSXY+N6tX+HtbXtHGuMnosK8NG6/5mKe3fTPEzbaC4IgCGc/MVERBEEQBEEQBGHCET0qgiAIgiAIgiBMOGKiIgiCIAiCIAjChCMmKoIgCIIgCIIgTDhioiIIgiAIgiAIwoQjJiqCIAiCIAiCIEw4YqIiCIIgCIIgCMKEI7YnFs56Z/I5KrG2TBITijGbYjEYrBhkM87+ZsoqX9SGjptI5JycNBNbTCZGow3FYEHWm6isfYGenlZt6LiQJB2pKecRbZmCwRiDIltQDArbd/2XNnTcRCKnOSqBlKTZGE3xKIoVgxyFrIMPP3pKGyoIgiAIX3hiRUUQwjBn1jcoyF9JdlYpmRkzSUnJx2bL0IaNqzOdM86WzdxZX2da3oXkZM0nI306KSlTibGmakPHTUH+lcwsWU1e3gXkZM4lPa2IpMRsbdi4ikTOkmlfpWDapeTlLCIrcw5pqYXYbMnaMEEQBEEQvqgTlYRYK0/8+Db+9pvvc81li7TDgjAqk9GMwaCg18sjr0lIITHDYmJSycv5EsUF1zJ7xq0smHs3c2bdrg07qTOdU6dTMBpNyAYDOp1+5HVJOn7OhIQC8vMuZ3rRjcyZdQel8+4hK2OxNuyEJHQoiglZb0CSgr+W1FHygURa6vkUTL2SGcU3MXf2XZTOu0cbdFIRyamTUBQjer088hmqo6xpG00xZGUsp2jaV5k1/WbmzVlL6by7tWHjJinBxi/u/xqXXzhPOzShFOal8fiPbmFuSZ52SBAEQTjHfCEnKkVTM5g8KRZZr2dW4em9gyqcWwJDF5UH2yqorHqHvfteoqLm+OVmM0puJH/qSnKzF5KZMYfUlAJs1knasJOKRE6AQCBAfeM2yive5NO96+noqNSGYI6KZ/6c25iad1FwxSd9JinJ+ZhNNm3omHjcTqpr3qOs4nX27P2bdhiA3KyLmV58NXm5y8jOWkBGWgkpyfnasDE7kzmH5yRdjlYqq95hX9mrlFUcv4SvKH8NRQWXk5uzhMyMuaSnFhEfe3pWX5ISbNx/+1Vkp08mymzUDk8o8bZoEuNiWHvTJRTmpWmHBUEQhHPIF3KiUl7TzOGObnx+P3sqGrTDgjCq4RvuNfWvUVH9IvWNb+Nw1GrDAFBkA0bFiF424Blw09vXjT/g14adVCRyAni9Lvbue46q2pdpbH4f90C3NgQpoMdsikIxKOh0Ev0uJ7293QQCo61MnJijp4myyheorn2F5tat2mEAJN3wKpMBNaDidPbS19ejDRuzM5lz+LtysH0PFdUvUlv/GgfaPtJEDZOCK1uyzOCgl76+bjzeAW3Q56aTJG5efRFZKZPY9NYO1r+6TRsCgKzXs2LRTJ5++Fu88NQD3HPz5dqQEflZKfzs3hv422++z8Z1D/KXX3+PH921mknxMdpQctIn8+Nvr+Evv/4eG9c9yIbf3M/TD9/JqiWz0R1nhWvbxxX83wvvYFQU7rrhSyQlnNqkWBAEQZj4vpATFXu3k3sf+R3XfvdXo/5RFoQTkQiWRKVOmU/B1CuYUfIN5s36NqVz70EnHSnRAjjQto/mll00Nm1hz2fPhYyF40zn9A0t5egkmYz0pRROW82skluYN3stpbNDS5ACgQD1DR/S0rKTuoZ3qKp9LWR8rKShJQerNZmc7IspKriO2TNuY8Gcu5kz49aQWFd/Nw0N22lu3Ull9cshY+GIRE4dwc8rPj6P/NzhsrlvsWDuvaSnnR8S22lvpKllB00t2yir2BAyNh4uXT6X+SW5VNYf4O9v79QOI+v1rPnSIv73P+7irhsuYXKibdQyQICvXDSfh++9nqKp6cj64DlrMhqYW5LHT75zDQmx1pD4b167kjnFOZiMBgB0eh2TE2P55poVXL1qYUjssM07y3h/135SkuK4/stLtMOCIAjCOeILOVERhM9LkmTS0xZTVLSa7KzFpKfOJCVlGskpU7FYJofEtrbuorxyA3UNb9Lb1xIyFo4znnOoeWJ68U0U5F9KVsZC0tJmkJKcT2JS5lBQMCYA7C9fT0X1Jhqb3yMQUI86UBiGLoBLCq9las4KsjLmk5YyneTkqSTEh24g4PJ2sb9iPVU1L9F6cEfIWFgiklMHSMyZfgs52ReQkR4s00tJziUxPisktLunmbKKDdTUvUZ7R3nI2OcVbY1ixfkz8QwOsuGN7XgGBrUhzC3J4cqVpdiio2hobWd/dZM2JERNUxuHOrr42ytbufF7v+ba7/6KP720Gc/AIMmT4lg4pyAkvt/l4bXNH3PXv/0Pq9c+yl3/9j/s3FuDpJOYU5ITEnu0jW9s51BnN/Om5zGjIPR7JgiCIJwbzvqJislo4BtXX8jv/vM7vPDUA2x46gGeeeTbXHXxeceUDay+ZCEb1z0Y8m/1Jce/Y5eTPplnH7uHn3//JqKtUXz365eNlCb87j+/wyUXzNG+RTgHKYqVGcVrWHXRz7h01WNEmZOQkNDpJCCA1RKNyRSFohjxqyoDAx70utAfq8BIZ8LYRCJndMwUSud+k8tWPUbp/FswyBZ0I8cMYImyYjKZkQ0GfD4fPq835P0BNfzysqSkQpYsvJfLL/k1edlLMOijRsZkvUxUlAWj0YROr2NwcBB1uFlniOY/xyQSOXNzlnHhBT/k8kseJzVlJgbZiCRJSJJEdEwsZrMFRTFBQMI7MABDK2dHnELSMVq6oIjUyfF8VtHIZ5WN2mEAyusOUNt0kN+/8C4P/OJZHD1ObUiIitpW/uWR37P+9W14Bgbx+f289PZO9lU1odPpyM2YEhL/yNMv8LsN79BuD5bStdt7eHPLJ3g8g6j+0b92e7eTHZ9WYTYqrFo8SzssCIIgnAPO6omKTpK4//ar+MpF84mNsSBJEjpJIiE2mitWlpKVlqR9S9jMRoWf3Xs9S0tLRkoTYmMs3HTFUhbMmKoNF84x04tWk5mxCKPRhtWcgNkUjWKwIiGNrBr4Br3U1n9AXd0Wyipeprs39FkjuqEdpcYqEjnnzbqVpKQSZNlMtDUFoxJF9FATfmDo6rzPaae6ZjO19f+krCq0mX84Zqxs0amUzr2T2NgsDLIZizURo2Ihdmjb5QDBiU+nvYGa2s1U175FWeWm0IOoo5cfHU8kcmamn0/RtCuxWCZjVGKIMsch66MwmWJDVp1aWvdQW7+FyprXqWv4Z8gxRtvhbTzMKc4lQIA9o0xSAPqcLv79yb/y2uaPj5m4nYq2ji7tSyGyUpO4/stLkHQS72zfox0OsWNPNU6Xh8y0pGNKygRBEISzX3hXMxNMRsokctMnY+/u41//6y+sXvso1373V/zy/3uRxpbDqJp9Pze+8SGr1z7K6rWP8tw/toSMjSYjZRLJSXF8sLucb/5wHTc/+N9U1LZiNinMLBTlBue6pElFqKoK6NDpFczGGHQ6mejoKSNb2rrcjv+/vTsPj7I8Fz/+fWfPZCYrJJCQQBYghH0XwaqISyuuFPdqa7Wtx7Wt2lN7WkV72Wrrr7Yu7emxPbbWDRQ9rijaWjZFRNkSskJIQiDLJJnMPpl55/fHJIF5IZCBwASu+3Nd/OE8d547mGHy3u/z3M/L9rJXqKh+g/qGNYfcAVc0/SNHk4ic1qRhqKqKougxGsxYTPa+5YPefgRHexXlFa9RVfMujU0bNDPEZ3hW9O+oqio6nR6zIQmD3ozJYIKD+nH2NHxKeeVKanZ9wP7m7ZpZ4tteloicfT/LCOj1BiwmG3q9iVR7bt/PEqC84nV2Vr7OrrqP6XLtjZkjEmfROVBpKTaGpafg9Qao3t2kHR5UudkZjBmVhdvrp7zq0K2IB692P/HAdxgxPJ1nX3yfTzaWaUNjNOxrpbW9i1S7lZysDO2wEEKIU9yJ+Q14knj9AXyBbuzJScyaVIxBrycUDrNxSxUP/eEV6va2aL8kbl5/gD+9uIonn3+bji43LreXL3bUEIlEhvwxnuL4hcNhwuEwoVCQQMBLZ9d+fD4X7c4Dd6AjBxXEJrON/Px5FBWei8GQFH0xzgvNRObs7g7i93vodDXT0aF9Cv2BO/vJyVkUF55Lbs40FKX/Z6z0K6I7kDMUxON34vY4aOuojwk7eNqMjCLGFS8iPS16JG3c9/YTkFNVIz35ugkE/XR5HHi8HXR0HjhtUI2oMVv1ckZOZVzxIpKToxfevc3+gy3NbiUl2YLbF8Dl8WqHB43FbOQH115EZqqN9/69mR3Vsf+/D8eenMRt113EN86ZqR2KEQiGcHl8GPR60lJlRUUIIU438V3NDDEtDicvv7OWcFjl8vPn8uLvfshj99/IovlT+06bOV5Ol5dtlbHbIt5cvZFv3vE4v3/+8M+yEKeP1rYaVDVaNPh8TlweB3v37aDdUdsX03sdaU8ZybkL/pNpk65l6sRrSEsdhckQ/8VTInI6XS2oapjubh8eXztut4O29uqYmN4Vh5Ejp3Le2f9FackVTJl4FUaDDYOpp0AaoDZHJd2hIKoaxu934/a043S30twSewe9N2dpyWUsOONuJoy/nDF5Z0Z7aOLcEpWInO0ddahquCdnF253G47OJuobPu2LiagqiqJgMJhZMO8eZk3/LqUlVzIyewImgy3ufqOB0ukU0PQ2DTaL2cid37qYkuJRrNu8kxX9nLJ48Gr33Y/8hbWbyjEa9Vx98QImjY090EDL6fJoXxJCCHGaOLG/pU6CNZ+XcduD/82K99ezv7WDwlHZ3HbdRfzplz+Qh4GJ41ZRtRJHez0+vxevz02bo4HK2thjaXsvIyeXfBOjMRkAg8GMLSkDvcGE2RRf4ZCInNXVb+N0OfD7fbg9XTQ172TL9hdiYhTAbLYzbeK1qGoYRTFgMiVjS8rEqItvdbHTWUdN7Wq83i78AT8ut5Pde9ZRu/vDmDhF0TN82AQKx5yDqobR64xYLHaSk9LJzCyKiT2aROTcvedj9jZtw+f34vN7cTpbqal9jw7ngRUVRVGIRHQUF55HWupo1EgYg96E1ZKKxZLMsIz4cg4VdpuVn972TeZMHcu6TeU884/3B9Tj0ri/jSeff5uvynZjs1oYX5SrDYmRZI7vvSeEEOLUccoXKvQ0e77yzjrufuQv3PzAM2zcUkWaPZmlX5+vDRUiLj5/J5u3PMvaDQ+zZsMyNn35JIoCY4sWkZEevdOr9Fx8paWNifZARAAUVDVMOBzCbDpwstRAJCJnW3sFGzf9hjUblrF2w8Ns3f4cI7InM674fCyWaNGjAqn2MSg6Y0/fhYoChMJBImEVNc4HS+5p+IR1nz3KmvUPse7Th9lT/zH5eXMpLlyI3hDtsVEUHRnpRX29JZFItHE/FAriP8wDKI8mETnLKl6K/izXL2PD57+m01lLUcE5jM6f17PNTEFRdNEiRVV7tvUpEIkQCnUT6vZppxwUTpcHt8eHLcmMPTm+98vR5GRl8MsfXktp4Sg+/nQ7T/39XULh+N4fge5uIpEI4XD/fUFmk4HMdDvB7hD7W+P/2QghhBjaTulC5czpJTx2/41cuGA6dqsFAJ8vwPaqerpD4b5TuoQYLOOKL+Ts+T9mYslljC1ciMmQjN4YfZ91djVH+xGCAfx+F53uFry+TvY1b9NOE5dE5Jw35zbmzrqV0pLLyR81A6MxGQXw+qL5wuEwwWAAj9eJ09VKc1vtMXRwHGCzDuOcs+5n+pTrmTxxKVnDx2EwRC+efX5nX85A0Ifb00GXp4329qP3OhxJInJmZ03k3K/9lEmlVzJj6o0Y9FYMegMKCl5PNGcoFMIf8NDlacXl7qC9s/8TuY6Ho9NNi8OJ1WpmbEGOdviYlY7N48E7r2bE8HRWrv6MP7/8wYBWUnplD0vjxivOZfbksXS6PHxVvksb0mfk8AwyUm24PD7aO7u0w0IIIU5xSkFO6sB/gwwxZ80u5T+u/zom46EnHKlhlVffW89rq6KnE2Wm2Vh2z3WMHJ6uDe2zZlNZX99JYV42v7jrGtweHw8++RKOziM/O0AkTu/P6quy2hPaN5SRXsiZc+8CwGCwkJyUhtFgxuVr4/U3b2VU7hmML1qMrqc/KhKJsLfpC3ZWaY64jUMichYVLGTC+EsBMJtsJCelAQr7Wyv58J8PUFqylNwR0/u6zsNqmJpdq6hvWKeZaeBmz7iF7KxJKIoOiyWFZEsq3aEgW7Yvp6zidWZPv520noZ2AJ/fRVn5S3QcdMBAvBKR84KFv8RksqHXG0mypJJksuP1O3nng3vR6/RMm3wz5p4VLIBOZwObvnw2Zo7BdNmiOdxw2dmUVTfw8FOvHragGMhnZ+XuvTzw238A8Oi9NzC+oP/tWsHuEM+++D5rN5X3/dvtvdF0MJ8/yJ9f/ZA1n/d/8lfv9//xp9v500urtMNCCCFOcaf0isqnX1ay/L31NLd1ovZsDwiFw9Q3tfL4c2/0FSlCDIb0tIK+xmil5zk+ESJ0B6LNvI17P6OsciUtLTU42urYVffJcRUMJChnWmo+qhomokb/TSnooo32oegWpPKKFezas5Y2Rx0trVXsKF9+XEUKQGpvzkgEpWcrVCQSxmK2A7Dpq2dobPqK9vZ69u3fwZdbnzuugoEE5ExPK8BgSOr5f3vws24iBLs9dLn38eX2v7J//04c7Xto2PvFCS1SANZ9UU6zw0nR6BFMGj9aO3zSRSIRXB4fG7dU8ZPH/3bEIiUzzcb5C6bh9QdZt6lcOyyEEOI0cEqvqAjBSVxRyc9bwIRx0ZUGvd6EqacPpLW1kvUbn9BED45E5Jw84TpycqJP+jYakzAZLKiRMA2Nn7N561+14YNi/rz7sFmHAwpmkxWDwUQ4HGTrjuXU1f9bGz4oTnZOq3UYZ827HwCdTo/JlIxep8Pn6+L9j+7Vhp80ixfO4qbLz6VqTxOPPL0cf6BbGzIkfe+aCzh/wTT+/XkZT//9Xe2wEEKI08ApvaIixMm0v3kLbldbdHWh24fX005XVwuN+zZrQwdNInI2NW8m2B1AVcMEAm7cXgdt7Q3U7v5YGzpompu3Ewp3o6ohfP4u3B4He/eVn5CCodfJzun1ttFy0NHTXm8HLlcbDXu/1IaeVKvXbaGstpHxBbl8/5oL0cX7TJwEOGfuRM6eM4l9Le28/NaJ+XkJIYRIPH263fKQ9kUhTiXpqTbOnjuJ/a0dbNxSpR0eNOFwEGdXHUmWHCKAz+ekvnEd9Q0n7kIpETl9PgeBoBuzMR01HMHtbqVq11t0dPbf1Hy82jtqMBrs6HRJhMLddDr3Ul61nFDPdrMTIRE5He07sViyIWIkEPDS2lZFeeUr2rCTKhxWKa9pYPrEIiYW56HoFcqqju/QgBNp5qRivn/NBYTCYX7/t3eob2rThgghhDhNyNYvcco7WVu/hDidZWWm8qObL2X1+q18vOH4To07kSYUj+LWqy7g+ZX/ZFvFsfcMCSGEGPqkUBFCCCGEEEIMOdKjIoQQQgghhBhypFARQgghhBBCDDlSqAghhBBCCCGGHClUhBBCCCGEEEOOFCpCCCGEEEKIIUcKFSGEEEIIIcSQI4WKEEIIIYQQYsiR56iIU97JfOBjWupohmVOJMmShtFow2hIwu2pp6ziDW3ooElEzuysqaSmjMZsTsVkTMagt1BR8xpOZ6M2dFAoio7cnDOwJ4/AaE7BZEjGZDSx4fPfaUMHTSJyCiGEEGLgZEVFiDjMmHYTJePOp2DMXEbnTyUnZxypqfnasEF1snOmpxYwc9qNjC9eSOGY2eTnTSYnZywptlxt6KApGXc5Uyctobj4axSOnkneqFKyhhVowwZVInIKIYQQYuCkUBEiDhZzEkajCb3e0PeaghIT0yslJZfiwq8zseRqpk+5mTkz72TGtFu1YUd1snPqdCbMZgsGoxGdTt/3uqIcPmdmZgnjihczufR6Zkz7HnNn3c2Y/AXasCNS0GEyWTDojShK9GNJ7ScfKIzKPZOSsZczZeINzJx+G3Nn3a0NOqpE5ByorMxUfn3ft1i8cJZ2aEg5Vb5PIYQQpyYpVISIQ6Rno2TTvp1UVH7E1u1vsrP68NvNpky6nnFjz6eoYB6j82eQm1NCqm24NuyoEpETIBKJsKtuPeU7P+Crrctpba3QhpBkzWD2jO8ytvi86IpP3lRyRo4jyZKqDR0Qv89NVfW/KNv5Plu2vqodBqBozAVMnnglxUXnUDBmDvmjJpEzcpw2bMASkfNIsjJTue/WKyjIy8aaZNYODymp9mTSU2xcu/hrnDN3onZYCCGEOC5SqAgRh94b7tW73mNn1RvsqltNe3uNNgwAk8GI2WRGbzDiD/jocnUSjoS1YUeViJwAwaCXrdtforLmLerq/40v0KkNQYnoSbJYMRlN6HQKHq+brq5OIpH+ViaOrN25h7KK16iqeYf6xnXaYQAUXe8qkxE1ouJ2d+FyObVhA5aInP3RKQrfXnIeY3KGs/LDz1j+7nptCAAGvZ5F86fy7LIf8NrT93P3txdrQ/oY9Hquu/Qs/vKrO3jt6ftZ8fT9PLvsB5w/f6o2lLu/vZjXn/nJYf88/dD3yEyzxcRX1zXx5N/eJhAMcuMV5zKheFTMuBBCCHE8pFAR4hgoRLdE5Y6YTcnYy5gy6SZmTfsP5s68G51yYIsWwN5926lv+Jy6PWvYsu2lmLF4nOycoZ6lHJ1iID/vbCaMX8K0Sd9h1vTbmTv9zpjYSCTCrt2f0tCwkdrdH1FZ817M+EApPatHNttICgsuoLTkGqZP+S5zZtzJjCk3x8R6PZ3s3r2B+saNVFS9FTMWj0Tk7M83zp3J7ElFVOzay/+t3qgdxqDXs/Tr8/nvX97GbdddRPaw1H635NFT+Pzo5ku58oJ5pKUkoygKOkUhe1gq37v6Aq5eHN8WvcPZWdPIyg8/w25N4vpLzsZsin0vCiGEEMdKChUhjoGiGMgbtYDS0iUUjFlAXu5UcnLGMzJnLMnJ2TGxjY2fU16xgtrdH9DlaogZi8dJz6lGr+AnT7yBknHfYEz+PEaNmkLOyHEMyxrdExSNiQA7ypezs2oldfX/IhJRD5ooDj0X3ZMmXM3YwkWMyZ/NqJzJjBw5lsyM2AMEvMEOduxcTmX1mzQ2fRYzFpdE5DwMu83KojOn4u/uZsWqDfgD3doQZk4q5PLz55Jqt7K7sYUdVXu0ITHOnz+NGZMK8Qe6eeGNf3H1Xb/llp8+w8at1Sg6hfPnT2V0buzWwGB3iCeff5sltz8W8+eOh/6Mo9MdE9tr9botVO5uonjMCM6ZM1k7LIQQQhyTU7pQWXLRPFY8dR+LF87i6sUL+rY2vPqHe/n57VeRnhK7TQFg9pRifvez77LiD/fx+jM/4eUnf8zP77iK4RkpMXHHMrfdZuW26y7i77+9h9ef+Qkr/nAfj99/E+PG5GhDxSnCZLIxZeJSLjzvEb5x4W+wJmWhoKDTKUAEW7Idi8WKyWQmrKoEAn70uth/VpGei/mBSkROe8oI5s68hYsv/A1zZ38HoyEZXd+cEZKtNiyWJAxGI6FQiFAwGPP1ETX+7WVZWRM4a949LL7o/1FccBZGvbVvzKA3YLUmYzZb0Ol1dHd3o/Y26/TQ/OeAJCLnQJ09p5Tc7Ay27axjW0WddhiA8tq91Oxp4q+vfcz9v36edufhCwd6VlO+NrcUvU7He59s5s2PPicUDtPR5eaPL62icb+DVJuVyeN7i85jFwiG+Odn2wBYeOZkWVURQggxKE7pQgVAp9Nx6cI5LL3ozL6tDQa9nmmlBdxx4zfQHbQt4urFC7j/livIzxmGTh/9q5uMBqZNKOCx+288ZH91PHNnptn4xe1LWTR/Ksk9DbA6vY6i0SN48K5rWDBzwkEzi1PF5NIljM6fj9mcii0pkySLHZPRhoLSt2oQ6g5Ss2sttbVrKNv5Fp1dsc8a0fWcKDVQicg5a9rNZGVNwmBIwm7LwWyyYu9pwo/0XJ273A6qqj+hZtc/KauMbebvjRmoVHsuc2d+n7S0MRgNSSTbhmE2JZPWc+xyhGjh0+bYTXXNJ1TVfEhZxcrYSdT+tzwdTiJyxmPGxCIiRNjST5EC4HJ7efD3r/DeJ5sPKaK0soalMSwtBafby9ovyvteT0+xcfOShYwYnoZOp6Mof0TM1x2rrTt309bhIntYGnkjj+0AByGEEOJg8V3NDFGZ6Xbqm9pY9tSrXH3Xb/nTyx/gD3QzriCHiWPzABhfmMtFZ00HYNWaL/n2fb9n6R2Ps+ypV2lu6yTVnsyVF8zTzDywuQGWXHQmBXnZ1O7ZzwNP/IMltz/GLT99ho83bMNk0HPJebPlLuMpKGt4KaqqAjp0ehNJ5hR0OgN2+4i+I229vna2l71CRfUb1Des6dsO1UvR9I8cTSJyWpOGoaoqiqLHaDBjMdn7lg96eyAc7VWUV7xGVc27NDZt0MwQn+FZ0b+jqqrodHrMhiQMejMmgwkO6sfZ0/Ap5ZUrqdn1Afubt2tmiW97WSJyDlRaio1h6Sl4vQGqdzdph4+J1WLCbDHhcvvpdLqx26zcvPQ8nln2fb42ZyJGQ/Q9kj0sLebrTEYD93z7kr5V4f959Ha+vWQhdtuB1afDcXS6adznwJpkoiAvdiuiEEIIcSxOi0JlS/luHnjiBbZV1BEKh1m9bgvbK/eQZDZRNHokAHOmjiPFZmXTjlr+svwjXF4/aiTCtoo6/vTyB3j9AfJHDmPE8PS457ZbLUwoysPp8vLsi+9TuWsvAB1dbv6yYjV1Ta1kZ6YycnhGzNxi6AuHw4TDYUKhIIGAl86u/fh8LtqdB+56R3p6OQBMZhv5+fMoKjwXgyEp+mKcqxuJzNndHcTv99DpaqajQ/sU+gOrCcnJWRQXnktuzjQUpf9nrPQrojuQMxTE43fi9jho66iPCTt42oyMIsYVLyI9LbryeeT1hMNIRM4BSrNbSUm24PYFcHm82uHjEggGuWTRbJ568FYuPmcWJqOe3Y0tvLZqA8HukDY8hk6vIyPVxiULZ/PIPdeSlXnkY6cdnV3odXpSbD3vQyGEEOI4xHc1M0SV1zYc0ni6q3E/iqKg79nilZGajKqqlNfUH7JlYu/+NpwuL2aLCaslene110DmzkxPIT3FSlpKMk888J2YIz1f+t2PKczLxmQykZMlhcqpprWtBlWNFg0+nxOXx8HefTtod9T2xfS+m+wpIzl3wX8ybdK1TJ14DWmpozAZDu1lOppE5HS6WlDVMN3dPjy+dtxuB23t1TExvSsOI0dO5byz/4vSkiuYMvEqjAYbBlN8F6Ztjkq6Q0FUNYzf78btacfpbqW5pSwmrjdnacllLDjjbiaMv5wxeWdGe2j6eehlfxKRc6B0OgU0fUaDZeyYHJZceCa2JDN7mx089ueV3Pur/6VxvwMANXzg8/D3z78T00D/vZ89w+sfbMDnDzJqRCYXLJh20MyHOlLPjBBCCBGvE/ObcQgwm2ILDog2GAeCR76DOBDauU/kRYZIrIqqlTja6/H5vXh9btocDVTWxh5L23uZN7nkmxiNyQAYDGZsSRnoDSbMpvgKh0TkrK5+G6fLgd/vw+3poql5J1u2vxATowBms51pE69FVcMoigGTKRlbUiZGXXwPJux01lFTuxqvtwt/wI/L7WT3nnXU7v4wJk5R9AwfNoHCMeegqmH0OiMWi53kpHQyM4tiYo8mETkTqTsUJhSKft61tnfxzAvvcc8jf2HTtugzeEZmpWMyGtjXdujzcXo5Ot289NZaNpfVoigKmel2bUgMa5JF+5IQQghxzE7Lq2uzycCksXmE1TBdbh8AXl8AvU7PtJIx2nByRwwj1W7F7fHhdHm0wzEON7fT5cHt8dHW3sXtD/35kGM9l9z+GNf98Ak2fHXok73F0Obzd7J5y7Os3fAwazYsY9OXT6IoMLZoERnp0SZspWeFLi1tTLQHIgKgoKphwuEQZtOR9/ZrJSJnW3sFGzf9hjUblrF2w8Ns3f4cI7InM674fCyWaNGjAqn2MSg6Y7SHJqKiAKFwkEhYRY3zwZJ7Gj5h3WePsmb9Q6z79GH21H9Mft5cigsXou/pn1AUHRnpRX29JZFItHE/FAriP8wDKI8mETkHovczxJZkxp4c38+uPy2OThwdLlRV5Z+fbeNfG3f0rSZbzEZmTypGVVX27G3WfmkMnaKQZDZCz+fokeRmZdAdCtHW4dIOCSGEEHE7LQqVzHR73xOTc7Mz+NHNl1OYP4IWRxdf7ojePdxWUYc/0M2sKcXcctUi7FYLOkXhjOnjueNb38BqMbOjqv6Q5wQMZG5Hp5s9jS1kptu55zuXMHn8aAz66PYRcXoZV3whZ8//MRNLLmNs4UJMhmT0xuhFXGdXc7T/IRjA73fR6W7B6+tkX3P02NZjlYic8+bcxtxZt1Jacjn5o2ZgNCajAF5fNF84HCYYDODxOnG6Wmluqz2uDg6bdRjnnHU/06dcz+SJS8kaPg6DIXrB7vM7+3IGgj7cng66PG20t8f2lsQrETn74+h00+JwYrWaGVswOMeZB4IhNpdFtwtefM4sFi+chUGvJz3Fxl03XUJBXjbNDiefftn/DZQxuVn8+LuXMX1CIV5/gI1bY7cDHsxuszJieBr+QDd7e7aVCSGEEMdDKcjI1EnUAAAEmUlEQVRJPfariwRbctE8rrvka9qXAfAHuvmfVz/gk43R/ec6ReHOGy/mrNmlh238bdjXxqN/fI0WhxPinJuefeD33XpFX1GjVbl7Lw/89h/al8UgKMzL5hd3XcNXZbX8/vnYY3MHU0Z6IWfOvQsAg8FCclIaRoMZl6+N19+8lVG5ZzC+aDG6niI1Eomwt+kLdlZpjriNQyJyFhUsZML4SwEwm2wkJ6UBCvtbK/nwnw9QWrKU3BHT+7rOw2qYml2rqG9Yp5lp4GbPuIXsrEkoig6LJYVkSyrdoSBbti+nrOJ1Zk+/nbSehnYAn99FWflLdBx0wEC8EpHzSC5bNIcbLjubsuoGHn7q1UN66eg5Bn3ZPdcxUnPox8EO/qyxmI387LallB50QmGvw32OPXrvDYwvyI2Jo+chkMvfW88bH/b/kMu5U8dy102XUF3X1O/3L4QQQsTjtFhROViwO0R5dQPL/vBKzC9gNRLhqb+/y4pVG+jocvf9EvX4Any0fis/f/LlviKlP/3NDVBd18TPnniBzTtq8PliH4YnTg/paQWoajjan9FT/EaI0B2Ibhds3PsZZZUraWmpwdFWx666T46rYCBBOdNS81HVMBE1ehSvgi7aaB+KbnUsr1jBrj1raXPU0dJaxY7y5cdVpACk9uaMRFBQUBQdkUgYiznaE7Hpq2dobPqK9vZ69u3fwZdbnzvugiEROY9k3RflNDucFI0ewaRBeAgjPcXI48+9yUfrt+Lp2balhlXqm9r47XNvHvI5drBIJILL42Pjliru/dX/HrFIMZsMXLJwDnq9wppNZVKkCCGEGBSnxYrKS2+v4fVVn2qHj8uJnFsMrpO1opKft4AJ46IrDXq9CVNPH0hrayXrNz6hiR4cicg5ecJ15ORET3cyGpMwGSyokTANjZ+zeetfteGDYv68+7BZhwMKZpMVg8FEOBxk647l1NX/Wxs+KBKR82gWL5zFTZefS9WeJh55evkhJw4OVb3fd1ltI7/644pBObRECCGEOO1WVIQ4UfY3b8Htaus7xtfraaerq4XGfZu1oYMmETmbmjcT7A6gqmECATdur4O29gZqd3+sDR00zc3bCYW7UdUQPn8Xbo+DvfvKT2jBkIicR7N63RbKahsZX5DL96+5EN1htqkONROKR3HlBWfQ5fHx4v/9W4oUIYQQg0YKFSEGKBh0s33nizjaG/H4unB2NVOz60P21H+iDR00icjpaK+kovotnM79eD0u2tsbKa9cTmfXHm3ooKnZtYqGxs/pcjnweJ20tNayo+JlbdigSkTOowkEQzz7j/doaulgwcwJLL14vjZkSCnMy+bOb12M2WTihTf/RXVdkzZECCGEOGay9asfJ3JuMbhO1tYvIU6WrMxUfnTzpaxev5WPNxzfCW4nUlZmKvfdcjmr1n41pL9PIYQQp6ZTulARQgghhBBCnJ5k65cQQgghhBBiyJFCRQghhBBCCDHkSKEihBBCCCGEGHKkUBFCCCGEEEIMOVKoCCGEEEIIIYYcKVSEEEIIIYQQQ44UKkIIIYQQQoghRwoVIYQQQgghxJDz/wEPWQVwOCBnpAAAAABJRU5ErkJggg==" + }, + "a99d39d0-2cdd-49b3-a988-f4d377c59bdd.png": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAxYAAABCCAYAAADKSUDbAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAADksSURBVHhe7d13fFNV/8DxT1bTlU7a0kVLKWWUUZANskEEFBABBcT9qI8oDvQZ/lRU5HlwAoLyKCoO9hCVvUR22ZTdltVF6W6TNkmb8fujbWzStDQtpRTO+/XqS8k9SW7u955z7rlnXEnzIE8zgiAIgiAIgiAIdSC1fUEQBEEQBEEQBMFRomEhCIIgCIIgCEKdiYaFIAiCIAiCIAh1JhoWgiAIgiAIgiDUmWhYCIIgCIIgCIJQZ6JhIQiCIAiCIAhCnYmGhSAIgiAIgiAIdSYaFoIgCIIgCIIg1JloWAiCIAiCIAiCUGeiYSEIgiAIgiAIQp2JhoUgCIIgCIIgCHUmGhaCIAiCIAiCINSZaFgIt7Wxw3qyYt505vzf0/j7etpuFoRbyt/Xk/++8RgjB3ax3dSojR/Rm/dfmYi3h7vtJkEQBEGoMdGwEG5o2hMjWbPgH4wd1tN2U727p10L5DIZAU28aBURbLu53k17YiTL5rzOvV3b2m66pSJCA1j88TRmTZ9su0m4Rfx9PXnj2TE0Dw3A1UVpu7nRkkok+HiqaBMRzGtPPYizUmGbRBAEQRBqROatcp5h+6Kj/Hw8eOWJkTz3yDAmjerHuOG9ue/eGNzdnDmXmIrJbLZ9i9CI9IiJIizYn1PxVzmXmGK7uV55ebjRJjKE9Mw81m2LpVCrt01Sr3rERBHStAmHTyWSlJZpu/mmmDp5OM89eh+5BZoqv8Pb051+3duhLtSyY3+c7eabIqCJF+9MHc/I/l04fCoBra7YNsktM/7+3rzxtzFIJBLOX7y155w9UomEv08eTnSLENZsPcjKDftskwAgl8kY2KsD058Zw5MPDyTQ35vYE/G2yQCICg/ilSce4PmJ9/HoyHsZNbg7rSOCOH8plSKb81wqkTD03k68/vRonnh4IBOG92Z4/3twd3XmbGKKVRkrlUjo370d0554gGfGDeaRkfcyZmgPYlo3JzU9m+w8tdVnm4Fjpy8S6O9N5/Yt8Pfx5HBcAqLUFgRBEBxV5x6Lvt2i+fytp7mnXSQuLk5QVrF5e7jzwMBu9OzcyvYtglBjazYfYMLLn/DKzG/JyM633XxHCGrqc1vcAXdzURLg541cIbPddMsFBnijcnNBKpXYbmoQwwfcQ9d2LTh/KZVft8XabkYukzHu/t78b+YLvDBxGAFNPJFIqt73Bwd15b1XHqVty1DkstLj7axUcE+7SN6eOh5fL+shSc88MoRnxg0moIknUokEiUSCys2F0UO68+Lk+5FW+K7wEH8ef3gQzYKaIJWVFvFOCjltW4byj+ceomV4UIVPLmUym/luzU5SrmXRo1MrendpY5tEEARBEG6oTg2LluFBPD5mAC7OTiSlZfHRN78w4eVPGDf1I96es5RTF65gNJhs3yYIgtBoqNxdGdyrI7qSElZt3o9OX2KbhHvaRTB6SHc8Va5cTsngdPxV2yRWEq5eIz0zlxXr9zLptc+Y8PIn/LRuFzp9CYF+3vTs3NqStl3LZvTu3AZ9iYGf1u2ypJ/7w3o0hVq6dYyia4dIS3qTycz1zFwWLt3MpNc+Y9zUj3jvixVcz8rDy8ONDq3DLGkrUmuKWLv1IAAPDuwqhkQJgiAIDpM0D/KsdY/38xOHMaR3R5LSspi5YAXZeRrbJJV07RDJxAf6ERLgg1QmpbjEwNnEZBYu3UxmTgEA93Zty98n3c+67bG0CA2gU3QL8tWFfPbdbwzs3p5+3aLRaHUsXLaF2BPxjB3Wk4eH9eLndX/St1tbWjRrSkp6Np999ytPPTyY6KhmZGbn88midVxKvg5lvSpD+sQwanB3/Hw9kEokaLXFHIqL5/u1f6DWFFn2edoTI+kU3YJPv/mFAT3a0z2mFc5KBTp9CXuOnGXRim0YjEZL+ppQOsmZ+dpk/Hw9eX/ecst+VeTr5c57r0zEWangvXkrSL6W5dB+R4QG8M7Lj5B2PZv/LFzLkw8NsOx7XkEhqzbtZ/PuY1bfGRUexGOj+xMZHoiTQo7JbMZoNKKQy1n6+27WbD5gSeusVDBhxL307doWT5UrZiA3X8OmP4/x67bYWg+BK//dgX7elteuZeby7pylds+x+ohPuWlPjKRHTCv+t2wzIU2bMPTeTri5KNHpSzhw4gKLVmy1utCsaXymPTGSvl2jK3xTZRV/c8VYLl69k2cnDCE8NACAlGtZfLlkMwlX0mw/4obsHWt7dh8+w9zF6y3/lstkjB/Ri0E9O1pin5mdz/drdnA4LtGSrn/3aJ6dcB8ms4mPv1lH3Pkrlm0TRvbh4aE9uZaVx8wFK7m3a1smPtDXst0edZGuUn7x9nDnsdH96NKhJW4uSkxGExk5+azYuI/dh85Yvb82Rg7swuNjBnDoZAIfL1pnuxnKGh/Tn36Q2JMJbP7zGC89PoK+XaMrHbcb+edzY+naIdLqfeNH9GbC8D5s23eShUs3W6UfNbgbk0f1Y9ehsyz4aYPVNltPjh3EiAH38POvf7LOTq8LZeXS+69MJCzYj6+Xb2XngVO2SSwef2gg9/frxPlLafx34Wq7DS5BEATh7lLrHgsvD3faRoZiNBnZ+OdRuxd8tiaM7MObz4yp1EUf06Y5s9+cQpvIEKv0/bpG06lthGVo1bPjh9KvWzRSmRQPd1fuu7eTJa1cJmXEgHuIDAtEIpEQHODDq0+Ool1UM6QSCQFNvBjUqwOUXfy9NGUEz04YYhlaAODi4kS/7u348LVJlVYgcnN24vVnRtOvezvLnTxnpYJBPdvz0LAeVmlrQl9sQF2oxUkup2kT+xd1ri7OOCsVqDU68vI1tdpvABelEx+88qjVvnt5uDF5VD+6dWhpSde3WzTvvDSBti1DcVLIoexYKeSl/1+RVCLhjWfH8OCgrnh5uCGRSJBKJPh6qRg1pDvhIf62b6lXNzs+FclkEiY+2J/RQ7rjVjZkyVmpoH+3aKaMGWBJV9v4OCLIz5t3XppARLOmSMuOebMgP/4+aRgqd1fb5PVC6STnzb+N5qGhPa1iH9DEizefGcPDw3pZ0u6KPcOfh07jonTiybEDLfvYJjKE+/rEoC8x8PO6XbUe5qZyd+Wdl8bTr3s7S2ykMilN/bwZP7x3pSFFtdE5ugVmzJyo0CiypdYU8e7c5WzcdbTWDeqKrmXmWv7fs+yY2ZtfdCkpHV1xCcEB9ssQyhqBfbtF069bW9Iyctl/7LxtEgt9sYHDcYnIZTLat7Lfs0FZg7Rrh0gUcjktwwLp2Ka5bRJBEAThLlTrydtB/t4M7duJEoOJdVsPkltQaJvESquIYJ54aCBOCjlb9h5n5vyVLPltN+cuptCmRQi+3h54ebiz5/BZwoL96NqhJZ4qV46cusgv2w7SqW1zfDzdOXcxhe9W7+Ce6BZIpBIOHI8nIjSADq3DcXNRsuGPo5w4f5l2UWF4uLuw5/BZtu+Po2ObMIwGMzsPnqJP17aMGdoDg8HE8g17mf31WlZu2EdaRg7RkSH4equQSqUcP3sJyibwhocE4KSQE38ljfe/WMHPv/5JoL83zYL8kEmk7DxY9Z29qrRrFU5EqB+n4pO4lJTOkD4xzHp9Es5KJ+IuXCWgiRcDerQnK6eAzXuOO7zf5RN+/X08cXNVsu/oeT6Yv5K122Jp1TyYQH9vNEVajp25hMrdlRcn3Y+3lzuxJ+L58KvVfL96B5t2HSUwwJeQpr5Wk7fDgv15aGh3NEU6Zn21mgU/b2LtloNcTrmOn7cHx89eJk9d/TlRFa2umI27jrJy4z527D9Jl7LGz66Dp+xOKK6v+FD22c1DAnBRKjiTkMTs//3Cd6t2IJdJadU8GG8Pd46cvoimSOdQfGJPxLNy4z5WbtxHTNvmeLi78sVPG/j4m3WW1zfuOmr5veWxVLm5YDSaWLZ+D7O+XE3ClWvEtAnHU+XO1ZQMktOzbH9CtSoe6yOnEunZuTU5eWpen/Udi9f+YdmXihOQ7+/XmWH3diYzR838nzYwd/F6ft0ei9lspkVYIMEBPhyOS7BcCJ9JSKJNi1BahDXFy8ONuPNXeGnKCIL8fFi3I5ate04AcC4xxfJ9gf7ehAX7s/T33cyYt9zy+rptsVZlTZfoFgzs2YG069n88+Of+H71Dn7bcYjM7Hw8VW4cOZVo95ypKS8Pd0YM6IJUImHtloM1PqfLFzy4mpZZ5eRtW8EBPowa3B2z2cyvW2PJyCltbAUF+NCxdTghAT7kFBSSmp6Dk5OcAT3a8+iDffHxdCc7T11pUv+s6ZP5+6T7GXd/L3rERJF8LYuPvv7lho04mVRC95gopFIpuw+dxmisPJxVqysmOMCHsGA/4q9cY83m/RjspBMEQRDuLrXusXBUt45ReLi7cvj0Rb5duR11kQ6T2Uzc+SssXLaFIp2eZoFNaFphSEaBpohfth3kakoGumIDRTo9qzbvJyu3AIPZhFQqoazjA4D0rDx+2xFL2vUciksMZOWqWb15P+pCLUajGams9A5y785tUMhlbNlznF+2HkSnL8FgNLL70BmW/b4Xg9FI6xYhKJ3+ulNvNps5fvYS73+xgtTrOej0Jew6eAadvsTyuY5KTc9CKpHi4e4CQNvIEBRyOW0iQ5BKJDT188JJISczt/RCoDb7DVCk07NwyWbmLP6d3AINak0RR04nYjabLZOGY9qEE9DEi0tJ6cz7cb3l4kNdpENfXPnCrEinR6svQeXmQpd2kchlMgxGI7En4pkxbzlXUjNs31Kv6iM+5UwmE38cPM1781ZwJTUDg9HIqk37uJKWicrdlYiQ0iFJtY2PI7S6Yv63fAvrtsViMBo5ejqRSykZSCQgk9+a7Nw5ugXFBiM/rC0d9mQym9HpS1j2+x5OXbiKp8qNyGaBlvQ6fQlf/LSBjOx8esa04p/PjSWqeTB7j55jVRWrK9VUgaaIEoMBHy8VXdpHIpVI0OlL2LbvJB9+uapGPanV8VK54uHmjEarR1341zDDm81ZqeD5R4fh6+nOxj+PcjohybLtz0NnSUnPRuXuyrTHR7Ji3nSWfPYaz08cRnCAb7WTxCuKDAvkrb+PI6JsCF1V8tRF6ItLcHF2wt3V2XazxTcrtvHItE+ZMXeZGAYlCIIgwK1sWPh4umEymTibmFRpqEBqehb56iKUzk64OpeuLEXZcIALl1It/06+lmU1RttWwpU0qwuJcxeTSb2eY5UGwEPlgr7YwJmEZNtNJFxNQ1dsqFSplhiM7D581qoCzc1XU1LLsfsA2XlqSgxGQpr6onJ1Jjw4gMspGQT7+xDRrCmeKlfkMikp6dlQy/0GyFcXEXfB+rit2xbLw1M/sozj9vf1xEkhJ+laNvpig1VaezKy81m2fg9Go4nRQ7qz5PNXmf3mFAb37mhZ5eZWqo/4lDMYTcRduGJ13uqLDaRl5Fhd0Nc2Po5IupZZad5Afg3vot8MXh7uNPH2wFmp4M2/PcSaBf+w+uvaIRInhQz/JtZDvjKy81m5cS8A7VuFcS0jl2Xr91QqCxx1OiGJDbuO4KxU8PS4wfz06au898qjdO1Q2sioK6lUAtL6LSadlQpeemwErSND7Da21Joi3v9iJUdOXbSc3yajiaS0LLbuPUFxiQGTsfJx/PcnPzP2xdlMePkTZi5YxeWUDIL8vXnu0fuqbdwWaXWioSAIgiDUSq1rzCJdMXpdMa7OClqE/XV3sjpmzDW6aL0VTGYTxXbuxN9KqenZ6EsMeKrcCA/xx83VmX1HzwEQ3TIUpZMCg9FkNXShvvfbkc/efegML7z7P1Zt2kd6Zi4RIQG8MHEYC2c+X2m+zJ1Iqai8ak59x6ehyaRlF9u1IEFiea+7qxJfb5VtklpZuWEfU2d8zcZdR9EUamkbGco/nxvLZ289Vec5LfVN5e7Kv154mG4dW7L38FkW/LzJbmMrt0DDfxauZtJrnzH2xdmMe/ljXv3wW9Izc5HLpFxNq7qH0GA0cvzsJT5ZtI7sXDUBft4EB/jaJrNQKBQoGuDmgCAIgtD41bphkZGVx7XMXGRSGf27R1smzFalSKtHJpUR0zrcdhPBTZvgqXJFU6i9JXdfdfoSXJROdicctgwLwtlJTr66kNz8+t2XfHUhmkItKjcX2kY1o7ikhAPHL5CZq6Zjm+aENPWluMRAemYe1PN+64tLMJlM+Hp5WL3u7+tJiwrDWmypNUUsX7+XaR98y1P/XkDsiXi8VG6Mu7+3bdI7ir+vJ2HBfhiMRvLyS3vJ6jM+t4vsPA0FmiKKdHpmzF3G2BdnV/p7eOpHlVYdahMZwmNj+lOo1fHr9kOoXF2YPKrfDcuNmsrMKeDbVdt57u2v+Ps7C0m4kkZoYBNGDe5mm9Qh5XnU3UWJyu3mTo4P8vdh5quP0jYihB0HTvHFjxscWr3M39eTQb06otcbOHq6dF5VdUoMBowmE5hMmEyVGy/l/LxVuLoq0RRqG/W5KgiCINx6tW5YmMxmdhyIo7jEQKvmwcx8bTKd2kYgl8ksK4r8+4Wx9OpUuh573Pkr6PQldOkQyTPjB6NydUYqkdCjUyumPjYcV2clp+OT6jwmuiZOnruM2WxmWN/OjB7SHWelArlMxsiBXZg4qi8yqZRDJxPs3jm8mXLz/2pYdGkXydWUDNIzc4m7cJXmIf6EBweg0xWjLtRCPe/3leQMinTFtG8VxoODuiKXyejRqRUzX5tEcICPbXJ6dWrN7DencF+fTqjKhvZotXpOxSdRYjDetAvG24FMJsHf19PyO8OD/XnlyQfw8/Hgakom8WXLvNY2Pjp9CU4KOSP632P3WN8qJQYjBoOBAB9PxgztUWUMzyYk46J04vmJw+jZqXRp3+r4+3rywsT7Ubm6sG5bLD+v20Vc/FVaNQ/muUfusztkqfzJ04N6dqBdy2a2my0eHNSVWdMnW+2HulDLuYupmEymOj94MDtPQ0Z2Pq6uSlo2r/xgudpq2zKUd1+aQFM/b9ZuO8jXy7ZUOi/skUokhAX7MXlUP2a/OYUgf28On0rgRNmCDfbIZTKiwoOYOnk4fr6eXEy+XuUT3gEimjXF2UnBtczcavfp8YcGsnzu68yY9ugNzwFBEATh7lCn51hIJRL+9uh9DOrR3rJ8bEXFJQa+XLKJPYfPWpbivLdrW7uTDZOvZTHrq9VkZOdbnmNxOeU6//7kZ6s1/Cv+W1Oo5d05S+nfoz0TH+hrWfu9/P0HT1yw+nf55zkrFbz1wjjatgy13Q3MZjOnE5Kt1mUvf5ZB+W8pZ7tftfHqUw/S5542GE1GvlmxnW17T3BPu0hee+pBnJUKktKyeOfzJaiLdA7vt+1xqq7RJpVIeOvFccTY3G03GI1cSckgMizQ6jkW5ce0fFnaikxGEys27mP15v22m2pk7LCe1T7PwPZZBvUZn+qeN5GvLuTjRessK2U5Gp9yIwd24fHRAyrloaqeY2H7W6r6/Y6q6hzA5jkWvl7uvP3iBEKDmtgmA5v9lkokTH92DN07tiT2ZAKffPMLJrOZsGA/3p46Hk83V1ZvPcCK9aXzL8p169CSlx8fiUuFOVfYiX1154pOX8JXSzaxt2x4YW2VPyviTEIy73+xwu7Fdk2eB3LhcqoldrOmT6ZV82DbJBYVy06qSF++YMGn3/5qdU5Vd0wqlrP2SCUS3nlpAi3Dg5j3w+/EnkywTQI2v1enL2Hej+trvPqVIAiCcOeq3BpwgMlsZuHSzXy06BcSr16juKR0/oTJaOJ6Vh4rN+7jwLELlrRf/LiBVZv3k1ugsVTOhVo92/ed5O05y6qs7G42nb6ED79axbZ9J1EXajGbzZjNZvIKClm79QAz56+sdPFXX7Jy1QAUaLScv1h6gRp/KcVyLHILNKiLdFDP+20ym5mzeD2H4xIxGI2YzGauZ+XxyaJ1HIqrfHFx4NgFVm7cx/WsPExly0wajEaS0jL5aNEvtW5U3G4OnojndEIShVo95rJzVqst5ujpRP7x0Y+WRgV1iM/GP46yeusBq3zREExmM/N/3MiRUxfRaqueJ5Kdp+HtucvYXuF3VmXciN50bdeCzJwClvy6y/L7rqZmWoZL3dcnptKcnENxCfywdqfV+WXP1r0n+X3nYatjV1xi4GxCMu/NW17nRgXA3iNnuZ6dT4uwprSr5tkOt4LZbKZQq+d0QhKzv17Lf75aY/ecqshkNJGZU8CqTfv458c/VlvO9u7ShlYRwaSkZ3Hi3GXbzRbZeRpOnrtMicFAwtVrnKwmrSAIgnD3qFOPhSAIwt2gvFcp/moaH1TRQGzsVO6uvD/tEfx9vW5KT48gCIJw96lTj4UgCMLdYNveE5y5mFLtvJDGTCqR8NTYgYQENuHAiQuiUSEIgiDUSq2fvC0IgnC3MBpNnE1MplN0C6IjQ5HIJJyJ/+shdo2ZVCLh8YcGMqhnB85fTGXu4t/FU7QFQRCEWhE9FoIgCDWQkZ3PzAUruZicTlZOge3mRstkNlOk13P2YjIfLVp3Rw7zEgRBEG4NMcdCEARBEARBEIQ6Ez0WgiAIgiAIgiDUmWhYCIIgCIIgCIJQZ6JhIQiCIAiCIAhCnYmGhSAIgiAIgiAIdSYaFoIgCIIgCIIg1JloWAiCIAiCIAiCUGeiYSEIgiAIgiAIQp2JhoUgCIIgCIIgCHXWYA/Ik8tkPDKyD4N7d8Td1Zn0rDzenbOU7DyNbdK7xtTJw+nXPZoziSn8d+Hqm/oE3LHDejJ+eG+uZeQy66vVZGTn2yYRBEEQBEEQamHkwC5MfKAfGdl5d/V1lsxb5TzD9sVb4ZkJQxgxoAtKJwUSiQRNkY5dB0+h1RXbJmXssJ7MfHUSIwZ04UxCMjl5atskjZ6vlzvjhvfGw90VVxclx05fJLeg0DZZrT02uj/+Pp64ODtxOeU6SWmZtkluCV8vdz7+5xM8PW4wwU19OXj8gm2SWyYiNIDP336Gx0b3BwmcSUi2TVKle7u2ZfabU7inXQt27I+z3XxLzZo+mWfGDyEjO7/Ocb2d4nM35HuAaU+M5M1nx9C/ezsOnoy3WwbeCjWJfXlMjCYT5xJTbDc3mNvlGNalTLmTlJ9Lw/vfQ+yJCw7F43bK9/V5XkklEsaP7MOrTz7AY2MG8MiIPkwY0YeYts3t1ineHu68+uSDPP/IfUwa1Y8JZelvt7xYF4099k+MHUhAEy9U7i7k5mu4cCnVNsltpSZlfm00yFAoLw932kWFYTaZ2fTnUSa99hlTZ3x9w94KM2A0Gm1fviNk52k4n5iCyWTiSkoGaRk5tknq5OjpixiMRq5n5d02J7vJZLJ9qcEYjbfPvtwubpf4NKZ837ZlKPNn/I0PXplou+mGTGYzmBukA7mS2yX2jrqdjmFjKVMCmngx+80pzHnraXy93G03N5jbKd/Xx3k1aVQ/Hh7WC28Pd6QSie1mK85KBf94/iG6tG+Bi4uT7eY7TmON/f5j59EXG0hNz+bATbpId8T4+3uz+KOXGTO0h+2mG7qZZX7DNCxUrni4OZNyPYcV6/fecMhPVq6aEoMBTCZMppoFuDGa//NGxr30MTPmLrvhMXHUms0HmPDyJ7wy89sG7Z7LzS9EU6gFwGBs2Fjma4ooKtJhNpsbzUVAfbud4tMY872vlwpfLxUyec2L1muZuQCYTGYa8jS8nWLvqNvlGDbGMsXNRUmAnzdyhcx2U4O4nfJ9fZ1Xvl7udI+Jwmg0smrTPia99hljX5zN2Bdn8+9PfrZNTtcOLQkL8iM7T8OHX65m3NSPLOnXbD5gm7zRauyxX7/zCBNf/bTBrrMCA7xRubkglVbfUC1XX2V+zWu/m0gqlYBUilavR12ks91ciclkwmwGjVaPurDIdrPQiJjM5tI7AEB65s3tlXFY2b6UGIxkN2CX6+3kdorP3ZLvyy9ANUVa8gqq77WtT7dT7B11uxxDUabU3e2U7+vrvPJUueHu5sK1jDw27DxywxuJ/r6eOCnkHI6L59iZi5Z8eqe5G2J/O6mvMl9u+0JjNe2JkXTrEMWCnzbSoU04vTq3xs1FiU5fwoETF1i0YqtV5p01fTJBAb7MnL+SqOZBPHRfD7xUbhiMRvYePV8pvZ+PB89OGEJ0yzCclQpMRhMZOfksXruTw3GJAKjcXfnglUdp6ufF18u3svPAKcv7AcKD/Xl76ngAPpi/kiupGUSEBvDOy4+gcnW2pLtwOdXuXYtyfbtFM2ZID0ICfJDKpGi1xRw7e5HvV+8kt0IG8PVy571XJhLo52157VpmbrWT5Lt2iGTiA/0sn11cYuBsYjILl24mM6fAkm7ssJ48PKwX/1u2mZCmTRh6byfcXJQYjEaOn7nMgiWbUGsatmC4WVTurkx+sC/dY6Jwd3VGIpFQYjAgl9m/w2d7DAu1erbuOc7y9Xsx2HTvln92z7Lz1WQ0cTklg0UrtxF/Jc0qLZbP7ktQgA9ymQyT0YRZYsZo526Ds1LBhBH30rdrWzxVrpiB3HwNm/48xq/bYht95VR+Dv687k/6dmtLi2ZNSUnP5rPvfuWphwcTHdWMzOx8Plm0jkvJ1y3vcyQ+naNbMHZYDyJCm+KkkGMymsjMLeDX7YfYtvcEJrPZbh5u1TyYNQv+YfVZS3/ffcfcXZQgYXj/eyzlptFk4vSFJOb/tNGqDAKICg/isdH9iYoIQi6TodOXEHviAt+v/aNSGaFyd+XJhwbQrUOU3SEfNyq/bmdKJzkzX5uMn68n789bbnVOlisvs52VCt6bt4Lka1lMe2IkPWJa8eWSTej0xTw5dhB+vp5gMhMXf5X5P1ofc7lMxvgRvRjUs6Ml32dm5/P9mh2Wuspe3aBydebrD1+0/Btg9+EzzF283uq18rqwbYtmuLg43bDM8vZU8eJjI2jfshkSqYSsXDWL1+68aeO5G5pUImFInxhGDe6On68HUokErbaYQ3Hxds/ximp6c7VcTn71531NYk+F+Bdoili8eifPjB9C8xB/JFIJeepCflr3J3/Gnrb6bByMvSP5vjGyV+6XUxfp7OZxR+v79q3CeGRkHyLDApHLZBSXGLhwKZVvV20n+VoWlNWDEx/oa/W+iQ/0tXqtqv2pLw2yKlR5QNKuZ1d7Ae2IaU+MpPc9rVFrtHh5WI8TNZvNbN17gq+Xb7W8Nmv6ZIIDfEm8co0ObcKtxjjapm8TGcIbz4zGU+VmSVPOZDSxeusBVqzfC8DkUf0YPaQ7sSfi+XjROqu0owZ3Y/Kofhw6mWDZZu/krK5hMXJgFx4fPQCprHJnk+2Fi73Ko7qKecLIPjw8tKfdz85XF/LxonWWSWLlJ3OBpgiVmwsSmzGi9iqkxsjf15N/v/AwoYFNbDeBnVg9OKgrjz7QFydF5Tb7qfgk/vPVKvTFBiiLzz+fG0tEs6a2SdHpS/hqySb2Hj1neW38iN6Mva+n3QZNcYmBL5dsYs/hs1BW2b314jhi2jS3TXrLC5n6MnZYTx4Z0YfMnAICmnhB2R2vlPQcQgN9Lefk5t3H+GbFNnAwPvbyZrkSg4HvV+1ky97j1aaryDZ/Nkbl+T4zpwBfb1WlseEnzl3mwwWrLI3W7jFR/H3S/bjbOTap17N5b95yS1nkrFTw1gvjaNsy1DapRXXlV2PwzksTaB0RwvwfN7D/+HnbzYQGNuHdlyeg1uh45/MlqIt0lobFqfirdGwdXin/VzzmSic5rz89is7RLSqVySajiRUb97F68367dYM9tuV4dXVhxbKw/PM9Va6YTOZK8c8t0PDB/JVcTa3bYhMNTSqR8NKUEdzbtW2l4w2Qej2HmQtWkpGdb/cC0FbFcnzW9Mm0ah5sm8RKxfxQ09hTIT4+nirMZjPOSoVV+gJNEf/931qr+Zg1jT0O5vvGqrpy314d62h9361DS15+fCQuzpVvsFTMlzU5r+ztT3265atCOSsVjBnag9YRwVy8ms7+Y5UL19roERNF85AAlE4KziQkMft/v/Ddqh3IZVJaNQ/G28OdI6cvoim7OzCoVweC/H0IaOLF1dRM5nz3G1/+vAmZVErriGCUTk7sP3oOiQSmTh5BSGATEq6kMevL1Xy9fCu7Yk/j5+NJSFNfAv18OHbmIupCLQUaLd1jovDycLP6PqlEwmNj+qNyc2Xlxr2kXi/tdsotKGTdtlhWbtzHkVOJ9OzcGnWh1u6qEABTRg/A18edpb/t4cMvV7N8/R4OnUzAw92V61l5xF/+q9Wr1RWzcddRVm7cx479J+nSoSWA3dW3WkUE88RDA3FSyNmy9zgz569kyW+7OXcxhTYtQvD19sDLw91y4do2MpT2rcJQOilIy8jl00XrWLh0C04KOVHhgSgUCg4cj0env/FKCrezx8YMoFPbCFKv5/D597+x4KeNrNl8AE2RlnZRzcgtKLTEKizYj789MhS5TMa67bF8+OUqlv++h0vJ6bQMDyY00JfMnAIup2SUfvbo/nRpH8mlpOt88u06vlyyiW17T+Lm6kxks6b4N/Fkz+EzGI0mwoP9eerhwTg5ydmy5zgfLljFT7/+yY79J4mOCsPD3ZXDpxItq0KFBfvz0NDuaIp0zPpqNQt+3sTaLQe5nHIdP28Pjp+9TJ765q061hDaRobSoXU4bi5KNvxxlBPnL9MuKgwPdxf2HD7L9v1xdGwThtFgZufBUw7Hx9vTneiWzdiy+zjzfvidxWv/YNvekwT4eRMa2ASFQs6fh85Y5eFrmbl0jm5BYtI1nvu/r1i5cZ/l705YuaU837u5KElKy2LuD+v5aslmsvPUtIsKw8fLnYTLaWRk56Nyd+Wlx4bj66li58FTzPpyNT/88gcnz18hPNifZkF+GI0m4i5chbKe2KH3xpBXUMiCnzcx57vf+OPgKfx8PAkK8GHXoTPMmLu8UtnVmLRrFU5EqB+n4pO4lJTOkD4xzHp9Es5KJ+IuXCWgiRcDerQnK6eAzXuOQ1ndFhHalCB/H7LzNHy5pPTYZOUW0L5VOG6uSo6duUSBpoj7+3Vm2L2dycxRM/+nDcxdvJ5ft8diNptpERZIcIAPh+MSyMpVW+qG8nonJ0/N67O+Y/HaPyznbOyJeMu+q9xdmf70KAKaeJGUlsVXSzcxd/F6Nv5xBL3BgFKhsNTnrs5ODOjRHh9Pd+RSKZv3HGPGvOXsO3qOmDbN8fVSkZlTwPnbZCGR2urTtS1jhvbAYDCxfMNeZn+9lpUb9pGWkUN0ZEhp41sq5fjZS5a8Ux2jyWQpxwf16kATbw/bJFYqrqZZ09gXavWW+Hh5uIEENu8+bhUfH093rmXkWuLjSOwdzfeNVcVyv/yv/DrLyUnBn7GnrVb2dKS+Bxg9tCdR4YFs2XOcd+cuY+lvu9kVexqpRILBaOTYmUsAnEtMsXx/oL83YcH+LP19NzPmLbe8vm5b7E1dZfRGKt+arie+Xu7Mn/E3lnz2GkP6xHAxKZ0ffvnDNlmdmEwm/jh4mvfmreBKagaGsolRV9IyUbm7EhESUDl97Bn++dGPnE5IwmQ2s//YeQq1OhQKGU5OcqLCgwgL8SMzp4AvftzAldTSi46M7Hzm/fA7l5Ov4+XhQtuWzQBISssk+VoWPl7udGnfwvJdEc2aEhzgS1pGDifOXba87qh8dSFSiZSYNuF4e5beObiSmsEni9axfucR2+Q11q1jVOnF6emLfLtyO+oiHSazmbjzV1i4bAtFOj3NApvQ1OYO16Xk68xcsJLTCUkYjEb+OHiKfE0RUqkEOx0fjYqvlzvtopqhKdLx9bItxJ2/gslsxmA0kq8uqrRQRPtWYXi6u7LnyFmW/b4Hnb4Ek9nM4bhEftl2EKlUQpvI0vNE5epMmxah5KuL+HLJJsudodwCDd+u2saVtEwCfD0J9PMBoEv7SDxVrhyJS2RRWXwoW02sxFB6h72iIp0erb4ElZsLXdpFIpfJMBiNxJ6IZ8a85Zbz+E6QnpXHbztiSbueQ3GJgaxcNas370ddqMVoNCOVld69cyQ+lJ3b0//zPas27bPcXcst0HDg+HlKDMZKd/nuJifOXubfn/5E3PkrGIxGtu09wakLV3FROtEiLBDKhkL4+3pxpmwoZflwnQuXUvlp3R9o9cW0jgixfKa3pzsKuZxjpy9y8PgFTGYzGdn5/Lb9EFpdMUH+1d9dbwxS07OQSqR4uLsA0DYyBIVcTpvIEKQSCU39vHBSyMnMrTzx88S5y7wx+wfLsTl6+hLZeWrkcjkKeWkvRufoFhQbjPywtnToi8lsRqcvYdnvezh14SqeKjcim5XGx1ExbcJp6ufN9aw8/rNwteXz1UU6Vm7YV6mHHiitg7fsZ9HK7ej0JVxNzeT42UtIJBJkjb2CAHp3boNCLmPLnuP8svUgOn0JBqOR3YfOsOz30qGVrVuEoHSSs2bzAcuE6zf+uxh1kY4Ll1Mtr419cTaPvvKp5ebdvz/52fL60t93Q1mvZ8X0FVfTrE3si0sMLF+/l29XVR8fR2LvaL6/Gzha3wPkF2gwm820jgihWaAflF13frtqu6UH/nbVIDlbArg4O9ntJqsLg9FE3IXSi79y+mIDaRk5SCRUWqnFYDQRd/6y1bjqK6kZPPGPLywZ1svTHblMRlpGjqWXoZxOX0LK9WxkUpmlojCZzew+fAajyUTn6L8aFj1ionBzdebkucuWoRa18cMvf5CSnk27qDC+fP95/vfBC0wZMwBvm+FfjvLxdMNkMnE2sbSBVVFqehb56iKUzk642nTLHTxxwWr1gyKt7oYT0RqL8gl2+eoiUmxib09YcABSqZQhvTuyZsE/rP6ef/Q+ZFIZgWVDdny9PfD2cMXLw41P//2kVdqln79ORGgATk5OBPmXFjTBTUv/m3D1mtV3ViUjO59l6/dgNJoYPaQ7Sz5/ldlvTmFw746VhlI0dglX0qy61c9dTK6UV3EwPuX6dovm87eeYsW86Za0rzzxgN2hVHeTsxeTK+XzSynpVhckoYG+KJ3ktG8Vxqr5b1od7xnTHsXVWYmHytUydFVfXILJZKJT2wg6R7dAKpHg7+vJuOG9cHV2okBdunpJY5adp6bEYCSkqS8qV2fCgwO4nJJBsL8PEc2a4qlyRS6TkpKebftWziYmW41NzyvQ8PL73/DEG3O5lHwdLw93mnh74KxU8ObfHqp0jnftEImTQoZ/E0+rz62p8gnEZxJTarziTWZOATv2nbR67UbzBBoTD5UL+mKD3eeVJFxNQ1dsqJdrHVu1jX12nprdh6znUtiLjyOxdzTf3w0cre8BVm/ez+mEZJoFNWHW9Ml8+5+pTJ0yguCAv9Lcrm5ZwyI7T8PUGV/zzL8WcCgukeAAX8be19M2Wb1QKup+Z7HYgcbA4VMXSc/MIyzIj/Bgf0smK1AXsffIX2PoaiMjO5/XPvyOOYt/52xiMu5uLowa3I2FM59n/IjetskdYsZcp0bPncpoNGG00ytgS152Z7wmyldGc4S5rLekpnYfOsML7/6PVZv2kZ6ZS0RIAC9MHMbCmc/TJvLuumOEg/EBeHhYL16aPJxmQX53XGOsPiidrG86yGTSSmO9q7N930kSk9Jp4uPBW39/mFXz3+Sr958npk1zCjRF/Loj1vYtjU5qejb6EgOeKjfCQ/xxc3VmX9m46uiWoSidFBiMphtevNkjk5aVK/WsuLjxDkWrDyazqcGPye0Ue0fz/d2gNvW9Tl/CjLnLeH/+So6duYhCIWdA93bMefsZpk4ZUWl+2+3EsV96E+QWaFi9aR8arR7vW/AwHn9fT8KC/TAYjeTZaYnfSJG2GJPJTFiwH/6+1q19Z6WCkABfiksMVhWBWlPEkVOJeLi50LFNOFHhQQQF+HD+YspNGYJiMpvZc/gs785ZxmOvf84Pa3diMJgY2iemyknGN1Kk1SOTyohpHW67ieCmTfBUuaIp1JLfyMflO6LEYMRgMODq7ISbW2mPFGXzZTq3jbAMPyhXfpdx3fZDVt3VFf/+7/MlUDakTVOoJSungBdnfF0p3dgXZzPx1U8tEzyLtHqkUineniqr72wTGUJTm7vsFak1RSxfv5dpH3zLU/9eQOyJeLxUboy7v26N0MbIkfgoneR0j4lCIpUQezKBF95ZaEkzZ/HvFJfcuKF5N1E6yWnXMhSjyUiBprRnISM7n+ISA4fjEisd5/K/l9//xrKUY5d2kTQL9COvoBCttvQCxmA0knj1Gv9duPaOmKNSnu9Vbi60jWpGcUkJB45fIDNXTcc2zQlpWlqfpGfm2b71hrLzNBRoiijS6Zkxd1mlYz32xdk8PPUj1m2rXQOtQKPFaDISFR50Vw8DrEinL8FF6URHO4tktAwLwtlJTr66kNz8+q03b6fYO5rv7waO1vcVxZ2/wqyv1jBl+hw+XrSOwkItPWNa0anCiJjbzS1vWNQnmay067x8ln6riGBee3oUfj4eXE3JtLuc143EX0kjMycfPx8PXnnyAcKD/QEIDvDhX8+PpXloANez8jhx7orV+/YeOUdBoZZuHVvSKboFUomU3YfPWKVxlK+XOzNfncSTYwcR0rS0AWEymzmTmEy+utBqrK2j4s5fQacvoUuHSJ4ZPxiVqzNSiYQenVox9bHhuDorOR2fdEtXcpBKJEydMoJVX7zB5289ValhV98ysvPIzlXj661iyuj+qNxdCQ7w4d2XJ9hdBeTCxVQ0RTru6xPDxAfvrfYpttl5Gq6mZODrreKVJx+gfauwau+KX0xKp8RgYFCPdvTo1Aq5TMbIgV3453Nj7a7S0atTa2a/OYX7+nSy5AetVs+p+KSbNj+goePjKEfi4+LsjNJJgdlsJj0zl5w8Dc5KBUN6d2Tc/b2qzGeWGxFB/owe0r3amNZGm8gQFv3nRZbPfZ3xDdg49PVWWY6fv68nL08ZSUSzpmRkF3DsdOmylhcupZJXUEin6OY8P3GYpcyqyj3tWyCTSfh1eyz/9/kSJr32GRNe/oR/fPRjrcruqvTtFs3Pn77Kj5+8Qt9u0bab61X5A6nK5z5dTckgPTOXuAtXaR7iT3hwADpdMeqyh1Y56mxCMi5KJ56fOIyenVrVKJ+X30AJ8PFkzNAeVb4n/nIqBRotzUMDLKt3SSUSnJUKHhzUlTeeGW37lnrnrFQwY9qjrPriDWa8/EiV+15fTp67jNlsZljfzowe0h1npcJSNk8c1ReZVMqhkwmVhhfXh9rEvqYcib2j+b62Gjr2jnC0vgd46+8PM+3xkbQIa2rpnbiUlM61rDykUgmudpbjLtLqARjUswPtyub93iyO1Pd31HKzfbvaryRsl0qlbLnZ5iEBVkt0VqV/92ienXCf3RNXqyvm6xVb2X2ocqPhjWdGE90yFF2xgXx1Ie/MWVppqFF1+43NcnI3WiLQdrnMGy1DVnEJshstm5d8LYtZX6229MyUf7btEprl+wjUeVlIlasz7786iWZBpQVTxWVDbxV7y/uazWaSr2Xj5+1BUnqm1Tk8dfJw+vVoZ7eb0nZJ2JbhQbzx7JgqL3ArLuGncnfl/WmP0CyodBJXOa2umIzsfAL9va0++96ubfn7pPvtzgWwXXqwtho6PuXnYPnSe+W/+eCJC1b/vpxy3XIcHYnPjfKm7RKLVBMnbtJysyMHduHxMQOQSqXkFmgszzq4VaorU3T6Er5ZsYVdsX+VhWOH9WT88N5VVqIVj8nT4wZzf7/OdsufQq2e/cfOs3jNjkpzOxz17IQhDOvbGYCktCzLsq63yqtPPUife9pgNBn5ZsV2tu09wT3tInntqQdxVioq7VP5eViT88fXy523X5xAaFmetGVvuV5pNUtT2y43W92S1/aWm8VOPVBV3VEb5cvzenu4YzKZ+OGXP+q0iImjnKtZItlsNnM6IZn/Llxd6Zx19BqoJsfMkdjXJj41jT0O5vvaaujY21N+XN3dXCot7+pIfU/ZNWpVyw1XtWRvVUvU3ozlZh2p7++oHgtbWm0xR08n8o+PfqxTN/qu2DN8smgdSWmZljHuBqORswnJvP/FCruNCsoKZYVCga+XO/uPna/UqHBUdp6G71bt4PylFMtQDJPZTG6BhjVb9jNz/spaf4fJbOaLHzewavN+cgs0ljsshVo92/ed5O05y2o17rcu1EU6ftsea/mtIbUc5lUXG/84yrINeyksuxNQqNWzblssXy7ZhMFcuixcRV8u2cSiFdu4npWHqWzZuKokXEnjrU9/4ujpRMvQj6qoNUV8/M06Eq6kYTKaMBlNXLyazvtfrOBqWuXhdQeOXWDlxn1W+2EwGklKy+SjRb/UuVHBbRIfRzkSn+9Wlz7Eq/yiwGA0cv5SCguXban0ELhyak0RX/y4gbMJyfUyXGr7vpOWu/cuSiVBt3gi38lzVzh6OpECTZGljCguMXA2IZn35i23alQArNl8oFLZWZVNfx4jM6cAk9lMkU5vFR83FyVDenfkpcdGWL2nNn7dfojrWaVDjTxVLvh4Ww8vrG9ZuaVP5C7QaDl/sbReir/016TY3AJNrRs62Xka3p67jO37TqIu1GKuwZ1yk9nM/B83cuTUxRuWQys37KsUz/K6cPHqnbbJ613ytSx27j+FyWRCKpUSWk93x6ui05fw4Ver2FbheJvNZvIKClm79QAz56+s1KioL7WJvSMcib0j+b62Gjr2jnKkvgdYtGIbx85csqQ1m82oC7Vs33eStz6zf9P2UFwCP6zdWaP6zVGO1PcN2mORm6e5aXeLKj6d9EY9EELj4eut4oNXJhLQxIudB0+z4KcNtkmEBiTic+uNH9GbCcP7oNYUMaNsae3GTukk518vjKNV8yC+W7WdbRVWEpLLZEx8sC8PDOzC9ez8SndYa6O81yD1eg7vzFl2V433vtO0DA/i/14ch5uLkp9//bPW8wiExud2i315fSiTSnl33nLSM3NtkzRqNa3vG6THIie/kAJ1ESEBPkwY2cfuECNB8Pf1ZMro/vh5e6DVFXP45F8PaxIanojPrSWXyeh9TxsG9+oIwMXk65YHIjZ2wQG+hIeUzl/zVLlZ5gVJJRLCQvyIDAtEKpXWeSJs+ZjwmDbNS4eqxF8VjYpGLDzYn8mj+uLmoiRPXcjxs6UPDRPufA0d+5EDuzD9mdGWebcqV2ceGtoDP28PrmXmklHWK3qncKS+b5AeC4C/PTKUoX1iLONp7Y39dITosbizVBzfbjKa2HHwFF8v23JLJsEJNybic2uV9/KWX3Bn5RTwybe/knATJzU3pOrmppTTFOn4cskmq6dBO8J23tGl5Ot8/M0vt3yIp3BzVByDXlxiYOXGffyy9aBtMuEOdDvEvqr5ZkU6PXO+X8/RskUs7gSO1vcN0mMB8N2qHazbFlsvYwGFO0PFOQELl26u8iQWGoaIzy1WYYzt9Nk/3DGNCsrmpsz6ajW7D52xmr9RPq449kQ80//zfa0bFeXM5tI5DGu27OdfH/8kGhWNXPn8nnfnLLvlF5ZCw2ro2O/cf4p9R89ZzcE7m5DMB1+svKMaFeUcqe8brMdCEARBEARBEIQ7R4P1WAiCIAiCIAiCcOcQDQtBEARBEARBEOpMNCwEQRAEQRAEQagz0bAQBEEQBEEQBKHORMNCEARBEARBEIQ6+39V/GFGkEngxAAAAABJRU5ErkJggg==" + } + }, + "cell_type": "markdown", + "id": "c858b9f5-360c-48d3-aeff-070d14214e55", + "metadata": {}, + "source": [ + "3. Results: Based on the text comparison between Romeo and Juliet and The Comedy of Errors, I find three very interesting insights. First, I look into the top ten words that appear in both texts. The chart below is a good demonstration of the top ten words. It is interesting to see that some of these top ten words are really ancient words that we don't usually use nowadays such as thou, thee, thy. \n", + "![image.png](attachment:438aca14-d3b3-48ed-a873-3ecbd0c620fd.png)\n", + "\n", + "Another interesting thing is that common words that appear in both texts. Based on the code, there are 1293 words that are common among the two texts that have the same author. \n", + "![image.png](attachment:a99d39d0-2cdd-49b3-a988-f4d377c59bdd.png)\n", + "\n", + "The biggest surprise for me is the sentiment analysis. Considering that\n", + "Romeo and Juliet is a tragedy with two people die, the overall sentiment of the text is actually neutral rather than negative. Similarly, the sentiment \n", + "in the text The Comedy of Errors are also neutral when I expect it to be more positive as a comedy implies that the text is funny and lighthighted. Both texts seem to be neutral and are approximately equally negative and positive. \n", + "![image.png](attachment:1cf95381-b937-4d2b-9610-5a5f68fd255b.png)\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "id": "e814809a-e939-4c73-a2db-0dcd7b3fa410", + "metadata": {}, + "source": [ + "4. Reflection: \n", + "From my point of view, the findings such as computing the average word length, sentiment analysis, finding common words, and the top ten words work very well and are very insightful. I like to see both texts alongside one another. Since, both texts use the same code, I can just copy and paste the first code I did from one text to another. I also enjoyed the data visualization; I got to learn how to use ASCII.\n", + "\n", + "Something that did not work very well for me is installing the packages. For some reason, I keep getting errors and even if I have already installed it successfully before, if I rerun the code, sometimes it tells me that I do not have the package installed, so I have to reinstall it all over again. Another thing that froze my laptop for awhile is printing the dictionary where I count the frequency of the words in the text and print them one by one. I thought that I won't run into the problem, but since my text has around 25,000 words, printing 25,000 values freezes my laptop, so I had to force the code to stop running and instead only print about 50 words. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7a1601dd-b535-4c98-b72f-06d2236883c2", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}